code
stringlengths
114
1.05M
path
stringlengths
3
312
quality_prob
float64
0.5
0.99
learning_prob
float64
0.2
1
filename
stringlengths
3
168
kind
stringclasses
1 value
import datetime from typing import Any, Dict, List, Type, TypeVar, Union, cast import attr from dateutil.parser import isoparse from ..models.address import Address from ..models.booking_field import BookingField from ..models.extra import Extra from ..models.image import Image from ..models.price_option import PriceOption from ..models.product_agent_payment_type import ProductAgentPaymentType from ..models.product_barcode_output_type import ProductBarcodeOutputType from ..models.product_booking_mode import ProductBookingMode from ..models.product_confirm_mode import ProductConfirmMode from ..models.product_currency import ProductCurrency from ..models.product_product_type import ProductProductType from ..models.product_qr_code_type import ProductQrCodeType from ..models.product_seo_tag import ProductSeoTag from ..models.tax import Tax from ..models.video import Video from ..types import UNSET, Unset T = TypeVar("T", bound="Product") @attr.s(auto_attribs=True) class Product: """Product object. Holds general details and settings of a specific tour, activity or event. Attributes: booking_fields (List[BookingField]): List of booking fields required for this product booking_mode (ProductBookingMode): Booking mode. Determines if this product needs availability or can be booked for any date. confirm_mode (ProductConfirmMode): Confirmation mode. Determines if bookings are automatically confirmed or it they are pending description (str): Long product description, is between 100 and 15000 characters price_options (List[PriceOption]): List of price options belonging to this product. product_code (str): Rezdy-generated unique Product code. Used by agents and for API calls quantity_required (bool): Does this product require a quantity to be booked? True for most products. Can be false if the supplier can only provide one quantity at any single time. (I.e. private charters) short_description (str): Product description is between 15 and 240 characters supplier_id (int): Rezdy internal ID of the company supplying this product supplier_name (str): Name of the company supplying this product timezone (str): Timezone used by this product and supplier. All Times must be converted to this timezone before being displayed to customers unit_label (str): What a quantity for this product is. It can be people (I.e. participant, passenger, diver) or objects (Kayak, Helicopter, etc.) unit_label_plural (str): Plural version of unitLabel additional_information (Union[Unset, str]): Additional information for the product, that should be sent after a booking is completed (i.e. by email) to the customer. Useful for integration, when manual control of the entire customer booking experience is wanted, and the automatic confirmation e-mail from Rezdy had been suppressed. advertised_price (Union[Unset, float]): General price indication for this product. It represents a display price only, therefore it does not affect a real booking price, which is calculated based on the price options. agent_payment_type (Union[Unset, ProductAgentPaymentType]): If you are an agent, payment rules setup by the supplier for you to book this product api_booking_supported (Union[Unset, bool]): barcode_output_type (Union[Unset, ProductBarcodeOutputType]): Specifies how to output the barcodes when this product is booked. Valid types are:<br><li>PARTICIPANT: Barcodes will be generated by rezdy for each participant when an booking is created for this product</li><li>ORDER: Barcodes will be generated by rezdy per booking</li> cancellation_policy_days (Union[Unset, int]): Supplier's Cancellation policy. Number of days before the tour a cancellation is allowed with full refund.<br>This is only used for automated payments (PAYOUTS) bookings charter (Union[Unset, bool]): A charter product means each session can only have a single booking, whatever the number of seats booked. commission_includes_extras (Union[Unset, bool]): True if agent receive commission from extras, false otherwise. confirm_mode_min_participants (Union[Unset, int]): If confirmMode is MANUAL_THEN_AUTO or AUTO_THEN_MANUAL, determines the minimum number of participants per booking to trigger the change currency (Union[Unset, ProductCurrency]): Product prices Currency date_created (Union[Unset, datetime.datetime]): The product creation date date_updated (Union[Unset, datetime.datetime]): * The date of the last product update duration_minutes (Union[Unset, int]): * Duration of the product in minutes. extras (Union[Unset, List[Extra]]): List of extras that can be booked with this product general_terms (Union[Unset, str]): General terms and conditions for all products from this supplier images (Union[Unset, List[Image]]): List of images showcasing this product internal_code (Union[Unset, str]): Supplier-defined product code, used internally by the ther supplier languages (Union[Unset, List[str]]): List of product languages. The format of the language is ISO 639 two-letter code with BCP 47 language variants, separated by underscore e.g. en_au. location_address (Union[Unset, Address]): Address of a company, customer or product location. max_commission_net_rate (Union[Unset, float]): Maximum commission amount you can receive as an agent, when the supplier setup a net rate (Automated payments Rezdy fee is not included in the amount) max_commission_percent (Union[Unset, float]): Maximum commission % you can receive as an agent, when the supplier setup a percentage (Automated payments Rezdy fee is not included in the amount) minimum_notice_minutes (Union[Unset, int]): * Minimum book ahead internal before session start time in minutes. multi_product_booking_supported (Union[Unset, bool]): name (Union[Unset, str]): Product name pickup_id (Union[Unset, int]): * If pickups are configured for this product, the field will contain the id of the pickup location list created by the supplier. product_seo_tags (Union[Unset, List[ProductSeoTag]]): This will store product meta data such as title and description product_type (Union[Unset, ProductProductType]): Type of this product qr_code_type (Union[Unset, ProductQrCodeType]): Specifies the method how QR Codes will be generated for this product. Valid types are:<br><li>INTERNAL: QR Codes will be generated by rezdy for each participant when an order is created for this product</li><li>EXTERNAL: QR Codes will be randomly taken from a list of imported QR Codes</li><p>If nothing is specified, then no QR Codes will be generated when an order is created for this product quantity_required_max (Union[Unset, int]): Represent the max booking quantity for the product. It can be setup for a supplier product. For a successful booking of the product, the total number of participants (regardless of pricing options), per booking item in the booking request, have to be lesser or equal than this value. quantity_required_min (Union[Unset, int]): Represent the min booking quantity for the product. It can be setup for a supplier product. For a successful booking of the product, the total number of participants (regardless of pricing options), per booking item in the booking request, have to be greater or equal than this value. supplier_alias (Union[Unset, str]): Alias of the company supplying this product. Company alias is a unique key and should be used to retrieve company details or in filters tags (Union[Unset, List[str]]): List of tags related to the product. The format is [TAG_TYPE]:[TAG_VALUE] e.g. TYPE:ACTIVITY, CATEGORY:ABSEILING, INTENSITY:RELAXED, ACCESSIBILITY:VISION_IMPAIRED taxes (Union[Unset, List[Tax]]): List of taxes/fees associated with the product terms (Union[Unset, str]): Specific terms and conditions for this product videos (Union[Unset, List[Video]]): <p>List of videos showcasing this product <br/>Videos will only be returned when a single product is loaded.</p> wait_listing_enabled (Union[Unset, bool]): Signifies that customers will still be able to book this product even when there is not enough availability. Orders will have "On Hold" status, and no payment will be processed xero_account (Union[Unset, str]): Supplier Xero account for this product """ booking_fields: List[BookingField] booking_mode: ProductBookingMode confirm_mode: ProductConfirmMode description: str price_options: List[PriceOption] product_code: str quantity_required: bool short_description: str supplier_id: int supplier_name: str timezone: str unit_label: str unit_label_plural: str additional_information: Union[Unset, str] = UNSET advertised_price: Union[Unset, float] = UNSET agent_payment_type: Union[Unset, ProductAgentPaymentType] = UNSET api_booking_supported: Union[Unset, bool] = UNSET barcode_output_type: Union[Unset, ProductBarcodeOutputType] = UNSET cancellation_policy_days: Union[Unset, int] = UNSET charter: Union[Unset, bool] = UNSET commission_includes_extras: Union[Unset, bool] = UNSET confirm_mode_min_participants: Union[Unset, int] = UNSET currency: Union[Unset, ProductCurrency] = UNSET date_created: Union[Unset, datetime.datetime] = UNSET date_updated: Union[Unset, datetime.datetime] = UNSET duration_minutes: Union[Unset, int] = UNSET extras: Union[Unset, List[Extra]] = UNSET general_terms: Union[Unset, str] = UNSET images: Union[Unset, List[Image]] = UNSET internal_code: Union[Unset, str] = UNSET languages: Union[Unset, List[str]] = UNSET location_address: Union[Unset, Address] = UNSET max_commission_net_rate: Union[Unset, float] = UNSET max_commission_percent: Union[Unset, float] = UNSET minimum_notice_minutes: Union[Unset, int] = UNSET multi_product_booking_supported: Union[Unset, bool] = UNSET name: Union[Unset, str] = UNSET pickup_id: Union[Unset, int] = UNSET product_seo_tags: Union[Unset, List[ProductSeoTag]] = UNSET product_type: Union[Unset, ProductProductType] = UNSET qr_code_type: Union[Unset, ProductQrCodeType] = UNSET quantity_required_max: Union[Unset, int] = UNSET quantity_required_min: Union[Unset, int] = UNSET supplier_alias: Union[Unset, str] = UNSET tags: Union[Unset, List[str]] = UNSET taxes: Union[Unset, List[Tax]] = UNSET terms: Union[Unset, str] = UNSET videos: Union[Unset, List[Video]] = UNSET wait_listing_enabled: Union[Unset, bool] = UNSET xero_account: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: booking_fields = [] for booking_fields_item_data in self.booking_fields: booking_fields_item = booking_fields_item_data.to_dict() booking_fields.append(booking_fields_item) booking_mode = self.booking_mode.value confirm_mode = self.confirm_mode.value description = self.description price_options = [] for price_options_item_data in self.price_options: price_options_item = price_options_item_data.to_dict() price_options.append(price_options_item) product_code = self.product_code quantity_required = self.quantity_required short_description = self.short_description supplier_id = self.supplier_id supplier_name = self.supplier_name timezone = self.timezone unit_label = self.unit_label unit_label_plural = self.unit_label_plural additional_information = self.additional_information advertised_price = self.advertised_price agent_payment_type: Union[Unset, str] = UNSET if not isinstance(self.agent_payment_type, Unset): agent_payment_type = self.agent_payment_type.value api_booking_supported = self.api_booking_supported barcode_output_type: Union[Unset, str] = UNSET if not isinstance(self.barcode_output_type, Unset): barcode_output_type = self.barcode_output_type.value cancellation_policy_days = self.cancellation_policy_days charter = self.charter commission_includes_extras = self.commission_includes_extras confirm_mode_min_participants = self.confirm_mode_min_participants currency: Union[Unset, str] = UNSET if not isinstance(self.currency, Unset): currency = self.currency.value date_created: Union[Unset, str] = UNSET if not isinstance(self.date_created, Unset): date_created = self.date_created.isoformat() date_updated: Union[Unset, str] = UNSET if not isinstance(self.date_updated, Unset): date_updated = self.date_updated.isoformat() duration_minutes = self.duration_minutes extras: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.extras, Unset): extras = [] for extras_item_data in self.extras: extras_item = extras_item_data.to_dict() extras.append(extras_item) general_terms = self.general_terms images: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.images, Unset): images = [] for images_item_data in self.images: images_item = images_item_data.to_dict() images.append(images_item) internal_code = self.internal_code languages: Union[Unset, List[str]] = UNSET if not isinstance(self.languages, Unset): languages = self.languages location_address: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.location_address, Unset): location_address = self.location_address.to_dict() max_commission_net_rate = self.max_commission_net_rate max_commission_percent = self.max_commission_percent minimum_notice_minutes = self.minimum_notice_minutes multi_product_booking_supported = self.multi_product_booking_supported name = self.name pickup_id = self.pickup_id product_seo_tags: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.product_seo_tags, Unset): product_seo_tags = [] for product_seo_tags_item_data in self.product_seo_tags: product_seo_tags_item = product_seo_tags_item_data.to_dict() product_seo_tags.append(product_seo_tags_item) product_type: Union[Unset, str] = UNSET if not isinstance(self.product_type, Unset): product_type = self.product_type.value qr_code_type: Union[Unset, str] = UNSET if not isinstance(self.qr_code_type, Unset): qr_code_type = self.qr_code_type.value quantity_required_max = self.quantity_required_max quantity_required_min = self.quantity_required_min supplier_alias = self.supplier_alias tags: Union[Unset, List[str]] = UNSET if not isinstance(self.tags, Unset): tags = self.tags taxes: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.taxes, Unset): taxes = [] for taxes_item_data in self.taxes: taxes_item = taxes_item_data.to_dict() taxes.append(taxes_item) terms = self.terms videos: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.videos, Unset): videos = [] for videos_item_data in self.videos: videos_item = videos_item_data.to_dict() videos.append(videos_item) wait_listing_enabled = self.wait_listing_enabled xero_account = self.xero_account field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "bookingFields": booking_fields, "bookingMode": booking_mode, "confirmMode": confirm_mode, "description": description, "priceOptions": price_options, "productCode": product_code, "quantityRequired": quantity_required, "shortDescription": short_description, "supplierId": supplier_id, "supplierName": supplier_name, "timezone": timezone, "unitLabel": unit_label, "unitLabelPlural": unit_label_plural, } ) if additional_information is not UNSET: field_dict["additionalInformation"] = additional_information if advertised_price is not UNSET: field_dict["advertisedPrice"] = advertised_price if agent_payment_type is not UNSET: field_dict["agentPaymentType"] = agent_payment_type if api_booking_supported is not UNSET: field_dict["apiBookingSupported"] = api_booking_supported if barcode_output_type is not UNSET: field_dict["barcodeOutputType"] = barcode_output_type if cancellation_policy_days is not UNSET: field_dict["cancellationPolicyDays"] = cancellation_policy_days if charter is not UNSET: field_dict["charter"] = charter if commission_includes_extras is not UNSET: field_dict["commissionIncludesExtras"] = commission_includes_extras if confirm_mode_min_participants is not UNSET: field_dict["confirmModeMinParticipants"] = confirm_mode_min_participants if currency is not UNSET: field_dict["currency"] = currency if date_created is not UNSET: field_dict["dateCreated"] = date_created if date_updated is not UNSET: field_dict["dateUpdated"] = date_updated if duration_minutes is not UNSET: field_dict["durationMinutes"] = duration_minutes if extras is not UNSET: field_dict["extras"] = extras if general_terms is not UNSET: field_dict["generalTerms"] = general_terms if images is not UNSET: field_dict["images"] = images if internal_code is not UNSET: field_dict["internalCode"] = internal_code if languages is not UNSET: field_dict["languages"] = languages if location_address is not UNSET: field_dict["locationAddress"] = location_address if max_commission_net_rate is not UNSET: field_dict["maxCommissionNetRate"] = max_commission_net_rate if max_commission_percent is not UNSET: field_dict["maxCommissionPercent"] = max_commission_percent if minimum_notice_minutes is not UNSET: field_dict["minimumNoticeMinutes"] = minimum_notice_minutes if multi_product_booking_supported is not UNSET: field_dict["multiProductBookingSupported"] = multi_product_booking_supported if name is not UNSET: field_dict["name"] = name if pickup_id is not UNSET: field_dict["pickupId"] = pickup_id if product_seo_tags is not UNSET: field_dict["productSeoTags"] = product_seo_tags if product_type is not UNSET: field_dict["productType"] = product_type if qr_code_type is not UNSET: field_dict["qrCodeType"] = qr_code_type if quantity_required_max is not UNSET: field_dict["quantityRequiredMax"] = quantity_required_max if quantity_required_min is not UNSET: field_dict["quantityRequiredMin"] = quantity_required_min if supplier_alias is not UNSET: field_dict["supplierAlias"] = supplier_alias if tags is not UNSET: field_dict["tags"] = tags if taxes is not UNSET: field_dict["taxes"] = taxes if terms is not UNSET: field_dict["terms"] = terms if videos is not UNSET: field_dict["videos"] = videos if wait_listing_enabled is not UNSET: field_dict["waitListingEnabled"] = wait_listing_enabled if xero_account is not UNSET: field_dict["xeroAccount"] = xero_account return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() booking_fields = [] _booking_fields = d.pop("bookingFields") for booking_fields_item_data in _booking_fields: booking_fields_item = BookingField.from_dict(booking_fields_item_data) booking_fields.append(booking_fields_item) booking_mode = ProductBookingMode(d.pop("bookingMode")) confirm_mode = ProductConfirmMode(d.pop("confirmMode")) description = d.pop("description") price_options = [] _price_options = d.pop("priceOptions") for price_options_item_data in _price_options: price_options_item = PriceOption.from_dict(price_options_item_data) price_options.append(price_options_item) product_code = d.pop("productCode") quantity_required = d.pop("quantityRequired") short_description = d.pop("shortDescription") supplier_id = d.pop("supplierId") supplier_name = d.pop("supplierName") timezone = d.pop("timezone") unit_label = d.pop("unitLabel") unit_label_plural = d.pop("unitLabelPlural") additional_information = d.pop("additionalInformation", UNSET) advertised_price = d.pop("advertisedPrice", UNSET) _agent_payment_type = d.pop("agentPaymentType", UNSET) agent_payment_type: Union[Unset, ProductAgentPaymentType] if isinstance(_agent_payment_type, Unset): agent_payment_type = UNSET else: agent_payment_type = ProductAgentPaymentType(_agent_payment_type) api_booking_supported = d.pop("apiBookingSupported", UNSET) _barcode_output_type = d.pop("barcodeOutputType", UNSET) barcode_output_type: Union[Unset, ProductBarcodeOutputType] if isinstance(_barcode_output_type, Unset): barcode_output_type = UNSET else: barcode_output_type = ProductBarcodeOutputType(_barcode_output_type) cancellation_policy_days = d.pop("cancellationPolicyDays", UNSET) charter = d.pop("charter", UNSET) commission_includes_extras = d.pop("commissionIncludesExtras", UNSET) confirm_mode_min_participants = d.pop("confirmModeMinParticipants", UNSET) _currency = d.pop("currency", UNSET) currency: Union[Unset, ProductCurrency] if isinstance(_currency, Unset): currency = UNSET else: currency = ProductCurrency(_currency) _date_created = d.pop("dateCreated", UNSET) date_created: Union[Unset, datetime.datetime] if isinstance(_date_created, Unset): date_created = UNSET else: date_created = isoparse(_date_created) _date_updated = d.pop("dateUpdated", UNSET) date_updated: Union[Unset, datetime.datetime] if isinstance(_date_updated, Unset): date_updated = UNSET else: date_updated = isoparse(_date_updated) duration_minutes = d.pop("durationMinutes", UNSET) extras = [] _extras = d.pop("extras", UNSET) for extras_item_data in _extras or []: extras_item = Extra.from_dict(extras_item_data) extras.append(extras_item) general_terms = d.pop("generalTerms", UNSET) images = [] _images = d.pop("images", UNSET) for images_item_data in _images or []: images_item = Image.from_dict(images_item_data) images.append(images_item) internal_code = d.pop("internalCode", UNSET) languages = cast(List[str], d.pop("languages", UNSET)) _location_address = d.pop("locationAddress", UNSET) location_address: Union[Unset, Address] if isinstance(_location_address, Unset): location_address = UNSET else: location_address = Address.from_dict(_location_address) max_commission_net_rate = d.pop("maxCommissionNetRate", UNSET) max_commission_percent = d.pop("maxCommissionPercent", UNSET) minimum_notice_minutes = d.pop("minimumNoticeMinutes", UNSET) multi_product_booking_supported = d.pop("multiProductBookingSupported", UNSET) name = d.pop("name", UNSET) pickup_id = d.pop("pickupId", UNSET) product_seo_tags = [] _product_seo_tags = d.pop("productSeoTags", UNSET) for product_seo_tags_item_data in _product_seo_tags or []: product_seo_tags_item = ProductSeoTag.from_dict(product_seo_tags_item_data) product_seo_tags.append(product_seo_tags_item) _product_type = d.pop("productType", UNSET) product_type: Union[Unset, ProductProductType] if isinstance(_product_type, Unset): product_type = UNSET else: product_type = ProductProductType(_product_type) _qr_code_type = d.pop("qrCodeType", UNSET) qr_code_type: Union[Unset, ProductQrCodeType] if isinstance(_qr_code_type, Unset): qr_code_type = UNSET else: qr_code_type = ProductQrCodeType(_qr_code_type) quantity_required_max = d.pop("quantityRequiredMax", UNSET) quantity_required_min = d.pop("quantityRequiredMin", UNSET) supplier_alias = d.pop("supplierAlias", UNSET) tags = cast(List[str], d.pop("tags", UNSET)) taxes = [] _taxes = d.pop("taxes", UNSET) for taxes_item_data in _taxes or []: taxes_item = Tax.from_dict(taxes_item_data) taxes.append(taxes_item) terms = d.pop("terms", UNSET) videos = [] _videos = d.pop("videos", UNSET) for videos_item_data in _videos or []: videos_item = Video.from_dict(videos_item_data) videos.append(videos_item) wait_listing_enabled = d.pop("waitListingEnabled", UNSET) xero_account = d.pop("xeroAccount", UNSET) product = cls( booking_fields=booking_fields, booking_mode=booking_mode, confirm_mode=confirm_mode, description=description, price_options=price_options, product_code=product_code, quantity_required=quantity_required, short_description=short_description, supplier_id=supplier_id, supplier_name=supplier_name, timezone=timezone, unit_label=unit_label, unit_label_plural=unit_label_plural, additional_information=additional_information, advertised_price=advertised_price, agent_payment_type=agent_payment_type, api_booking_supported=api_booking_supported, barcode_output_type=barcode_output_type, cancellation_policy_days=cancellation_policy_days, charter=charter, commission_includes_extras=commission_includes_extras, confirm_mode_min_participants=confirm_mode_min_participants, currency=currency, date_created=date_created, date_updated=date_updated, duration_minutes=duration_minutes, extras=extras, general_terms=general_terms, images=images, internal_code=internal_code, languages=languages, location_address=location_address, max_commission_net_rate=max_commission_net_rate, max_commission_percent=max_commission_percent, minimum_notice_minutes=minimum_notice_minutes, multi_product_booking_supported=multi_product_booking_supported, name=name, pickup_id=pickup_id, product_seo_tags=product_seo_tags, product_type=product_type, qr_code_type=qr_code_type, quantity_required_max=quantity_required_max, quantity_required_min=quantity_required_min, supplier_alias=supplier_alias, tags=tags, taxes=taxes, terms=terms, videos=videos, wait_listing_enabled=wait_listing_enabled, xero_account=xero_account, ) product.additional_properties = d return product @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/product.py
0.736401
0.342407
product.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.request_status import RequestStatus from ..models.session import Session from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseSession") @attr.s(auto_attribs=True) class ResponseSession: """ Attributes: request_status (RequestStatus): session (Union[Unset, Session]): A Session holds availability for a unique product / start time combination and also the rates for the session booking. """ request_status: RequestStatus session: Union[Unset, Session] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() session: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.session, Unset): session = self.session.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if session is not UNSET: field_dict["session"] = session return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _session = d.pop("session", UNSET) session: Union[Unset, Session] if isinstance(_session, Unset): session = UNSET else: session = Session.from_dict(_session) response_session = cls( request_status=request_status, session=session, ) response_session.additional_properties = d return response_session @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_session.py
0.817975
0.215103
response_session.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.resource_type import ResourceType from ..types import UNSET, Unset T = TypeVar("T", bound="Resource") @attr.s(auto_attribs=True) class Resource: """Supplier resource - e.g. raft, bus, tour guide, venue which has a limited capacity. The resources can be shared between different supplier's products. If the resource does not have any spare availability, the booking of any of the product sessions, where the resource is used will not be possible. Attributes: id (Union[Unset, int]): Rezdy internal id of the resource. name (Union[Unset, str]): Resource name seats (Union[Unset, int]): Availability of the resource type (Union[Unset, ResourceType]): Resource type """ id: Union[Unset, int] = UNSET name: Union[Unset, str] = UNSET seats: Union[Unset, int] = UNSET type: Union[Unset, ResourceType] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: id = self.id name = self.name seats = self.seats type: Union[Unset, str] = UNSET if not isinstance(self.type, Unset): type = self.type.value field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if id is not UNSET: field_dict["id"] = id if name is not UNSET: field_dict["name"] = name if seats is not UNSET: field_dict["seats"] = seats if type is not UNSET: field_dict["type"] = type return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() id = d.pop("id", UNSET) name = d.pop("name", UNSET) seats = d.pop("seats", UNSET) _type = d.pop("type", UNSET) type: Union[Unset, ResourceType] if isinstance(_type, Unset): type = UNSET else: type = ResourceType(_type) resource = cls( id=id, name=name, seats=seats, type=type, ) resource.additional_properties = d return resource @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/resource.py
0.816443
0.227169
resource.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.customer import Customer from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseCustomer") @attr.s(auto_attribs=True) class ResponseCustomer: """ Attributes: request_status (RequestStatus): customer (Union[Unset, Customer]): The customer is the person making the booking, and most of the time paying for it.<br>It differs from Participants, who are the people attending a tour """ request_status: RequestStatus customer: Union[Unset, Customer] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() customer: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.customer, Unset): customer = self.customer.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if customer is not UNSET: field_dict["customer"] = customer return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _customer = d.pop("customer", UNSET) customer: Union[Unset, Customer] if isinstance(_customer, Unset): customer = UNSET else: customer = Customer.from_dict(_customer) response_customer = cls( request_status=request_status, customer=customer, ) response_customer.additional_properties = d return response_customer @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_customer.py
0.777891
0.198025
response_customer.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.product import Product from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseProductList") @attr.s(auto_attribs=True) class ResponseProductList: """ Attributes: request_status (RequestStatus): products (Union[Unset, List[Product]]): """ request_status: RequestStatus products: Union[Unset, List[Product]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() products: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.products, Unset): products = [] for products_item_data in self.products: products_item = products_item_data.to_dict() products.append(products_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if products is not UNSET: field_dict["products"] = products return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) products = [] _products = d.pop("products", UNSET) for products_item_data in _products or []: products_item = Product.from_dict(products_item_data) products.append(products_item) response_product_list = cls( request_status=request_status, products=products, ) response_product_list.additional_properties = d return response_product_list @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_product_list.py
0.769687
0.18451
response_product_list.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.booking_field_create import BookingFieldCreate from ..models.price_option_create import PriceOptionCreate from ..models.product_update_request_barcode_output_type import ProductUpdateRequestBarcodeOutputType from ..models.product_update_request_confirm_mode import ProductUpdateRequestConfirmMode from ..types import UNSET, Unset T = TypeVar("T", bound="ProductUpdateRequest") @attr.s(auto_attribs=True) class ProductUpdateRequest: """Partial product model containing all fields which are currently supported in product create via API. Attributes: booking_fields (List[BookingFieldCreate]): List of booking fields required for this product. confirm_mode (ProductUpdateRequestConfirmMode): Confirmation mode. Determines if bookings are automatically confirmed or it they are pending. description (str): Long product description, is between 100 and 15000 characters. short_description (str): Product description is between 15 and 240 characters. advertised_price (Union[Unset, float]): General price indication for this product. It represents a display price only, therefore it does not affect a real booking price, which is calculated based on the price options. barcode_output_type (Union[Unset, ProductUpdateRequestBarcodeOutputType]): Specifies how to output the barcodes when this product is booked. Valid types are:<br><li>PARTICIPANT: Barcodes will be generated by rezdy for each participant when an booking is created for this product</li><li>ORDER: Barcodes will be generated by rezdy per booking</li> confirm_mode_min_participants (Union[Unset, int]): If confirmMode is MANUAL_THEN_AUTO or AUTO_THEN_MANUAL, determines the minimum number of participants per booking to trigger the change. duration_minutes (Union[Unset, int]): Duration of the product in minutes. internal_code (Union[Unset, str]): Supplier-defined product code, used internally by the supplier. minimum_notice_minutes (Union[Unset, int]): Minimum book ahead interval for he product in minutes. name (Union[Unset, str]): Product name pickup_id (Union[Unset, int]): Pickup ID for this product. price_options (Union[Unset, List[PriceOptionCreate]]): List of price options for this product. terms (Union[Unset, str]): Specific terms and conditions for this product. """ booking_fields: List[BookingFieldCreate] confirm_mode: ProductUpdateRequestConfirmMode description: str short_description: str advertised_price: Union[Unset, float] = UNSET barcode_output_type: Union[Unset, ProductUpdateRequestBarcodeOutputType] = UNSET confirm_mode_min_participants: Union[Unset, int] = UNSET duration_minutes: Union[Unset, int] = UNSET internal_code: Union[Unset, str] = UNSET minimum_notice_minutes: Union[Unset, int] = UNSET name: Union[Unset, str] = UNSET pickup_id: Union[Unset, int] = UNSET price_options: Union[Unset, List[PriceOptionCreate]] = UNSET terms: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: booking_fields = [] for booking_fields_item_data in self.booking_fields: booking_fields_item = booking_fields_item_data.to_dict() booking_fields.append(booking_fields_item) confirm_mode = self.confirm_mode.value description = self.description short_description = self.short_description advertised_price = self.advertised_price barcode_output_type: Union[Unset, str] = UNSET if not isinstance(self.barcode_output_type, Unset): barcode_output_type = self.barcode_output_type.value confirm_mode_min_participants = self.confirm_mode_min_participants duration_minutes = self.duration_minutes internal_code = self.internal_code minimum_notice_minutes = self.minimum_notice_minutes name = self.name pickup_id = self.pickup_id price_options: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.price_options, Unset): price_options = [] for price_options_item_data in self.price_options: price_options_item = price_options_item_data.to_dict() price_options.append(price_options_item) terms = self.terms field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "bookingFields": booking_fields, "confirmMode": confirm_mode, "description": description, "shortDescription": short_description, } ) if advertised_price is not UNSET: field_dict["advertisedPrice"] = advertised_price if barcode_output_type is not UNSET: field_dict["barcodeOutputType"] = barcode_output_type if confirm_mode_min_participants is not UNSET: field_dict["confirmModeMinParticipants"] = confirm_mode_min_participants if duration_minutes is not UNSET: field_dict["durationMinutes"] = duration_minutes if internal_code is not UNSET: field_dict["internalCode"] = internal_code if minimum_notice_minutes is not UNSET: field_dict["minimumNoticeMinutes"] = minimum_notice_minutes if name is not UNSET: field_dict["name"] = name if pickup_id is not UNSET: field_dict["pickupId"] = pickup_id if price_options is not UNSET: field_dict["priceOptions"] = price_options if terms is not UNSET: field_dict["terms"] = terms return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() booking_fields = [] _booking_fields = d.pop("bookingFields") for booking_fields_item_data in _booking_fields: booking_fields_item = BookingFieldCreate.from_dict(booking_fields_item_data) booking_fields.append(booking_fields_item) confirm_mode = ProductUpdateRequestConfirmMode(d.pop("confirmMode")) description = d.pop("description") short_description = d.pop("shortDescription") advertised_price = d.pop("advertisedPrice", UNSET) _barcode_output_type = d.pop("barcodeOutputType", UNSET) barcode_output_type: Union[Unset, ProductUpdateRequestBarcodeOutputType] if isinstance(_barcode_output_type, Unset): barcode_output_type = UNSET else: barcode_output_type = ProductUpdateRequestBarcodeOutputType(_barcode_output_type) confirm_mode_min_participants = d.pop("confirmModeMinParticipants", UNSET) duration_minutes = d.pop("durationMinutes", UNSET) internal_code = d.pop("internalCode", UNSET) minimum_notice_minutes = d.pop("minimumNoticeMinutes", UNSET) name = d.pop("name", UNSET) pickup_id = d.pop("pickupId", UNSET) price_options = [] _price_options = d.pop("priceOptions", UNSET) for price_options_item_data in _price_options or []: price_options_item = PriceOptionCreate.from_dict(price_options_item_data) price_options.append(price_options_item) terms = d.pop("terms", UNSET) product_update_request = cls( booking_fields=booking_fields, confirm_mode=confirm_mode, description=description, short_description=short_description, advertised_price=advertised_price, barcode_output_type=barcode_output_type, confirm_mode_min_participants=confirm_mode_min_participants, duration_minutes=duration_minutes, internal_code=internal_code, minimum_notice_minutes=minimum_notice_minutes, name=name, pickup_id=pickup_id, price_options=price_options, terms=terms, ) product_update_request.additional_properties = d return product_update_request @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/product_update_request.py
0.784938
0.241825
product_update_request.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.product import Product from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseProduct") @attr.s(auto_attribs=True) class ResponseProduct: """ Attributes: request_status (RequestStatus): product (Union[Unset, Product]): Product object. Holds general details and settings of a specific tour, activity or event. """ request_status: RequestStatus product: Union[Unset, Product] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() product: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.product, Unset): product = self.product.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if product is not UNSET: field_dict["product"] = product return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _product = d.pop("product", UNSET) product: Union[Unset, Product] if isinstance(_product, Unset): product = UNSET else: product = Product.from_dict(_product) response_product = cls( request_status=request_status, product=product, ) response_product.additional_properties = d return response_product @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_product.py
0.829354
0.178293
response_product.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..types import UNSET, Unset T = TypeVar("T", bound="Address") @attr.s(auto_attribs=True) class Address: """Address of a company, customer or product location. Attributes: address_line (Union[Unset, str]): Address line address_line_2 (Union[Unset, str]): Address line 2 city (Union[Unset, str]): City name country_code (Union[Unset, str]): Country code latitude (Union[Unset, float]): Geolocation - latitude longitude (Union[Unset, float]): Geolocation - longitude post_code (Union[Unset, str]): Post Code state (Union[Unset, str]): State name """ address_line: Union[Unset, str] = UNSET address_line_2: Union[Unset, str] = UNSET city: Union[Unset, str] = UNSET country_code: Union[Unset, str] = UNSET latitude: Union[Unset, float] = UNSET longitude: Union[Unset, float] = UNSET post_code: Union[Unset, str] = UNSET state: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: address_line = self.address_line address_line_2 = self.address_line_2 city = self.city country_code = self.country_code latitude = self.latitude longitude = self.longitude post_code = self.post_code state = self.state field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if address_line is not UNSET: field_dict["addressLine"] = address_line if address_line_2 is not UNSET: field_dict["addressLine2"] = address_line_2 if city is not UNSET: field_dict["city"] = city if country_code is not UNSET: field_dict["countryCode"] = country_code if latitude is not UNSET: field_dict["latitude"] = latitude if longitude is not UNSET: field_dict["longitude"] = longitude if post_code is not UNSET: field_dict["postCode"] = post_code if state is not UNSET: field_dict["state"] = state return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() address_line = d.pop("addressLine", UNSET) address_line_2 = d.pop("addressLine2", UNSET) city = d.pop("city", UNSET) country_code = d.pop("countryCode", UNSET) latitude = d.pop("latitude", UNSET) longitude = d.pop("longitude", UNSET) post_code = d.pop("postCode", UNSET) state = d.pop("state", UNSET) address = cls( address_line=address_line, address_line_2=address_line_2, city=city, country_code=country_code, latitude=latitude, longitude=longitude, post_code=post_code, state=state, ) address.additional_properties = d return address @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/address.py
0.900506
0.309284
address.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.category import Category from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseCategory") @attr.s(auto_attribs=True) class ResponseCategory: """ Attributes: request_status (RequestStatus): category (Union[Unset, Category]): A Category is used to group products """ request_status: RequestStatus category: Union[Unset, Category] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() category: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.category, Unset): category = self.category.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if category is not UNSET: field_dict["category"] = category return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _category = d.pop("category", UNSET) category: Union[Unset, Category] if isinstance(_category, Unset): category = UNSET else: category = Category.from_dict(_category) response_category = cls( request_status=request_status, category=category, ) response_category.additional_properties = d return response_category @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_category.py
0.803444
0.190159
response_category.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.extra_extra_price_type import ExtraExtraPriceType from ..models.image import Image from ..types import UNSET, Unset T = TypeVar("T", bound="Extra") @attr.s(auto_attribs=True) class Extra: """Optional service or item that can be purchased when booking a specific product Attributes: description (Union[Unset, str]): Description of the extra extra_price_type (Union[Unset, ExtraExtraPriceType]): Price type for this extra. Defines what quantities are allowed and how their price is calculated id (Union[Unset, int]): ID of the extra image (Union[Unset, Image]): Image links. name (Union[Unset, str]): Name of the extra price (Union[Unset, float]): Price for a single quantity of this extra quantity (Union[Unset, int]): Quantity booked """ description: Union[Unset, str] = UNSET extra_price_type: Union[Unset, ExtraExtraPriceType] = UNSET id: Union[Unset, int] = UNSET image: Union[Unset, Image] = UNSET name: Union[Unset, str] = UNSET price: Union[Unset, float] = UNSET quantity: Union[Unset, int] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: description = self.description extra_price_type: Union[Unset, str] = UNSET if not isinstance(self.extra_price_type, Unset): extra_price_type = self.extra_price_type.value id = self.id image: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.image, Unset): image = self.image.to_dict() name = self.name price = self.price quantity = self.quantity field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if description is not UNSET: field_dict["description"] = description if extra_price_type is not UNSET: field_dict["extraPriceType"] = extra_price_type if id is not UNSET: field_dict["id"] = id if image is not UNSET: field_dict["image"] = image if name is not UNSET: field_dict["name"] = name if price is not UNSET: field_dict["price"] = price if quantity is not UNSET: field_dict["quantity"] = quantity return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() description = d.pop("description", UNSET) _extra_price_type = d.pop("extraPriceType", UNSET) extra_price_type: Union[Unset, ExtraExtraPriceType] if isinstance(_extra_price_type, Unset): extra_price_type = UNSET else: extra_price_type = ExtraExtraPriceType(_extra_price_type) id = d.pop("id", UNSET) _image = d.pop("image", UNSET) image: Union[Unset, Image] if isinstance(_image, Unset): image = UNSET else: image = Image.from_dict(_image) name = d.pop("name", UNSET) price = d.pop("price", UNSET) quantity = d.pop("quantity", UNSET) extra = cls( description=description, extra_price_type=extra_price_type, id=id, image=image, name=name, price=price, quantity=quantity, ) extra.additional_properties = d return extra @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/extra.py
0.833189
0.318525
extra.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.price_option_create_price_group_type import PriceOptionCreatePriceGroupType from ..types import UNSET, Unset T = TypeVar("T", bound="PriceOptionCreate") @attr.s(auto_attribs=True) class PriceOptionCreate: """A Price Option belongs to a product or products session. It holds the price details for a specific price type.Products can have one or many price options (I.e. Adult, Child, Family, etc.) Attributes: label (Union[Unset, str]): Label for this price (I.e. "Adult", "Child") max_quantity (Union[Unset, int]): Max booking quantity for the product price option. Can be specified, if the price option is fixed or a grouptype. For a successful booking of the product, the number of participants for this price option have to be lesser or equal than this value. min_quantity (Union[Unset, int]): Min booking quantity for the product price option. Can be specified, if the price option is fixed or a group type. For a successful booking of the product, the number of participants for this price option have to be greater or equal than this value. price (Union[Unset, float]): Price amount (I.e. "200.00") price_group_type (Union[Unset, PriceOptionCreatePriceGroupType]): If this price is for a group, is the price for the whole group (TOTAL) or per quantity (EACH) product_code (Union[Unset, str]): Product code to which the price options belongs to. Since Rezdy introduced shared availability option for products, the product sessions can contain price overrides for all of the products, which share the sessions. Therefore it is necessary to filer only the price options matching the chosen product code on the client side, when processing /availability service responses. seats_used (Union[Unset, int]): How many seats one quantity of this price willuse. Used for availability calculations. For example 1 quantity of "Family of 4" will use 4 seats. """ label: Union[Unset, str] = UNSET max_quantity: Union[Unset, int] = UNSET min_quantity: Union[Unset, int] = UNSET price: Union[Unset, float] = UNSET price_group_type: Union[Unset, PriceOptionCreatePriceGroupType] = UNSET product_code: Union[Unset, str] = UNSET seats_used: Union[Unset, int] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: label = self.label max_quantity = self.max_quantity min_quantity = self.min_quantity price = self.price price_group_type: Union[Unset, str] = UNSET if not isinstance(self.price_group_type, Unset): price_group_type = self.price_group_type.value product_code = self.product_code seats_used = self.seats_used field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if label is not UNSET: field_dict["label"] = label if max_quantity is not UNSET: field_dict["maxQuantity"] = max_quantity if min_quantity is not UNSET: field_dict["minQuantity"] = min_quantity if price is not UNSET: field_dict["price"] = price if price_group_type is not UNSET: field_dict["priceGroupType"] = price_group_type if product_code is not UNSET: field_dict["productCode"] = product_code if seats_used is not UNSET: field_dict["seatsUsed"] = seats_used return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() label = d.pop("label", UNSET) max_quantity = d.pop("maxQuantity", UNSET) min_quantity = d.pop("minQuantity", UNSET) price = d.pop("price", UNSET) _price_group_type = d.pop("priceGroupType", UNSET) price_group_type: Union[Unset, PriceOptionCreatePriceGroupType] if isinstance(_price_group_type, Unset): price_group_type = UNSET else: price_group_type = PriceOptionCreatePriceGroupType(_price_group_type) product_code = d.pop("productCode", UNSET) seats_used = d.pop("seatsUsed", UNSET) price_option_create = cls( label=label, max_quantity=max_quantity, min_quantity=min_quantity, price=price, price_group_type=price_group_type, product_code=product_code, seats_used=seats_used, ) price_option_create.additional_properties = d return price_option_create @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/price_option_create.py
0.858511
0.485905
price_option_create.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.category import Category from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseCategoryList") @attr.s(auto_attribs=True) class ResponseCategoryList: """ Attributes: request_status (RequestStatus): categories (Union[Unset, List[Category]]): """ request_status: RequestStatus categories: Union[Unset, List[Category]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() categories: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.categories, Unset): categories = [] for categories_item_data in self.categories: categories_item = categories_item_data.to_dict() categories.append(categories_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if categories is not UNSET: field_dict["categories"] = categories return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) categories = [] _categories = d.pop("categories", UNSET) for categories_item_data in _categories or []: categories_item = Category.from_dict(categories_item_data) categories.append(categories_item) response_category_list = cls( request_status=request_status, categories=categories, ) response_category_list.additional_properties = d return response_category_list @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_category_list.py
0.817465
0.190611
response_category_list.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.booking_field_create_field_type import BookingFieldCreateFieldType from ..types import UNSET, Unset T = TypeVar("T", bound="BookingFieldCreate") @attr.s(auto_attribs=True) class BookingFieldCreate: """An information about a booking or a participant. Attributes: field_type (Union[Unset, BookingFieldCreateFieldType]): Type of a custom booking field. This type does not apply on the Rezdy build-in booking fields. See the section <a href="/guides/API%20Related%20Articles/Create%20products">Product booking fields</a> label (Union[Unset, str]): Field label that can be shown to customers list_options (Union[Unset, str]): If this field only allows limited values to be selected from a list, they'll be included in this string, separated by \r\n required_per_booking (Union[Unset, bool]): true if this field must be populated once per booking, regardless of the number of items or participants. It should be in Booking.fields<p><i>Currently, required fields are not validated when a booking is created though public API, however it's a good practice to support them on in your client code <b>However, soon the required fields will be enforced for public API booking.</b>.</i></p> required_per_participant (Union[Unset, bool]): true if this field must be populated for each participant. It should be in Booking.BookingItem.Participant.fields.<p><i>Currently, required fields are not validated when a booking is created though public API, however it's a good practice to support them on in your client code. <b>However, soon the required fields will be enforced for public API booking.</b></i></p> visible_per_booking (Union[Unset, bool]): true if this field should be asked once per booking, regardless of the number of items or participants. It should be in Booking.fields visible_per_participant (Union[Unset, bool]): true if this field should be asked for each participant when doing a booking. It should be in Booking.BookingItem.Participant.fields. """ field_type: Union[Unset, BookingFieldCreateFieldType] = UNSET label: Union[Unset, str] = UNSET list_options: Union[Unset, str] = UNSET required_per_booking: Union[Unset, bool] = UNSET required_per_participant: Union[Unset, bool] = UNSET visible_per_booking: Union[Unset, bool] = UNSET visible_per_participant: Union[Unset, bool] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: field_type: Union[Unset, str] = UNSET if not isinstance(self.field_type, Unset): field_type = self.field_type.value label = self.label list_options = self.list_options required_per_booking = self.required_per_booking required_per_participant = self.required_per_participant visible_per_booking = self.visible_per_booking visible_per_participant = self.visible_per_participant field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if field_type is not UNSET: field_dict["fieldType"] = field_type if label is not UNSET: field_dict["label"] = label if list_options is not UNSET: field_dict["listOptions"] = list_options if required_per_booking is not UNSET: field_dict["requiredPerBooking"] = required_per_booking if required_per_participant is not UNSET: field_dict["requiredPerParticipant"] = required_per_participant if visible_per_booking is not UNSET: field_dict["visiblePerBooking"] = visible_per_booking if visible_per_participant is not UNSET: field_dict["visiblePerParticipant"] = visible_per_participant return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() _field_type = d.pop("fieldType", UNSET) field_type: Union[Unset, BookingFieldCreateFieldType] if isinstance(_field_type, Unset): field_type = UNSET else: field_type = BookingFieldCreateFieldType(_field_type) label = d.pop("label", UNSET) list_options = d.pop("listOptions", UNSET) required_per_booking = d.pop("requiredPerBooking", UNSET) required_per_participant = d.pop("requiredPerParticipant", UNSET) visible_per_booking = d.pop("visiblePerBooking", UNSET) visible_per_participant = d.pop("visiblePerParticipant", UNSET) booking_field_create = cls( field_type=field_type, label=label, list_options=list_options, required_per_booking=required_per_booking, required_per_participant=required_per_participant, visible_per_booking=visible_per_booking, visible_per_participant=visible_per_participant, ) booking_field_create.additional_properties = d return booking_field_create @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking_field_create.py
0.793666
0.293499
booking_field_create.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.net_rate import NetRate from ..models.product_rate_commission_type import ProductRateCommissionType from ..types import UNSET, Unset T = TypeVar("T", bound="ProductRate") @attr.s(auto_attribs=True) class ProductRate: """A ProductRate is used to map a product and its associated value commission Attributes: commission_type (Union[Unset, ProductRateCommissionType]): Commission type: PERCENTAGE, NET_RATE net_rates (Union[Unset, List[NetRate]]): List of Net rates with its associated price option label e.g. Adult $20, Child $10 etc. This is mandatory if Commission Type is NET_RATE percentage_commission (Union[Unset, float]): Percentage value of the commission. This should be mandatory if Commission Type is PERCENTAGE percentage_include_extras (Union[Unset, bool]): Includes extras, This is mandatory if Commission Type is PERCENTAGE. If true, the product's extras will be included in the agent commission, otherwise the commission will be calculated based on the product price only. product_code (Union[Unset, str]): Product's product code """ commission_type: Union[Unset, ProductRateCommissionType] = UNSET net_rates: Union[Unset, List[NetRate]] = UNSET percentage_commission: Union[Unset, float] = UNSET percentage_include_extras: Union[Unset, bool] = UNSET product_code: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: commission_type: Union[Unset, str] = UNSET if not isinstance(self.commission_type, Unset): commission_type = self.commission_type.value net_rates: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.net_rates, Unset): net_rates = [] for net_rates_item_data in self.net_rates: net_rates_item = net_rates_item_data.to_dict() net_rates.append(net_rates_item) percentage_commission = self.percentage_commission percentage_include_extras = self.percentage_include_extras product_code = self.product_code field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if commission_type is not UNSET: field_dict["commissionType"] = commission_type if net_rates is not UNSET: field_dict["netRates"] = net_rates if percentage_commission is not UNSET: field_dict["percentageCommission"] = percentage_commission if percentage_include_extras is not UNSET: field_dict["percentageIncludeExtras"] = percentage_include_extras if product_code is not UNSET: field_dict["productCode"] = product_code return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() _commission_type = d.pop("commissionType", UNSET) commission_type: Union[Unset, ProductRateCommissionType] if isinstance(_commission_type, Unset): commission_type = UNSET else: commission_type = ProductRateCommissionType(_commission_type) net_rates = [] _net_rates = d.pop("netRates", UNSET) for net_rates_item_data in _net_rates or []: net_rates_item = NetRate.from_dict(net_rates_item_data) net_rates.append(net_rates_item) percentage_commission = d.pop("percentageCommission", UNSET) percentage_include_extras = d.pop("percentageIncludeExtras", UNSET) product_code = d.pop("productCode", UNSET) product_rate = cls( commission_type=commission_type, net_rates=net_rates, percentage_commission=percentage_commission, percentage_include_extras=percentage_include_extras, product_code=product_code, ) product_rate.additional_properties = d return product_rate @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/product_rate.py
0.804521
0.32146
product_rate.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.booking_field import BookingField from ..models.booking_item_create import BookingItemCreate from ..models.booking_update_status import BookingUpdateStatus from ..models.customer import Customer from ..models.user import User from ..types import UNSET, Unset T = TypeVar("T", bound="BookingUpdate") @attr.s(auto_attribs=True) class BookingUpdate: """Booking update object used to update a booking in Rezdy's system. Attributes: created_by (Union[Unset, User]): Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company. customer (Union[Unset, Customer]): The customer is the person making the booking, and most of the time paying for it.<br>It differs from Participants, who are the people attending a tour fields (Union[Unset, List[BookingField]]): List of custom fields that are required "once per booking" by all the products in this booking internal_notes (Union[Unset, str]): Comments only visible internally by the supplier items (Union[Unset, List[BookingItemCreate]]): List of items in this booking. A booking can contain multiple products. Each BookingItem is a separate product with its own set of quantities and participant details. order_number (Union[Unset, str]): Order number. This is the number you should give to customers and print on booking confirmations. Order number is generated by the system, therefore, even if it is specified in the booking request, it will be overwritten. reseller_comments (Union[Unset, str]): Comments only visible by the agent and the supplier. This should be used by the agent to send voucher numbers/redemption codes to suppliers. reseller_id (Union[Unset, int]): Rezdy internal ID of the agent company attached to this booking reseller_reference (Union[Unset, str]): External reseller reference, can be used to pass internal booking number. This reference will be shown to a supplier, also it will appear on reports and can be used to filter orders. Maxiumum number of characters is 30 reseller_user (Union[Unset, User]): Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company. status (Union[Unset, BookingUpdateStatus]): Status of this booking """ created_by: Union[Unset, User] = UNSET customer: Union[Unset, Customer] = UNSET fields: Union[Unset, List[BookingField]] = UNSET internal_notes: Union[Unset, str] = UNSET items: Union[Unset, List[BookingItemCreate]] = UNSET order_number: Union[Unset, str] = UNSET reseller_comments: Union[Unset, str] = UNSET reseller_id: Union[Unset, int] = UNSET reseller_reference: Union[Unset, str] = UNSET reseller_user: Union[Unset, User] = UNSET status: Union[Unset, BookingUpdateStatus] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: created_by: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.created_by, Unset): created_by = self.created_by.to_dict() customer: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.customer, Unset): customer = self.customer.to_dict() fields: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.fields, Unset): fields = [] for fields_item_data in self.fields: fields_item = fields_item_data.to_dict() fields.append(fields_item) internal_notes = self.internal_notes items: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.items, Unset): items = [] for items_item_data in self.items: items_item = items_item_data.to_dict() items.append(items_item) order_number = self.order_number reseller_comments = self.reseller_comments reseller_id = self.reseller_id reseller_reference = self.reseller_reference reseller_user: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.reseller_user, Unset): reseller_user = self.reseller_user.to_dict() status: Union[Unset, str] = UNSET if not isinstance(self.status, Unset): status = self.status.value field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if created_by is not UNSET: field_dict["createdBy"] = created_by if customer is not UNSET: field_dict["customer"] = customer if fields is not UNSET: field_dict["fields"] = fields if internal_notes is not UNSET: field_dict["internalNotes"] = internal_notes if items is not UNSET: field_dict["items"] = items if order_number is not UNSET: field_dict["orderNumber"] = order_number if reseller_comments is not UNSET: field_dict["resellerComments"] = reseller_comments if reseller_id is not UNSET: field_dict["resellerId"] = reseller_id if reseller_reference is not UNSET: field_dict["resellerReference"] = reseller_reference if reseller_user is not UNSET: field_dict["resellerUser"] = reseller_user if status is not UNSET: field_dict["status"] = status return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() _created_by = d.pop("createdBy", UNSET) created_by: Union[Unset, User] if isinstance(_created_by, Unset): created_by = UNSET else: created_by = User.from_dict(_created_by) _customer = d.pop("customer", UNSET) customer: Union[Unset, Customer] if isinstance(_customer, Unset): customer = UNSET else: customer = Customer.from_dict(_customer) fields = [] _fields = d.pop("fields", UNSET) for fields_item_data in _fields or []: fields_item = BookingField.from_dict(fields_item_data) fields.append(fields_item) internal_notes = d.pop("internalNotes", UNSET) items = [] _items = d.pop("items", UNSET) for items_item_data in _items or []: items_item = BookingItemCreate.from_dict(items_item_data) items.append(items_item) order_number = d.pop("orderNumber", UNSET) reseller_comments = d.pop("resellerComments", UNSET) reseller_id = d.pop("resellerId", UNSET) reseller_reference = d.pop("resellerReference", UNSET) _reseller_user = d.pop("resellerUser", UNSET) reseller_user: Union[Unset, User] if isinstance(_reseller_user, Unset): reseller_user = UNSET else: reseller_user = User.from_dict(_reseller_user) _status = d.pop("status", UNSET) status: Union[Unset, BookingUpdateStatus] if isinstance(_status, Unset): status = UNSET else: status = BookingUpdateStatus(_status) booking_update = cls( created_by=created_by, customer=customer, fields=fields, internal_notes=internal_notes, items=items, order_number=order_number, reseller_comments=reseller_comments, reseller_id=reseller_id, reseller_reference=reseller_reference, reseller_user=reseller_user, status=status, ) booking_update.additional_properties = d return booking_update @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking_update.py
0.757032
0.289158
booking_update.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.request_status import RequestStatus from ..models.resource import Resource from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseResourceList") @attr.s(auto_attribs=True) class ResponseResourceList: """ Attributes: request_status (RequestStatus): resources (Union[Unset, List[Resource]]): """ request_status: RequestStatus resources: Union[Unset, List[Resource]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() resources: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.resources, Unset): resources = [] for resources_item_data in self.resources: resources_item = resources_item_data.to_dict() resources.append(resources_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if resources is not UNSET: field_dict["resources"] = resources return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) resources = [] _resources = d.pop("resources", UNSET) for resources_item_data in _resources or []: resources_item = Resource.from_dict(resources_item_data) resources.append(resources_item) response_resource_list = cls( request_status=request_status, resources=resources, ) response_resource_list.additional_properties = d return response_resource_list @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_resource_list.py
0.757705
0.154695
response_resource_list.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union import attr from dateutil.parser import isoparse from ..models.price_option import PriceOption from ..types import UNSET, Unset T = TypeVar("T", bound="Session") @attr.s(auto_attribs=True) class Session: """A Session holds availability for a unique product / start time combination and also the rates for the session booking. Attributes: all_day (Union[Unset, bool]): If true, this session lasts all day and no time should be shown to customers. Technically the session will be from midnight to midnight. end_time (Union[Unset, datetime.datetime]): End time of this session. Used to show the customer how long that tour will last end_time_local (Union[Unset, str]): End time of this session in supplier's local timezone. Used to show the customer how long that tour will last id (Union[Unset, int]): Rezdy internal ID for this session price_options (Union[Unset, List[PriceOption]]): List of price options attached to this session. Most of the time they'll match the product's price options, but they can be used to change the price of specific dates/times (I.e. high/low season, weekday/weekend, etc.) product_code (Union[Unset, str]): Rezdy unique productCode linked to this session seats (Union[Unset, int]): Total number of seats for this session. Does not change after a booking is made seats_available (Union[Unset, int]): Current availability for this session. start_time (Union[Unset, datetime.datetime]): Start Time of this session. This time should be used when showing customers the booking date/time. It should be sent in BookingItem.startTime when making new bookings start_time_local (Union[Unset, str]): Start Time of this session in supplier's local timezone. This time should be used when showing customers the booking date/time. It should be sent in BookingItem.startTimeLocal when making new bookings """ all_day: Union[Unset, bool] = UNSET end_time: Union[Unset, datetime.datetime] = UNSET end_time_local: Union[Unset, str] = UNSET id: Union[Unset, int] = UNSET price_options: Union[Unset, List[PriceOption]] = UNSET product_code: Union[Unset, str] = UNSET seats: Union[Unset, int] = UNSET seats_available: Union[Unset, int] = UNSET start_time: Union[Unset, datetime.datetime] = UNSET start_time_local: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: all_day = self.all_day end_time: Union[Unset, str] = UNSET if not isinstance(self.end_time, Unset): end_time = self.end_time.isoformat() end_time_local = self.end_time_local id = self.id price_options: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.price_options, Unset): price_options = [] for price_options_item_data in self.price_options: price_options_item = price_options_item_data.to_dict() price_options.append(price_options_item) product_code = self.product_code seats = self.seats seats_available = self.seats_available start_time: Union[Unset, str] = UNSET if not isinstance(self.start_time, Unset): start_time = self.start_time.isoformat() start_time_local = self.start_time_local field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if all_day is not UNSET: field_dict["allDay"] = all_day if end_time is not UNSET: field_dict["endTime"] = end_time if end_time_local is not UNSET: field_dict["endTimeLocal"] = end_time_local if id is not UNSET: field_dict["id"] = id if price_options is not UNSET: field_dict["priceOptions"] = price_options if product_code is not UNSET: field_dict["productCode"] = product_code if seats is not UNSET: field_dict["seats"] = seats if seats_available is not UNSET: field_dict["seatsAvailable"] = seats_available if start_time is not UNSET: field_dict["startTime"] = start_time if start_time_local is not UNSET: field_dict["startTimeLocal"] = start_time_local return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() all_day = d.pop("allDay", UNSET) _end_time = d.pop("endTime", UNSET) end_time: Union[Unset, datetime.datetime] if isinstance(_end_time, Unset): end_time = UNSET else: end_time = isoparse(_end_time) end_time_local = d.pop("endTimeLocal", UNSET) id = d.pop("id", UNSET) price_options = [] _price_options = d.pop("priceOptions", UNSET) for price_options_item_data in _price_options or []: price_options_item = PriceOption.from_dict(price_options_item_data) price_options.append(price_options_item) product_code = d.pop("productCode", UNSET) seats = d.pop("seats", UNSET) seats_available = d.pop("seatsAvailable", UNSET) _start_time = d.pop("startTime", UNSET) start_time: Union[Unset, datetime.datetime] if isinstance(_start_time, Unset): start_time = UNSET else: start_time = isoparse(_start_time) start_time_local = d.pop("startTimeLocal", UNSET) session = cls( all_day=all_day, end_time=end_time, end_time_local=end_time_local, id=id, price_options=price_options, product_code=product_code, seats=seats, seats_available=seats_available, start_time=start_time, start_time_local=start_time_local, ) session.additional_properties = d return session @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/session.py
0.716814
0.394959
session.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union import attr from dateutil.parser import isoparse from ..models.extra import Extra from ..models.participant import Participant from ..models.pickup_location import PickupLocation from ..models.quantity import Quantity from ..models.voucher import Voucher from ..types import UNSET, Unset T = TypeVar("T", bound="BookingItem") @attr.s(auto_attribs=True) class BookingItem: """A BookingItem is a unique product/startTime combination in a booking Attributes: amount (Union[Unset, float]): Amount charged for this BookingItem. This is automatically generated based on quantities, but you can override the amount by entering a value. If automated payment method is used for the booked product, the Amount of the booked item<br>has to be grater than Net Rate sum of the booked quantities and Rezdy processing fee. end_time (Union[Unset, datetime.datetime]): End time of the session for this BookingItem end_time_local (Union[Unset, str]): End time of the session for this BookingItem in supplier's local timezone. extras (Union[Unset, List[Extra]]): List of Extras booked with this product participants (Union[Unset, List[Participant]]): List of participants. Each participant object contains all the booking fields for a single participant. pickup_location (Union[Unset, PickupLocation]): PickupLocation object. Holds information about the a pickup location from the pickup list configured for the product. product_code (Union[Unset, str]): Unique Rezdy code of the product in this BookingItem product_name (Union[Unset, str]): Name of the product in this BookingItem quantities (Union[Unset, List[Quantity]]): List of quantities booked by this item. Each Quantity must be linked to a Product price option via its label or ID.If the product only has one price option, only 'Quantity.value' is required. start_time (Union[Unset, datetime.datetime]): Start time of the session for this BookingItem start_time_local (Union[Unset, str]): Start time of the session for this BookingItem in supplier's local timezone. subtotal (Union[Unset, float]): Subtotal is the BookingItem.amount plus extras costs plus taxes and fees total_item_tax (Union[Unset, float]): Total tax applied to this booking item. total_quantity (Union[Unset, int]): Total quantity booked by all the Quantity. For example if the booking is for 2 Adults and 1 Child, totalQuantity will be 3. transfer_from (Union[Unset, str]): From location. Only used by Shuttle and Transfer products transfer_return (Union[Unset, bool]): Is this a one-way (false) or a return trip (true)? Only used by Shuttle and Transfer products transfer_to (Union[Unset, str]): To location. Only used by Shuttle and Transfer products vouchers (Union[Unset, List[Voucher]]): List of vouchers created by this booking item - when the product is bought as a gift or is a gift card """ amount: Union[Unset, float] = UNSET end_time: Union[Unset, datetime.datetime] = UNSET end_time_local: Union[Unset, str] = UNSET extras: Union[Unset, List[Extra]] = UNSET participants: Union[Unset, List[Participant]] = UNSET pickup_location: Union[Unset, PickupLocation] = UNSET product_code: Union[Unset, str] = UNSET product_name: Union[Unset, str] = UNSET quantities: Union[Unset, List[Quantity]] = UNSET start_time: Union[Unset, datetime.datetime] = UNSET start_time_local: Union[Unset, str] = UNSET subtotal: Union[Unset, float] = UNSET total_item_tax: Union[Unset, float] = UNSET total_quantity: Union[Unset, int] = UNSET transfer_from: Union[Unset, str] = UNSET transfer_return: Union[Unset, bool] = UNSET transfer_to: Union[Unset, str] = UNSET vouchers: Union[Unset, List[Voucher]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: amount = self.amount end_time: Union[Unset, str] = UNSET if not isinstance(self.end_time, Unset): end_time = self.end_time.isoformat() end_time_local = self.end_time_local extras: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.extras, Unset): extras = [] for extras_item_data in self.extras: extras_item = extras_item_data.to_dict() extras.append(extras_item) participants: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.participants, Unset): participants = [] for participants_item_data in self.participants: participants_item = participants_item_data.to_dict() participants.append(participants_item) pickup_location: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.pickup_location, Unset): pickup_location = self.pickup_location.to_dict() product_code = self.product_code product_name = self.product_name quantities: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.quantities, Unset): quantities = [] for quantities_item_data in self.quantities: quantities_item = quantities_item_data.to_dict() quantities.append(quantities_item) start_time: Union[Unset, str] = UNSET if not isinstance(self.start_time, Unset): start_time = self.start_time.isoformat() start_time_local = self.start_time_local subtotal = self.subtotal total_item_tax = self.total_item_tax total_quantity = self.total_quantity transfer_from = self.transfer_from transfer_return = self.transfer_return transfer_to = self.transfer_to vouchers: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.vouchers, Unset): vouchers = [] for vouchers_item_data in self.vouchers: vouchers_item = vouchers_item_data.to_dict() vouchers.append(vouchers_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if amount is not UNSET: field_dict["amount"] = amount if end_time is not UNSET: field_dict["endTime"] = end_time if end_time_local is not UNSET: field_dict["endTimeLocal"] = end_time_local if extras is not UNSET: field_dict["extras"] = extras if participants is not UNSET: field_dict["participants"] = participants if pickup_location is not UNSET: field_dict["pickupLocation"] = pickup_location if product_code is not UNSET: field_dict["productCode"] = product_code if product_name is not UNSET: field_dict["productName"] = product_name if quantities is not UNSET: field_dict["quantities"] = quantities if start_time is not UNSET: field_dict["startTime"] = start_time if start_time_local is not UNSET: field_dict["startTimeLocal"] = start_time_local if subtotal is not UNSET: field_dict["subtotal"] = subtotal if total_item_tax is not UNSET: field_dict["totalItemTax"] = total_item_tax if total_quantity is not UNSET: field_dict["totalQuantity"] = total_quantity if transfer_from is not UNSET: field_dict["transferFrom"] = transfer_from if transfer_return is not UNSET: field_dict["transferReturn"] = transfer_return if transfer_to is not UNSET: field_dict["transferTo"] = transfer_to if vouchers is not UNSET: field_dict["vouchers"] = vouchers return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() amount = d.pop("amount", UNSET) _end_time = d.pop("endTime", UNSET) end_time: Union[Unset, datetime.datetime] if isinstance(_end_time, Unset): end_time = UNSET else: end_time = isoparse(_end_time) end_time_local = d.pop("endTimeLocal", UNSET) extras = [] _extras = d.pop("extras", UNSET) for extras_item_data in _extras or []: extras_item = Extra.from_dict(extras_item_data) extras.append(extras_item) participants = [] _participants = d.pop("participants", UNSET) for participants_item_data in _participants or []: participants_item = Participant.from_dict(participants_item_data) participants.append(participants_item) _pickup_location = d.pop("pickupLocation", UNSET) pickup_location: Union[Unset, PickupLocation] if isinstance(_pickup_location, Unset): pickup_location = UNSET else: pickup_location = PickupLocation.from_dict(_pickup_location) product_code = d.pop("productCode", UNSET) product_name = d.pop("productName", UNSET) quantities = [] _quantities = d.pop("quantities", UNSET) for quantities_item_data in _quantities or []: quantities_item = Quantity.from_dict(quantities_item_data) quantities.append(quantities_item) _start_time = d.pop("startTime", UNSET) start_time: Union[Unset, datetime.datetime] if isinstance(_start_time, Unset): start_time = UNSET else: start_time = isoparse(_start_time) start_time_local = d.pop("startTimeLocal", UNSET) subtotal = d.pop("subtotal", UNSET) total_item_tax = d.pop("totalItemTax", UNSET) total_quantity = d.pop("totalQuantity", UNSET) transfer_from = d.pop("transferFrom", UNSET) transfer_return = d.pop("transferReturn", UNSET) transfer_to = d.pop("transferTo", UNSET) vouchers = [] _vouchers = d.pop("vouchers", UNSET) for vouchers_item_data in _vouchers or []: vouchers_item = Voucher.from_dict(vouchers_item_data) vouchers.append(vouchers_item) booking_item = cls( amount=amount, end_time=end_time, end_time_local=end_time_local, extras=extras, participants=participants, pickup_location=pickup_location, product_code=product_code, product_name=product_name, quantities=quantities, start_time=start_time, start_time_local=start_time_local, subtotal=subtotal, total_item_tax=total_item_tax, total_quantity=total_quantity, transfer_from=transfer_from, transfer_return=transfer_return, transfer_to=transfer_to, vouchers=vouchers, ) booking_item.additional_properties = d return booking_item @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking_item.py
0.760206
0.311126
booking_item.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.booking_field import BookingField from ..types import UNSET, Unset T = TypeVar("T", bound="Participant") @attr.s(auto_attribs=True) class Participant: """Details about a single participant for a single BookingItem.<br>The participant is a person attending a tour. It differs from the Customer, who is the person making the booking and most of the time paying for it. Attributes: fields (Union[Unset, List[BookingField]]): List of BookingField for this participant """ fields: Union[Unset, List[BookingField]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: fields: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.fields, Unset): fields = [] for fields_item_data in self.fields: fields_item = fields_item_data.to_dict() fields.append(fields_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if fields is not UNSET: field_dict["fields"] = fields return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() fields = [] _fields = d.pop("fields", UNSET) for fields_item_data in _fields or []: fields_item = BookingField.from_dict(fields_item_data) fields.append(fields_item) participant = cls( fields=fields, ) participant.additional_properties = d return participant @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/participant.py
0.7586
0.376967
participant.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union import attr from dateutil.parser import isoparse from ..models.customer_gender import CustomerGender from ..models.customer_title import CustomerTitle from ..types import UNSET, Unset T = TypeVar("T", bound="Customer") @attr.s(auto_attribs=True) class Customer: """The customer is the person making the booking, and most of the time paying for it.<br>It differs from Participants, who are the people attending a tour Attributes: about_us (Union[Unset, str]): How did you hear about us? address_line (Union[Unset, str]): Address address_line_2 (Union[Unset, str]): Extended Address city (Union[Unset, str]): City/Town/Suburb company_name (Union[Unset, str]): Company name country_code (Union[Unset, str]): 2 letter ISO country code dob (Union[Unset, datetime.datetime]): Date of birth email (Union[Unset, str]): Email fax (Union[Unset, str]): Fax number first_name (Union[Unset, str]): First name gender (Union[Unset, CustomerGender]): Gender: MALE or FEMALE id (Union[Unset, int]): Rezdy internal ID of the customer last_name (Union[Unset, str]): Last Name marketing (Union[Unset, bool]): Agree to receive marketing emails middle_name (Union[Unset, str]): Middle name mobile (Union[Unset, str]): Mobile phone number name (Union[Unset, str]): Full name - generated from first/middle/last names newsletter (Union[Unset, bool]): Subscribe to the newsletter phone (Union[Unset, str]): Preferred Phone number post_code (Union[Unset, str]): Postcode / ZIP preferred_language (Union[Unset, str]): Preferred language. Should be a 2 letter ISO country code skype (Union[Unset, str]): Skype alias state (Union[Unset, str]): State/County/Region title (Union[Unset, CustomerTitle]): Title """ about_us: Union[Unset, str] = UNSET address_line: Union[Unset, str] = UNSET address_line_2: Union[Unset, str] = UNSET city: Union[Unset, str] = UNSET company_name: Union[Unset, str] = UNSET country_code: Union[Unset, str] = UNSET dob: Union[Unset, datetime.datetime] = UNSET email: Union[Unset, str] = UNSET fax: Union[Unset, str] = UNSET first_name: Union[Unset, str] = UNSET gender: Union[Unset, CustomerGender] = UNSET id: Union[Unset, int] = UNSET last_name: Union[Unset, str] = UNSET marketing: Union[Unset, bool] = UNSET middle_name: Union[Unset, str] = UNSET mobile: Union[Unset, str] = UNSET name: Union[Unset, str] = UNSET newsletter: Union[Unset, bool] = UNSET phone: Union[Unset, str] = UNSET post_code: Union[Unset, str] = UNSET preferred_language: Union[Unset, str] = UNSET skype: Union[Unset, str] = UNSET state: Union[Unset, str] = UNSET title: Union[Unset, CustomerTitle] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: about_us = self.about_us address_line = self.address_line address_line_2 = self.address_line_2 city = self.city company_name = self.company_name country_code = self.country_code dob: Union[Unset, str] = UNSET if not isinstance(self.dob, Unset): dob = self.dob.isoformat() email = self.email fax = self.fax first_name = self.first_name gender: Union[Unset, str] = UNSET if not isinstance(self.gender, Unset): gender = self.gender.value id = self.id last_name = self.last_name marketing = self.marketing middle_name = self.middle_name mobile = self.mobile name = self.name newsletter = self.newsletter phone = self.phone post_code = self.post_code preferred_language = self.preferred_language skype = self.skype state = self.state title: Union[Unset, str] = UNSET if not isinstance(self.title, Unset): title = self.title.value field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if about_us is not UNSET: field_dict["aboutUs"] = about_us if address_line is not UNSET: field_dict["addressLine"] = address_line if address_line_2 is not UNSET: field_dict["addressLine2"] = address_line_2 if city is not UNSET: field_dict["city"] = city if company_name is not UNSET: field_dict["companyName"] = company_name if country_code is not UNSET: field_dict["countryCode"] = country_code if dob is not UNSET: field_dict["dob"] = dob if email is not UNSET: field_dict["email"] = email if fax is not UNSET: field_dict["fax"] = fax if first_name is not UNSET: field_dict["firstName"] = first_name if gender is not UNSET: field_dict["gender"] = gender if id is not UNSET: field_dict["id"] = id if last_name is not UNSET: field_dict["lastName"] = last_name if marketing is not UNSET: field_dict["marketing"] = marketing if middle_name is not UNSET: field_dict["middleName"] = middle_name if mobile is not UNSET: field_dict["mobile"] = mobile if name is not UNSET: field_dict["name"] = name if newsletter is not UNSET: field_dict["newsletter"] = newsletter if phone is not UNSET: field_dict["phone"] = phone if post_code is not UNSET: field_dict["postCode"] = post_code if preferred_language is not UNSET: field_dict["preferredLanguage"] = preferred_language if skype is not UNSET: field_dict["skype"] = skype if state is not UNSET: field_dict["state"] = state if title is not UNSET: field_dict["title"] = title return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() about_us = d.pop("aboutUs", UNSET) address_line = d.pop("addressLine", UNSET) address_line_2 = d.pop("addressLine2", UNSET) city = d.pop("city", UNSET) company_name = d.pop("companyName", UNSET) country_code = d.pop("countryCode", UNSET) _dob = d.pop("dob", UNSET) dob: Union[Unset, datetime.datetime] if isinstance(_dob, Unset): dob = UNSET else: dob = isoparse(_dob) email = d.pop("email", UNSET) fax = d.pop("fax", UNSET) first_name = d.pop("firstName", UNSET) _gender = d.pop("gender", UNSET) gender: Union[Unset, CustomerGender] if isinstance(_gender, Unset): gender = UNSET else: gender = CustomerGender(_gender) id = d.pop("id", UNSET) last_name = d.pop("lastName", UNSET) marketing = d.pop("marketing", UNSET) middle_name = d.pop("middleName", UNSET) mobile = d.pop("mobile", UNSET) name = d.pop("name", UNSET) newsletter = d.pop("newsletter", UNSET) phone = d.pop("phone", UNSET) post_code = d.pop("postCode", UNSET) preferred_language = d.pop("preferredLanguage", UNSET) skype = d.pop("skype", UNSET) state = d.pop("state", UNSET) _title = d.pop("title", UNSET) title: Union[Unset, CustomerTitle] if isinstance(_title, Unset): title = UNSET else: title = CustomerTitle(_title) customer = cls( about_us=about_us, address_line=address_line, address_line_2=address_line_2, city=city, company_name=company_name, country_code=country_code, dob=dob, email=email, fax=fax, first_name=first_name, gender=gender, id=id, last_name=last_name, marketing=marketing, middle_name=middle_name, mobile=mobile, name=name, newsletter=newsletter, phone=phone, post_code=post_code, preferred_language=preferred_language, skype=skype, state=state, title=title, ) customer.additional_properties = d return customer @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/customer.py
0.673299
0.211682
customer.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.company import Company from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseCompany") @attr.s(auto_attribs=True) class ResponseCompany: """ Attributes: request_status (RequestStatus): company (Union[Unset, Company]): Company object. Holds general details and information about a specific company. """ request_status: RequestStatus company: Union[Unset, Company] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() company: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.company, Unset): company = self.company.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if company is not UNSET: field_dict["company"] = company return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _company = d.pop("company", UNSET) company: Union[Unset, Company] if isinstance(_company, Unset): company = UNSET else: company = Company.from_dict(_company) response_company = cls( request_status=request_status, company=company, ) response_company.additional_properties = d return response_company @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_company.py
0.784195
0.185689
response_company.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.tax_tax_fee_type import TaxTaxFeeType from ..models.tax_tax_type import TaxTaxType from ..types import UNSET, Unset T = TypeVar("T", bound="Tax") @attr.s(auto_attribs=True) class Tax: """Tax object. Holds information such as the tax amount applied to an order Attributes: compound (Union[Unset, bool]): Whether a stacked tax with the specified percent is applied. <br> e.g. A $100 item with an exclusive tax of %10 will result in the price being $110. If compound is true, then an addition %10 of $110 will be added as tax. label (Union[Unset, str]): Name/description of the tax price_inclusive (Union[Unset, bool]): Whether the tax is included in the price or not. This field will be displayed if the taxType is PERCENT <br>E.g. A $100 item with price INCLUSIVE tax of 10% will result in a $10 tax as part of the $100. A $100 item with price EXCLUSIVE tax of 10% will result in a $10 tax on top of the $100. supplier_id (Union[Unset, int]): Rezdy internal ID of the company applying this tax tax_amount (Union[Unset, float]): The tax amount. This field will only contain a value if the taxType is one of the following: FIXED_PER_QUANTITY, FIXED_PER_ORDER, FIXED_PER_DURATION tax_fee_type (Union[Unset, TaxTaxFeeType]): Indicate Fee or Tax tax_percent (Union[Unset, float]): Percentage value of the fee/tax. This field will only contain a value if the taxType is PERCENT tax_type (Union[Unset, TaxTaxType]): <b>PERCENT: </b>The tax will be a percentage of the order total.<br><b>FIXED_PER_QUANTITY: </b>The tax will be a fixed amount e.g. $10 per quantity.<br><b>FIXED_PER_ORDER: </b>The tax will be a fixed amount e.g. $10 per booking item.<br><b>FIXED_PER_DURATION: </b>The tax will be a fixed amount e.g. $10 per duration unit.<br> """ compound: Union[Unset, bool] = UNSET label: Union[Unset, str] = UNSET price_inclusive: Union[Unset, bool] = UNSET supplier_id: Union[Unset, int] = UNSET tax_amount: Union[Unset, float] = UNSET tax_fee_type: Union[Unset, TaxTaxFeeType] = UNSET tax_percent: Union[Unset, float] = UNSET tax_type: Union[Unset, TaxTaxType] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: compound = self.compound label = self.label price_inclusive = self.price_inclusive supplier_id = self.supplier_id tax_amount = self.tax_amount tax_fee_type: Union[Unset, str] = UNSET if not isinstance(self.tax_fee_type, Unset): tax_fee_type = self.tax_fee_type.value tax_percent = self.tax_percent tax_type: Union[Unset, str] = UNSET if not isinstance(self.tax_type, Unset): tax_type = self.tax_type.value field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if compound is not UNSET: field_dict["compound"] = compound if label is not UNSET: field_dict["label"] = label if price_inclusive is not UNSET: field_dict["priceInclusive"] = price_inclusive if supplier_id is not UNSET: field_dict["supplierId"] = supplier_id if tax_amount is not UNSET: field_dict["taxAmount"] = tax_amount if tax_fee_type is not UNSET: field_dict["taxFeeType"] = tax_fee_type if tax_percent is not UNSET: field_dict["taxPercent"] = tax_percent if tax_type is not UNSET: field_dict["taxType"] = tax_type return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() compound = d.pop("compound", UNSET) label = d.pop("label", UNSET) price_inclusive = d.pop("priceInclusive", UNSET) supplier_id = d.pop("supplierId", UNSET) tax_amount = d.pop("taxAmount", UNSET) _tax_fee_type = d.pop("taxFeeType", UNSET) tax_fee_type: Union[Unset, TaxTaxFeeType] if isinstance(_tax_fee_type, Unset): tax_fee_type = UNSET else: tax_fee_type = TaxTaxFeeType(_tax_fee_type) tax_percent = d.pop("taxPercent", UNSET) _tax_type = d.pop("taxType", UNSET) tax_type: Union[Unset, TaxTaxType] if isinstance(_tax_type, Unset): tax_type = UNSET else: tax_type = TaxTaxType(_tax_type) tax = cls( compound=compound, label=label, price_inclusive=price_inclusive, supplier_id=supplier_id, tax_amount=tax_amount, tax_fee_type=tax_fee_type, tax_percent=tax_percent, tax_type=tax_type, ) tax.additional_properties = d return tax @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/tax.py
0.770594
0.619068
tax.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..types import UNSET, Unset T = TypeVar("T", bound="PickupLocation") @attr.s(auto_attribs=True) class PickupLocation: """PickupLocation object. Holds information about the a pickup location from the pickup list configured for the product. Attributes: additional_instructions (Union[Unset, str]): Additional instructions for the pickup location. address (Union[Unset, str]): Address of the pickup location<br>In a booking item object, it represents a chosen pickup address for the booked item. latitude (Union[Unset, float]): google maps calculated latitude of the pickup address location_name (Union[Unset, str]): <p>Pickup location name - free text name for the location.</p>In a booking item object, it represents customer's pickup location name (if configured on product). It can be one name from pickup locations list of the booked product, or free text in case of the other pickup location option.<p>The value will be ignored, if the product does not allow pickups or if the location name does not match one of the product's pickup locations and 'other' pickup option is not enabled for the product pickup.</p> longitude (Union[Unset, float]): google maps calculated latitude of the pickup address minutes_prior (Union[Unset, int]): Pickup time in minutes, prior to the tour start time. pickup_instructions (Union[Unset, str]): <p>Present only in booking service response</p>Chosen pickup instructions (general and location specific). Shown when the pickup was chosen for the booked item. pickup_time (Union[Unset, str]): <p>Present only in booking service response</p>In a booking item object, it represents a calculated pickup time, in supplier's local timezone. Shown when the pickup was chosen for the booked item and pickup location contains duration. """ additional_instructions: Union[Unset, str] = UNSET address: Union[Unset, str] = UNSET latitude: Union[Unset, float] = UNSET location_name: Union[Unset, str] = UNSET longitude: Union[Unset, float] = UNSET minutes_prior: Union[Unset, int] = UNSET pickup_instructions: Union[Unset, str] = UNSET pickup_time: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: additional_instructions = self.additional_instructions address = self.address latitude = self.latitude location_name = self.location_name longitude = self.longitude minutes_prior = self.minutes_prior pickup_instructions = self.pickup_instructions pickup_time = self.pickup_time field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if additional_instructions is not UNSET: field_dict["additionalInstructions"] = additional_instructions if address is not UNSET: field_dict["address"] = address if latitude is not UNSET: field_dict["latitude"] = latitude if location_name is not UNSET: field_dict["locationName"] = location_name if longitude is not UNSET: field_dict["longitude"] = longitude if minutes_prior is not UNSET: field_dict["minutesPrior"] = minutes_prior if pickup_instructions is not UNSET: field_dict["pickupInstructions"] = pickup_instructions if pickup_time is not UNSET: field_dict["pickupTime"] = pickup_time return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() additional_instructions = d.pop("additionalInstructions", UNSET) address = d.pop("address", UNSET) latitude = d.pop("latitude", UNSET) location_name = d.pop("locationName", UNSET) longitude = d.pop("longitude", UNSET) minutes_prior = d.pop("minutesPrior", UNSET) pickup_instructions = d.pop("pickupInstructions", UNSET) pickup_time = d.pop("pickupTime", UNSET) pickup_location = cls( additional_instructions=additional_instructions, address=address, latitude=latitude, location_name=location_name, longitude=longitude, minutes_prior=minutes_prior, pickup_instructions=pickup_instructions, pickup_time=pickup_time, ) pickup_location.additional_properties = d return pickup_location @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/pickup_location.py
0.883569
0.413714
pickup_location.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.booking_field_field_type import BookingFieldFieldType from ..types import UNSET, Unset T = TypeVar("T", bound="BookingField") @attr.s(auto_attribs=True) class BookingField: """An information about a booking or a participant, based on context - either nested in a booking or a participant object (I.e. "First Name", "Dietary requirements", "Hotel Pickup").<p><ul>How to handle the booking fields: <li>requiredPerXXX is true: the fields is mandatory for the booking, a booking with missing required field will fail</li> <li>visiblePerXXX is true: the fields is optional, a customer should be asked to fill it up, but the booking will not fail if it's empty or not sent</li> <li>visiblePerXXX is false AND requiredPerXXX is false: the field for this product is not visible, nor required, you can skip it - do not display it to a user</li></ul><ul>How to send the booking fields in a booking request: <li>fields XXXperParticipant are sent for each pax in the participants array, as "fields"</li> <li>fields XXXperBooking are sent only once, in the root booking object, as "fields"</li></ul></p> Attributes: field_type (Union[Unset, BookingFieldFieldType]): Booking field type which determines its format. See <a href="/guides/API%20Related%20Articles/Booking%20Fields%20Format">Booking Fields Format</a> label (Union[Unset, str]): Field label that can be shown to customers list_options (Union[Unset, str]): If this field only allows limited values to be selected from a list, they'll be included in this string, separated by \r\n required_per_booking (Union[Unset, bool]): true if this field must be populated once per booking, regardless of the number of items or participants. It should be in Booking.fields<p><i>Currently, required fields are not validated when a booking is created though public API, however, it's a good practice to support them in your client code <b>However, soon the required fields will be enforced for public API booking.</b>.</i></p> required_per_participant (Union[Unset, bool]): true if this field must be populated for each participant. It should be in Booking.BookingItem.Participant.fields.<p><i>Currently, required fields are not validated when a booking is created through public API, however, it's a good practice to support them in your client code. <b>However, soon the required fields will be enforced for public API booking.</b></i></p> value (Union[Unset, str]): Value entered by the customer for this field visible_per_booking (Union[Unset, bool]): true if this field should be asked once per booking, regardless of the number of items or participants. It should be in Booking.fields visible_per_participant (Union[Unset, bool]): true if this field should be asked for each participant when doing a booking. It should be in Booking.BookingItem.Participant.fields. """ field_type: Union[Unset, BookingFieldFieldType] = UNSET label: Union[Unset, str] = UNSET list_options: Union[Unset, str] = UNSET required_per_booking: Union[Unset, bool] = UNSET required_per_participant: Union[Unset, bool] = UNSET value: Union[Unset, str] = UNSET visible_per_booking: Union[Unset, bool] = UNSET visible_per_participant: Union[Unset, bool] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: field_type: Union[Unset, str] = UNSET if not isinstance(self.field_type, Unset): field_type = self.field_type.value label = self.label list_options = self.list_options required_per_booking = self.required_per_booking required_per_participant = self.required_per_participant value = self.value visible_per_booking = self.visible_per_booking visible_per_participant = self.visible_per_participant field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if field_type is not UNSET: field_dict["fieldType"] = field_type if label is not UNSET: field_dict["label"] = label if list_options is not UNSET: field_dict["listOptions"] = list_options if required_per_booking is not UNSET: field_dict["requiredPerBooking"] = required_per_booking if required_per_participant is not UNSET: field_dict["requiredPerParticipant"] = required_per_participant if value is not UNSET: field_dict["value"] = value if visible_per_booking is not UNSET: field_dict["visiblePerBooking"] = visible_per_booking if visible_per_participant is not UNSET: field_dict["visiblePerParticipant"] = visible_per_participant return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() _field_type = d.pop("fieldType", UNSET) field_type: Union[Unset, BookingFieldFieldType] if isinstance(_field_type, Unset): field_type = UNSET else: field_type = BookingFieldFieldType(_field_type) label = d.pop("label", UNSET) list_options = d.pop("listOptions", UNSET) required_per_booking = d.pop("requiredPerBooking", UNSET) required_per_participant = d.pop("requiredPerParticipant", UNSET) value = d.pop("value", UNSET) visible_per_booking = d.pop("visiblePerBooking", UNSET) visible_per_participant = d.pop("visiblePerParticipant", UNSET) booking_field = cls( field_type=field_type, label=label, list_options=list_options, required_per_booking=required_per_booking, required_per_participant=required_per_participant, value=value, visible_per_booking=visible_per_booking, visible_per_participant=visible_per_participant, ) booking_field.additional_properties = d return booking_field @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking_field.py
0.756627
0.33516
booking_field.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.rezdy_connect_settings_external_api_format import RezdyConnectSettingsExternalApiFormat from ..models.rezdy_connect_settings_external_booking_strategy import RezdyConnectSettingsExternalBookingStrategy from ..types import UNSET, Unset T = TypeVar("T", bound="RezdyConnectSettings") @attr.s(auto_attribs=True) class RezdyConnectSettings: """Extended product model to support advanced product configuration, including RezdyConnect settings Attributes: product_code (str): Rezdy-generated unique Product code. Used by agents and for API calls external_api_format (Union[Unset, RezdyConnectSettingsExternalApiFormat]): Data format for an external inventory mode product. Use it to specifya payload data format for RezdyConnect calls, when creating a product. external_availability_api (Union[Unset, str]): External availability endpoint for an external inventory mode product. Use it to specify an availability endpoint for RezdyConnect calls, when creating a product. external_booking_api (Union[Unset, str]): External booking endpoint for an external inventory mode product. Use it to specify a booking endpoint for RezdyConnect calls, when creating a product. external_booking_strategy (Union[Unset, RezdyConnectSettingsExternalBookingStrategy]): Booking strategy for an external inventory mode product. Use it to specify a booking strategy for RezdyConnect calls, when creating a product. external_cancellation_api (Union[Unset, str]): External booking cancellation endpoint for an external inventory mode product. Use it to specify a cancellation endpoint for RezdyConnect calls, when creating a product. external_reservation_api (Union[Unset, str]): External reservation endpoint for an external inventory mode product. Use it to specify a reservation endpoint for RezdyConnect calls, when creating a product. """ product_code: str external_api_format: Union[Unset, RezdyConnectSettingsExternalApiFormat] = UNSET external_availability_api: Union[Unset, str] = UNSET external_booking_api: Union[Unset, str] = UNSET external_booking_strategy: Union[Unset, RezdyConnectSettingsExternalBookingStrategy] = UNSET external_cancellation_api: Union[Unset, str] = UNSET external_reservation_api: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: product_code = self.product_code external_api_format: Union[Unset, str] = UNSET if not isinstance(self.external_api_format, Unset): external_api_format = self.external_api_format.value external_availability_api = self.external_availability_api external_booking_api = self.external_booking_api external_booking_strategy: Union[Unset, str] = UNSET if not isinstance(self.external_booking_strategy, Unset): external_booking_strategy = self.external_booking_strategy.value external_cancellation_api = self.external_cancellation_api external_reservation_api = self.external_reservation_api field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "productCode": product_code, } ) if external_api_format is not UNSET: field_dict["externalApiFormat"] = external_api_format if external_availability_api is not UNSET: field_dict["externalAvailabilityApi"] = external_availability_api if external_booking_api is not UNSET: field_dict["externalBookingApi"] = external_booking_api if external_booking_strategy is not UNSET: field_dict["externalBookingStrategy"] = external_booking_strategy if external_cancellation_api is not UNSET: field_dict["externalCancellationApi"] = external_cancellation_api if external_reservation_api is not UNSET: field_dict["externalReservationApi"] = external_reservation_api return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() product_code = d.pop("productCode") _external_api_format = d.pop("externalApiFormat", UNSET) external_api_format: Union[Unset, RezdyConnectSettingsExternalApiFormat] if isinstance(_external_api_format, Unset): external_api_format = UNSET else: external_api_format = RezdyConnectSettingsExternalApiFormat(_external_api_format) external_availability_api = d.pop("externalAvailabilityApi", UNSET) external_booking_api = d.pop("externalBookingApi", UNSET) _external_booking_strategy = d.pop("externalBookingStrategy", UNSET) external_booking_strategy: Union[Unset, RezdyConnectSettingsExternalBookingStrategy] if isinstance(_external_booking_strategy, Unset): external_booking_strategy = UNSET else: external_booking_strategy = RezdyConnectSettingsExternalBookingStrategy(_external_booking_strategy) external_cancellation_api = d.pop("externalCancellationApi", UNSET) external_reservation_api = d.pop("externalReservationApi", UNSET) rezdy_connect_settings = cls( product_code=product_code, external_api_format=external_api_format, external_availability_api=external_availability_api, external_booking_api=external_booking_api, external_booking_strategy=external_booking_strategy, external_cancellation_api=external_cancellation_api, external_reservation_api=external_reservation_api, ) rezdy_connect_settings.additional_properties = d return rezdy_connect_settings @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/rezdy_connect_settings.py
0.780412
0.153074
rezdy_connect_settings.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..types import UNSET, Unset T = TypeVar("T", bound="NetRate") @attr.s(auto_attribs=True) class NetRate: """A Product with its associated price options net rates Attributes: net_price (Union[Unset, float]): Value of the rate for the given price option label price_option_label (Union[Unset, str]): Label of the price option e.g. Adult, Child etc """ net_price: Union[Unset, float] = UNSET price_option_label: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: net_price = self.net_price price_option_label = self.price_option_label field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if net_price is not UNSET: field_dict["netPrice"] = net_price if price_option_label is not UNSET: field_dict["priceOptionLabel"] = price_option_label return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() net_price = d.pop("netPrice", UNSET) price_option_label = d.pop("priceOptionLabel", UNSET) net_rate = cls( net_price=net_price, price_option_label=price_option_label, ) net_rate.additional_properties = d return net_rate @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/net_rate.py
0.868018
0.394434
net_rate.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union import attr from dateutil.parser import isoparse from ..models.booking_payment_currency import BookingPaymentCurrency from ..models.booking_payment_recipient import BookingPaymentRecipient from ..models.booking_payment_type import BookingPaymentType from ..types import UNSET, Unset T = TypeVar("T", bound="BookingPayment") @attr.s(auto_attribs=True) class BookingPayment: """Record of an already processed payment. Attributes: amount (Union[Unset, float]): Payment amount currency (Union[Unset, BookingPaymentCurrency]): Currency for this payment<br>Payments must be in the same currency than the order's totalCurrency. date (Union[Unset, datetime.datetime]): Date this payment was processed label (Union[Unset, str]): Reference or transaction code recipient (Union[Unset, BookingPaymentRecipient]): Payment recipient. type (Union[Unset, BookingPaymentType]): Type of payment """ amount: Union[Unset, float] = UNSET currency: Union[Unset, BookingPaymentCurrency] = UNSET date: Union[Unset, datetime.datetime] = UNSET label: Union[Unset, str] = UNSET recipient: Union[Unset, BookingPaymentRecipient] = UNSET type: Union[Unset, BookingPaymentType] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: amount = self.amount currency: Union[Unset, str] = UNSET if not isinstance(self.currency, Unset): currency = self.currency.value date: Union[Unset, str] = UNSET if not isinstance(self.date, Unset): date = self.date.isoformat() label = self.label recipient: Union[Unset, str] = UNSET if not isinstance(self.recipient, Unset): recipient = self.recipient.value type: Union[Unset, str] = UNSET if not isinstance(self.type, Unset): type = self.type.value field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if amount is not UNSET: field_dict["amount"] = amount if currency is not UNSET: field_dict["currency"] = currency if date is not UNSET: field_dict["date"] = date if label is not UNSET: field_dict["label"] = label if recipient is not UNSET: field_dict["recipient"] = recipient if type is not UNSET: field_dict["type"] = type return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() amount = d.pop("amount", UNSET) _currency = d.pop("currency", UNSET) currency: Union[Unset, BookingPaymentCurrency] if isinstance(_currency, Unset): currency = UNSET else: currency = BookingPaymentCurrency(_currency) _date = d.pop("date", UNSET) date: Union[Unset, datetime.datetime] if isinstance(_date, Unset): date = UNSET else: date = isoparse(_date) label = d.pop("label", UNSET) _recipient = d.pop("recipient", UNSET) recipient: Union[Unset, BookingPaymentRecipient] if isinstance(_recipient, Unset): recipient = UNSET else: recipient = BookingPaymentRecipient(_recipient) _type = d.pop("type", UNSET) type: Union[Unset, BookingPaymentType] if isinstance(_type, Unset): type = UNSET else: type = BookingPaymentType(_type) booking_payment = cls( amount=amount, currency=currency, date=date, label=label, recipient=recipient, type=type, ) booking_payment.additional_properties = d return booking_payment @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking_payment.py
0.767341
0.307865
booking_payment.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.request_status import RequestStatus from ..models.session import Session from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseSessionList") @attr.s(auto_attribs=True) class ResponseSessionList: """ Attributes: request_status (RequestStatus): sessions (Union[Unset, List[Session]]): """ request_status: RequestStatus sessions: Union[Unset, List[Session]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() sessions: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.sessions, Unset): sessions = [] for sessions_item_data in self.sessions: sessions_item = sessions_item_data.to_dict() sessions.append(sessions_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if sessions is not UNSET: field_dict["sessions"] = sessions return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) sessions = [] _sessions = d.pop("sessions", UNSET) for sessions_item_data in _sessions or []: sessions_item = Session.from_dict(sessions_item_data) sessions.append(sessions_item) response_session_list = cls( request_status=request_status, sessions=sessions, ) response_session_list.additional_properties = d return response_session_list @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_session_list.py
0.752195
0.18954
response_session_list.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.category_seo_tag import CategorySeoTag from ..models.image import Image from ..types import UNSET, Unset T = TypeVar("T", bound="Category") @attr.s(auto_attribs=True) class Category: """A Category is used to group products Attributes: category_seo_tags (Union[Unset, List[CategorySeoTag]]): This will store category meta data such as description description (Union[Unset, str]): Category description id (Union[Unset, int]): Category ID image (Union[Unset, Image]): Image links. name (Union[Unset, str]): Category name visible (Union[Unset, bool]): Flag used to determine if the category is public or private.<br>Public categories appear as tabs on the company booking form """ category_seo_tags: Union[Unset, List[CategorySeoTag]] = UNSET description: Union[Unset, str] = UNSET id: Union[Unset, int] = UNSET image: Union[Unset, Image] = UNSET name: Union[Unset, str] = UNSET visible: Union[Unset, bool] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: category_seo_tags: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.category_seo_tags, Unset): category_seo_tags = [] for category_seo_tags_item_data in self.category_seo_tags: category_seo_tags_item = category_seo_tags_item_data.to_dict() category_seo_tags.append(category_seo_tags_item) description = self.description id = self.id image: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.image, Unset): image = self.image.to_dict() name = self.name visible = self.visible field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if category_seo_tags is not UNSET: field_dict["categorySeoTags"] = category_seo_tags if description is not UNSET: field_dict["description"] = description if id is not UNSET: field_dict["id"] = id if image is not UNSET: field_dict["image"] = image if name is not UNSET: field_dict["name"] = name if visible is not UNSET: field_dict["visible"] = visible return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() category_seo_tags = [] _category_seo_tags = d.pop("categorySeoTags", UNSET) for category_seo_tags_item_data in _category_seo_tags or []: category_seo_tags_item = CategorySeoTag.from_dict(category_seo_tags_item_data) category_seo_tags.append(category_seo_tags_item) description = d.pop("description", UNSET) id = d.pop("id", UNSET) _image = d.pop("image", UNSET) image: Union[Unset, Image] if isinstance(_image, Unset): image = UNSET else: image = Image.from_dict(_image) name = d.pop("name", UNSET) visible = d.pop("visible", UNSET) category = cls( category_seo_tags=category_seo_tags, description=description, id=id, image=image, name=name, visible=visible, ) category.additional_properties = d return category @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/category.py
0.806662
0.218096
category.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..types import UNSET, Unset T = TypeVar("T", bound="User") @attr.s(auto_attribs=True) class User: """Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company. Attributes: code (Union[Unset, str]): Unique Rezdy user code email (Union[Unset, str]): Email first_name (Union[Unset, str]): First name last_name (Union[Unset, str]): Last name """ code: Union[Unset, str] = UNSET email: Union[Unset, str] = UNSET first_name: Union[Unset, str] = UNSET last_name: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: code = self.code email = self.email first_name = self.first_name last_name = self.last_name field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if code is not UNSET: field_dict["code"] = code if email is not UNSET: field_dict["email"] = email if first_name is not UNSET: field_dict["firstName"] = first_name if last_name is not UNSET: field_dict["lastName"] = last_name return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() code = d.pop("code", UNSET) email = d.pop("email", UNSET) first_name = d.pop("firstName", UNSET) last_name = d.pop("lastName", UNSET) user = cls( code=code, email=email, first_name=first_name, last_name=last_name, ) user.additional_properties = d return user @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/user.py
0.752422
0.217857
user.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union, cast import attr from dateutil.parser import isoparse from ..models.booking_barcode_type import BookingBarcodeType from ..models.booking_field import BookingField from ..models.booking_item import BookingItem from ..models.booking_payment import BookingPayment from ..models.booking_payment_option import BookingPaymentOption from ..models.booking_reseller_source import BookingResellerSource from ..models.booking_source import BookingSource from ..models.booking_status import BookingStatus from ..models.booking_total_currency import BookingTotalCurrency from ..models.credit_card import CreditCard from ..models.customer import Customer from ..models.user import User from ..types import UNSET, Unset T = TypeVar("T", bound="Booking") @attr.s(auto_attribs=True) class Booking: """Booking object. Lists all the possible fields for all product types and scenarios. Most of them are not required when sending a new booking.<br>A single Booking can be used to book multiple products, each of them being a BookingItem. All the products of one booking have to be from the same supplier. Attributes: barcode_type (Union[Unset, BookingBarcodeType]): Declares the redemption code format customers will receive if the booking was created with barcodes. comments (Union[Unset, str]): Special requirements entered by the customer. Visible to both customer and supplier. commission (Union[Unset, float]): Calculated commission that the agent should receive for this booking coupon (Union[Unset, str]): Promo code that has been applied to this booking created_by (Union[Unset, User]): Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company. credit_card (Union[Unset, CreditCard]): Credit card details.<p>Used to send payment details for a booking</p> customer (Union[Unset, Customer]): The customer is the person making the booking, and most of the time paying for it.<br>It differs from Participants, who are the people attending a tour date_confirmed (Union[Unset, datetime.datetime]): Date this booking was confirmed date_created (Union[Unset, datetime.datetime]): Date this booking was created date_paid (Union[Unset, datetime.datetime]): Date this booking was fully paid date_reconciled (Union[Unset, datetime.datetime]): Date this booking was reconciled with the agent date_updated (Union[Unset, datetime.datetime]): Date this booking was last updated fields (Union[Unset, List[BookingField]]): List of custom fields that are required "once per booking" by all the products in this booking internal_notes (Union[Unset, str]): Comments only visible internally by the supplier items (Union[Unset, List[BookingItem]]): List of items in this booking. A booking can contain multiple products. Each BookingItem is a separate product with its own set of quantities and participant details. order_number (Union[Unset, str]): Order number. This is the number you should give to customers and print on booking confirmations. Order number is generated by the system, therefore, even if it is specified in the booking request, it will be overwritten. payment_option (Union[Unset, BookingPaymentOption]): Payment option selected by the customer when making an online booking payments (Union[Unset, List[BookingPayment]]): List of payments recorded for this booking reseller_alias (Union[Unset, str]): Alias of the agent company attached to this booking reseller_comments (Union[Unset, str]): Comments only visible by the agent and the supplier. This should be used by the agent to send voucher numbers/redemption codes to suppliers. reseller_id (Union[Unset, int]): Rezdy internal ID of the agent company attached to this booking reseller_name (Union[Unset, str]): Name of the agent company attached to this booking reseller_reference (Union[Unset, str]): External reseller reference, can be used to pass internal booking number. This reference will be shown to a supplier, also it will appear on reports and can be used to filter orders. Maxiumum number of characters is 30 reseller_source (Union[Unset, BookingResellerSource]): Source of this booking viewed from the agent reseller_user (Union[Unset, User]): Internal Rezdy user details. This is a Rezdy application user who belongs to a Rezdy agent or supplier company. send_notifications (Union[Unset, bool]): Flag to control if a booking confirmation email should be send to the customer after this booking is created.<br>This will also send other types of customer notifications when setup by the supplier (I.e. SMS, Gift cards) Default: True. source (Union[Unset, BookingSource]): Source of this booking viewed from the supplier source_channel (Union[Unset, str]): Agent code defined by the supplier source_referrer (Union[Unset, str]): Referrer code status (Union[Unset, BookingStatus]): Status of this booking supplier_alias (Union[Unset, str]): Alias of the company supplying this product supplier_id (Union[Unset, int]): Rezdy internal ID of the company supplying this product supplier_name (Union[Unset, str]): Name of the company supplying this product surcharge (Union[Unset, float]): Credit card surcharge calculated for this booking total_amount (Union[Unset, float]): Total booking amount total_currency (Union[Unset, BookingTotalCurrency]): Booking Currency total_due (Union[Unset, float]): Amount still due for this booking total_paid (Union[Unset, float]): Amount already paid vouchers (Union[Unset, List[str]]): List of vouchers (Gift cards) that have been redeemed to pay for this booking """ barcode_type: Union[Unset, BookingBarcodeType] = UNSET comments: Union[Unset, str] = UNSET commission: Union[Unset, float] = UNSET coupon: Union[Unset, str] = UNSET created_by: Union[Unset, User] = UNSET credit_card: Union[Unset, CreditCard] = UNSET customer: Union[Unset, Customer] = UNSET date_confirmed: Union[Unset, datetime.datetime] = UNSET date_created: Union[Unset, datetime.datetime] = UNSET date_paid: Union[Unset, datetime.datetime] = UNSET date_reconciled: Union[Unset, datetime.datetime] = UNSET date_updated: Union[Unset, datetime.datetime] = UNSET fields: Union[Unset, List[BookingField]] = UNSET internal_notes: Union[Unset, str] = UNSET items: Union[Unset, List[BookingItem]] = UNSET order_number: Union[Unset, str] = UNSET payment_option: Union[Unset, BookingPaymentOption] = UNSET payments: Union[Unset, List[BookingPayment]] = UNSET reseller_alias: Union[Unset, str] = UNSET reseller_comments: Union[Unset, str] = UNSET reseller_id: Union[Unset, int] = UNSET reseller_name: Union[Unset, str] = UNSET reseller_reference: Union[Unset, str] = UNSET reseller_source: Union[Unset, BookingResellerSource] = UNSET reseller_user: Union[Unset, User] = UNSET send_notifications: Union[Unset, bool] = True source: Union[Unset, BookingSource] = UNSET source_channel: Union[Unset, str] = UNSET source_referrer: Union[Unset, str] = UNSET status: Union[Unset, BookingStatus] = UNSET supplier_alias: Union[Unset, str] = UNSET supplier_id: Union[Unset, int] = UNSET supplier_name: Union[Unset, str] = UNSET surcharge: Union[Unset, float] = UNSET total_amount: Union[Unset, float] = UNSET total_currency: Union[Unset, BookingTotalCurrency] = UNSET total_due: Union[Unset, float] = UNSET total_paid: Union[Unset, float] = UNSET vouchers: Union[Unset, List[str]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: barcode_type: Union[Unset, str] = UNSET if not isinstance(self.barcode_type, Unset): barcode_type = self.barcode_type.value comments = self.comments commission = self.commission coupon = self.coupon created_by: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.created_by, Unset): created_by = self.created_by.to_dict() credit_card: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.credit_card, Unset): credit_card = self.credit_card.to_dict() customer: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.customer, Unset): customer = self.customer.to_dict() date_confirmed: Union[Unset, str] = UNSET if not isinstance(self.date_confirmed, Unset): date_confirmed = self.date_confirmed.isoformat() date_created: Union[Unset, str] = UNSET if not isinstance(self.date_created, Unset): date_created = self.date_created.isoformat() date_paid: Union[Unset, str] = UNSET if not isinstance(self.date_paid, Unset): date_paid = self.date_paid.isoformat() date_reconciled: Union[Unset, str] = UNSET if not isinstance(self.date_reconciled, Unset): date_reconciled = self.date_reconciled.isoformat() date_updated: Union[Unset, str] = UNSET if not isinstance(self.date_updated, Unset): date_updated = self.date_updated.isoformat() fields: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.fields, Unset): fields = [] for fields_item_data in self.fields: fields_item = fields_item_data.to_dict() fields.append(fields_item) internal_notes = self.internal_notes items: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.items, Unset): items = [] for items_item_data in self.items: items_item = items_item_data.to_dict() items.append(items_item) order_number = self.order_number payment_option: Union[Unset, str] = UNSET if not isinstance(self.payment_option, Unset): payment_option = self.payment_option.value payments: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.payments, Unset): payments = [] for payments_item_data in self.payments: payments_item = payments_item_data.to_dict() payments.append(payments_item) reseller_alias = self.reseller_alias reseller_comments = self.reseller_comments reseller_id = self.reseller_id reseller_name = self.reseller_name reseller_reference = self.reseller_reference reseller_source: Union[Unset, str] = UNSET if not isinstance(self.reseller_source, Unset): reseller_source = self.reseller_source.value reseller_user: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.reseller_user, Unset): reseller_user = self.reseller_user.to_dict() send_notifications = self.send_notifications source: Union[Unset, str] = UNSET if not isinstance(self.source, Unset): source = self.source.value source_channel = self.source_channel source_referrer = self.source_referrer status: Union[Unset, str] = UNSET if not isinstance(self.status, Unset): status = self.status.value supplier_alias = self.supplier_alias supplier_id = self.supplier_id supplier_name = self.supplier_name surcharge = self.surcharge total_amount = self.total_amount total_currency: Union[Unset, str] = UNSET if not isinstance(self.total_currency, Unset): total_currency = self.total_currency.value total_due = self.total_due total_paid = self.total_paid vouchers: Union[Unset, List[str]] = UNSET if not isinstance(self.vouchers, Unset): vouchers = self.vouchers field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if barcode_type is not UNSET: field_dict["barcodeType"] = barcode_type if comments is not UNSET: field_dict["comments"] = comments if commission is not UNSET: field_dict["commission"] = commission if coupon is not UNSET: field_dict["coupon"] = coupon if created_by is not UNSET: field_dict["createdBy"] = created_by if credit_card is not UNSET: field_dict["creditCard"] = credit_card if customer is not UNSET: field_dict["customer"] = customer if date_confirmed is not UNSET: field_dict["dateConfirmed"] = date_confirmed if date_created is not UNSET: field_dict["dateCreated"] = date_created if date_paid is not UNSET: field_dict["datePaid"] = date_paid if date_reconciled is not UNSET: field_dict["dateReconciled"] = date_reconciled if date_updated is not UNSET: field_dict["dateUpdated"] = date_updated if fields is not UNSET: field_dict["fields"] = fields if internal_notes is not UNSET: field_dict["internalNotes"] = internal_notes if items is not UNSET: field_dict["items"] = items if order_number is not UNSET: field_dict["orderNumber"] = order_number if payment_option is not UNSET: field_dict["paymentOption"] = payment_option if payments is not UNSET: field_dict["payments"] = payments if reseller_alias is not UNSET: field_dict["resellerAlias"] = reseller_alias if reseller_comments is not UNSET: field_dict["resellerComments"] = reseller_comments if reseller_id is not UNSET: field_dict["resellerId"] = reseller_id if reseller_name is not UNSET: field_dict["resellerName"] = reseller_name if reseller_reference is not UNSET: field_dict["resellerReference"] = reseller_reference if reseller_source is not UNSET: field_dict["resellerSource"] = reseller_source if reseller_user is not UNSET: field_dict["resellerUser"] = reseller_user if send_notifications is not UNSET: field_dict["sendNotifications"] = send_notifications if source is not UNSET: field_dict["source"] = source if source_channel is not UNSET: field_dict["sourceChannel"] = source_channel if source_referrer is not UNSET: field_dict["sourceReferrer"] = source_referrer if status is not UNSET: field_dict["status"] = status if supplier_alias is not UNSET: field_dict["supplierAlias"] = supplier_alias if supplier_id is not UNSET: field_dict["supplierId"] = supplier_id if supplier_name is not UNSET: field_dict["supplierName"] = supplier_name if surcharge is not UNSET: field_dict["surcharge"] = surcharge if total_amount is not UNSET: field_dict["totalAmount"] = total_amount if total_currency is not UNSET: field_dict["totalCurrency"] = total_currency if total_due is not UNSET: field_dict["totalDue"] = total_due if total_paid is not UNSET: field_dict["totalPaid"] = total_paid if vouchers is not UNSET: field_dict["vouchers"] = vouchers return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() _barcode_type = d.pop("barcodeType", UNSET) barcode_type: Union[Unset, BookingBarcodeType] if isinstance(_barcode_type, Unset): barcode_type = UNSET else: barcode_type = BookingBarcodeType(_barcode_type) comments = d.pop("comments", UNSET) commission = d.pop("commission", UNSET) coupon = d.pop("coupon", UNSET) _created_by = d.pop("createdBy", UNSET) created_by: Union[Unset, User] if isinstance(_created_by, Unset): created_by = UNSET else: created_by = User.from_dict(_created_by) _credit_card = d.pop("creditCard", UNSET) credit_card: Union[Unset, CreditCard] if isinstance(_credit_card, Unset): credit_card = UNSET else: credit_card = CreditCard.from_dict(_credit_card) _customer = d.pop("customer", UNSET) customer: Union[Unset, Customer] if isinstance(_customer, Unset): customer = UNSET else: customer = Customer.from_dict(_customer) _date_confirmed = d.pop("dateConfirmed", UNSET) date_confirmed: Union[Unset, datetime.datetime] if isinstance(_date_confirmed, Unset): date_confirmed = UNSET else: date_confirmed = isoparse(_date_confirmed) _date_created = d.pop("dateCreated", UNSET) date_created: Union[Unset, datetime.datetime] if isinstance(_date_created, Unset): date_created = UNSET else: date_created = isoparse(_date_created) _date_paid = d.pop("datePaid", UNSET) date_paid: Union[Unset, datetime.datetime] if isinstance(_date_paid, Unset): date_paid = UNSET else: date_paid = isoparse(_date_paid) _date_reconciled = d.pop("dateReconciled", UNSET) date_reconciled: Union[Unset, datetime.datetime] if isinstance(_date_reconciled, Unset): date_reconciled = UNSET else: date_reconciled = isoparse(_date_reconciled) _date_updated = d.pop("dateUpdated", UNSET) date_updated: Union[Unset, datetime.datetime] if isinstance(_date_updated, Unset): date_updated = UNSET else: date_updated = isoparse(_date_updated) fields = [] _fields = d.pop("fields", UNSET) for fields_item_data in _fields or []: fields_item = BookingField.from_dict(fields_item_data) fields.append(fields_item) internal_notes = d.pop("internalNotes", UNSET) items = [] _items = d.pop("items", UNSET) for items_item_data in _items or []: items_item = BookingItem.from_dict(items_item_data) items.append(items_item) order_number = d.pop("orderNumber", UNSET) _payment_option = d.pop("paymentOption", UNSET) payment_option: Union[Unset, BookingPaymentOption] if isinstance(_payment_option, Unset): payment_option = UNSET else: payment_option = BookingPaymentOption(_payment_option) payments = [] _payments = d.pop("payments", UNSET) for payments_item_data in _payments or []: payments_item = BookingPayment.from_dict(payments_item_data) payments.append(payments_item) reseller_alias = d.pop("resellerAlias", UNSET) reseller_comments = d.pop("resellerComments", UNSET) reseller_id = d.pop("resellerId", UNSET) reseller_name = d.pop("resellerName", UNSET) reseller_reference = d.pop("resellerReference", UNSET) _reseller_source = d.pop("resellerSource", UNSET) reseller_source: Union[Unset, BookingResellerSource] if isinstance(_reseller_source, Unset): reseller_source = UNSET else: reseller_source = BookingResellerSource(_reseller_source) _reseller_user = d.pop("resellerUser", UNSET) reseller_user: Union[Unset, User] if isinstance(_reseller_user, Unset): reseller_user = UNSET else: reseller_user = User.from_dict(_reseller_user) send_notifications = d.pop("sendNotifications", UNSET) _source = d.pop("source", UNSET) source: Union[Unset, BookingSource] if isinstance(_source, Unset): source = UNSET else: source = BookingSource(_source) source_channel = d.pop("sourceChannel", UNSET) source_referrer = d.pop("sourceReferrer", UNSET) _status = d.pop("status", UNSET) status: Union[Unset, BookingStatus] if isinstance(_status, Unset): status = UNSET else: status = BookingStatus(_status) supplier_alias = d.pop("supplierAlias", UNSET) supplier_id = d.pop("supplierId", UNSET) supplier_name = d.pop("supplierName", UNSET) surcharge = d.pop("surcharge", UNSET) total_amount = d.pop("totalAmount", UNSET) _total_currency = d.pop("totalCurrency", UNSET) total_currency: Union[Unset, BookingTotalCurrency] if isinstance(_total_currency, Unset): total_currency = UNSET else: total_currency = BookingTotalCurrency(_total_currency) total_due = d.pop("totalDue", UNSET) total_paid = d.pop("totalPaid", UNSET) vouchers = cast(List[str], d.pop("vouchers", UNSET)) booking = cls( barcode_type=barcode_type, comments=comments, commission=commission, coupon=coupon, created_by=created_by, credit_card=credit_card, customer=customer, date_confirmed=date_confirmed, date_created=date_created, date_paid=date_paid, date_reconciled=date_reconciled, date_updated=date_updated, fields=fields, internal_notes=internal_notes, items=items, order_number=order_number, payment_option=payment_option, payments=payments, reseller_alias=reseller_alias, reseller_comments=reseller_comments, reseller_id=reseller_id, reseller_name=reseller_name, reseller_reference=reseller_reference, reseller_source=reseller_source, reseller_user=reseller_user, send_notifications=send_notifications, source=source, source_channel=source_channel, source_referrer=source_referrer, status=status, supplier_alias=supplier_alias, supplier_id=supplier_id, supplier_name=supplier_name, surcharge=surcharge, total_amount=total_amount, total_currency=total_currency, total_due=total_due, total_paid=total_paid, vouchers=vouchers, ) booking.additional_properties = d return booking @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking.py
0.731155
0.397529
booking.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..types import UNSET, Unset T = TypeVar("T", bound="Image") @attr.s(auto_attribs=True) class Image: """Image links. Attributes: id (Union[Unset, int]): Id of the image. Can be used for DELETE /{productCode}/image/{mediaId} service item_url (Union[Unset, str]): Full size image link large_size_url (Union[Unset, str]): Large size image link (1280px) medium_size_url (Union[Unset, str]): Medium size image link (480px) thumbnail_url (Union[Unset, str]): Thumbnail image link (240px) """ id: Union[Unset, int] = UNSET item_url: Union[Unset, str] = UNSET large_size_url: Union[Unset, str] = UNSET medium_size_url: Union[Unset, str] = UNSET thumbnail_url: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: id = self.id item_url = self.item_url large_size_url = self.large_size_url medium_size_url = self.medium_size_url thumbnail_url = self.thumbnail_url field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if id is not UNSET: field_dict["id"] = id if item_url is not UNSET: field_dict["itemUrl"] = item_url if large_size_url is not UNSET: field_dict["largeSizeUrl"] = large_size_url if medium_size_url is not UNSET: field_dict["mediumSizeUrl"] = medium_size_url if thumbnail_url is not UNSET: field_dict["thumbnailUrl"] = thumbnail_url return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() id = d.pop("id", UNSET) item_url = d.pop("itemUrl", UNSET) large_size_url = d.pop("largeSizeUrl", UNSET) medium_size_url = d.pop("mediumSizeUrl", UNSET) thumbnail_url = d.pop("thumbnailUrl", UNSET) image = cls( id=id, item_url=item_url, large_size_url=large_size_url, medium_size_url=medium_size_url, thumbnail_url=thumbnail_url, ) image.additional_properties = d return image @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/image.py
0.820037
0.193871
image.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.image import Image from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseImage") @attr.s(auto_attribs=True) class ResponseImage: """ Attributes: request_status (RequestStatus): img (Union[Unset, Image]): Image links. """ request_status: RequestStatus img: Union[Unset, Image] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() img: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.img, Unset): img = self.img.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if img is not UNSET: field_dict["img"] = img return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _img = d.pop("img", UNSET) img: Union[Unset, Image] if isinstance(_img, Unset): img = UNSET else: img = Image.from_dict(_img) response_image = cls( request_status=request_status, img=img, ) response_image.additional_properties = d return response_image @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_image.py
0.790369
0.194712
response_image.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union import attr from dateutil.parser import isoparse from ..models.extra import Extra from ..models.participant import Participant from ..models.pickup_location import PickupLocation from ..models.quantity import Quantity from ..types import UNSET, Unset T = TypeVar("T", bound="BookingItemCreate") @attr.s(auto_attribs=True) class BookingItemCreate: """An item inside a booking request to specify a unique product/startTime combination Attributes: amount (Union[Unset, float]): Amount charged for this BookingItem. This is automatically generated based on quantities, but you can override the amount by entering a value. If automated payment method is used for the booked product, the Amount of the booked item<br>has to be grater than Net Rate sum of the booked quantities and Rezdy processing fee. end_time (Union[Unset, datetime.datetime]): End time of the session for this BookingItem end_time_local (Union[Unset, str]): End time of the session for this BookingItem in supplier's local timezone. extras (Union[Unset, List[Extra]]): List of Extras booked with this product participants (Union[Unset, List[Participant]]): List of participants. Each participant object contains all the booking fields for a single participant. pickup_location (Union[Unset, PickupLocation]): PickupLocation object. Holds information about the a pickup location from the pickup list configured for the product. product_code (Union[Unset, str]): Unique Rezdy code of the product in this BookingItem quantities (Union[Unset, List[Quantity]]): List of quantities booked by this item. Each Quantity must be linked to a Product price option via its label or ID.If the product only has one price option, only 'Quantity.value' is required. start_time (Union[Unset, datetime.datetime]): Start time of the session for this BookingItem start_time_local (Union[Unset, str]): Start time of the session for this BookingItem in supplier's local timezone. subtotal (Union[Unset, float]): Subtotal is the BookingItem.amount plus extras costs plus taxes and fees """ amount: Union[Unset, float] = UNSET end_time: Union[Unset, datetime.datetime] = UNSET end_time_local: Union[Unset, str] = UNSET extras: Union[Unset, List[Extra]] = UNSET participants: Union[Unset, List[Participant]] = UNSET pickup_location: Union[Unset, PickupLocation] = UNSET product_code: Union[Unset, str] = UNSET quantities: Union[Unset, List[Quantity]] = UNSET start_time: Union[Unset, datetime.datetime] = UNSET start_time_local: Union[Unset, str] = UNSET subtotal: Union[Unset, float] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: amount = self.amount end_time: Union[Unset, str] = UNSET if not isinstance(self.end_time, Unset): end_time = self.end_time.isoformat() end_time_local = self.end_time_local extras: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.extras, Unset): extras = [] for extras_item_data in self.extras: extras_item = extras_item_data.to_dict() extras.append(extras_item) participants: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.participants, Unset): participants = [] for participants_item_data in self.participants: participants_item = participants_item_data.to_dict() participants.append(participants_item) pickup_location: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.pickup_location, Unset): pickup_location = self.pickup_location.to_dict() product_code = self.product_code quantities: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.quantities, Unset): quantities = [] for quantities_item_data in self.quantities: quantities_item = quantities_item_data.to_dict() quantities.append(quantities_item) start_time: Union[Unset, str] = UNSET if not isinstance(self.start_time, Unset): start_time = self.start_time.isoformat() start_time_local = self.start_time_local subtotal = self.subtotal field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if amount is not UNSET: field_dict["amount"] = amount if end_time is not UNSET: field_dict["endTime"] = end_time if end_time_local is not UNSET: field_dict["endTimeLocal"] = end_time_local if extras is not UNSET: field_dict["extras"] = extras if participants is not UNSET: field_dict["participants"] = participants if pickup_location is not UNSET: field_dict["pickupLocation"] = pickup_location if product_code is not UNSET: field_dict["productCode"] = product_code if quantities is not UNSET: field_dict["quantities"] = quantities if start_time is not UNSET: field_dict["startTime"] = start_time if start_time_local is not UNSET: field_dict["startTimeLocal"] = start_time_local if subtotal is not UNSET: field_dict["subtotal"] = subtotal return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() amount = d.pop("amount", UNSET) _end_time = d.pop("endTime", UNSET) end_time: Union[Unset, datetime.datetime] if isinstance(_end_time, Unset): end_time = UNSET else: end_time = isoparse(_end_time) end_time_local = d.pop("endTimeLocal", UNSET) extras = [] _extras = d.pop("extras", UNSET) for extras_item_data in _extras or []: extras_item = Extra.from_dict(extras_item_data) extras.append(extras_item) participants = [] _participants = d.pop("participants", UNSET) for participants_item_data in _participants or []: participants_item = Participant.from_dict(participants_item_data) participants.append(participants_item) _pickup_location = d.pop("pickupLocation", UNSET) pickup_location: Union[Unset, PickupLocation] if isinstance(_pickup_location, Unset): pickup_location = UNSET else: pickup_location = PickupLocation.from_dict(_pickup_location) product_code = d.pop("productCode", UNSET) quantities = [] _quantities = d.pop("quantities", UNSET) for quantities_item_data in _quantities or []: quantities_item = Quantity.from_dict(quantities_item_data) quantities.append(quantities_item) _start_time = d.pop("startTime", UNSET) start_time: Union[Unset, datetime.datetime] if isinstance(_start_time, Unset): start_time = UNSET else: start_time = isoparse(_start_time) start_time_local = d.pop("startTimeLocal", UNSET) subtotal = d.pop("subtotal", UNSET) booking_item_create = cls( amount=amount, end_time=end_time, end_time_local=end_time_local, extras=extras, participants=participants, pickup_location=pickup_location, product_code=product_code, quantities=quantities, start_time=start_time, start_time_local=start_time_local, subtotal=subtotal, ) booking_item_create.additional_properties = d return booking_item_create @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/booking_item_create.py
0.76947
0.263209
booking_item_create.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.extra_request import ExtraRequest from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseExtra") @attr.s(auto_attribs=True) class ResponseExtra: """ Attributes: request_status (RequestStatus): extra (Union[Unset, ExtraRequest]): Partial optional service or item that can be purchased when booking a specific product """ request_status: RequestStatus extra: Union[Unset, ExtraRequest] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() extra: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.extra, Unset): extra = self.extra.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if extra is not UNSET: field_dict["extra"] = extra return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _extra = d.pop("extra", UNSET) extra: Union[Unset, ExtraRequest] if isinstance(_extra, Unset): extra = UNSET else: extra = ExtraRequest.from_dict(_extra) response_extra = cls( request_status=request_status, extra=extra, ) response_extra.additional_properties = d return response_extra @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_extra.py
0.80406
0.150247
response_extra.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.rate import Rate from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseRate") @attr.s(auto_attribs=True) class ResponseRate: """ Attributes: request_status (RequestStatus): rate (Union[Unset, Rate]): A Rate is used to group products with its corresponding shared rate """ request_status: RequestStatus rate: Union[Unset, Rate] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() rate: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.rate, Unset): rate = self.rate.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if rate is not UNSET: field_dict["rate"] = rate return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _rate = d.pop("rate", UNSET) rate: Union[Unset, Rate] if isinstance(_rate, Unset): rate = UNSET else: rate = Rate.from_dict(_rate) response_rate = cls( request_status=request_status, rate=rate, ) response_rate.additional_properties = d return response_rate @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_rate.py
0.81928
0.269452
response_rate.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union, cast import attr from ..models.address import Address from ..models.booking_field_create import BookingFieldCreate from ..models.extra import Extra from ..models.price_option_create import PriceOptionCreate from ..models.product_create_request_barcode_output_type import ProductCreateRequestBarcodeOutputType from ..models.product_create_request_booking_mode import ProductCreateRequestBookingMode from ..models.product_create_request_confirm_mode import ProductCreateRequestConfirmMode from ..models.product_create_request_product_type import ProductCreateRequestProductType from ..types import UNSET, Unset T = TypeVar("T", bound="ProductCreateRequest") @attr.s(auto_attribs=True) class ProductCreateRequest: """Partial product model containing all fields which are currently supported in product create via API. Attributes: booking_fields (List[BookingFieldCreate]): List of booking fields required for this product. booking_mode (ProductCreateRequestBookingMode): Booking mode. Determines if this product needs availability or can be booked for any date. confirm_mode (ProductCreateRequestConfirmMode): Confirmation mode. Determines if bookings are automatically confirmed or it they are pending. description (str): Long product description, is between 100 and 15000 characters. duration_minutes (int): Duration of the product in minutes. name (str): Product name price_options (List[PriceOptionCreate]): List of price options belonging to this product. product_type (ProductCreateRequestProductType): Type of this product. short_description (str): Product description is between 15 and 240 characters. unit_label (str): What a quantity for this product is. It can be people (I.e. participant, passenger, diver) or objects (Kayak, Helicopter, etc.) unit_label_plural (str): Plural version of unitLabel. additional_information (Union[Unset, str]): Additional information for the product, that should be sent after a booking is completed (i.e. by email) to the customer. Useful for integration, when manual control of the entire customer booking experience is wanted, and the automatic confirmation e-mail from Rezdy had been suppressed. advertised_price (Union[Unset, float]): General price indication for this product. It represents a display price only, therefore it does not affect a real booking price, which is calculated based on the price options. barcode_output_type (Union[Unset, ProductCreateRequestBarcodeOutputType]): Specifies how to output the barcodes when this product is booked. Valid types are:<br><li>PARTICIPANT: Barcodes will be generated by rezdy for each participant when an booking is created for this product</li><li>ORDER: Barcodes will be generated by rezdy per booking</li> charter (Union[Unset, bool]): A charter product means each session can only have a single booking, whatever the number of seats booked. confirm_mode_min_participants (Union[Unset, int]): If confirmMode is MANUAL_THEN_AUTO or AUTO_THEN_MANUAL, determines the minimum number of participants per booking to trigger the change. extras (Union[Unset, List[Extra]]): List of extras IDs. internal_code (Union[Unset, str]): Supplier-defined product code, used internally by the supplier. languages (Union[Unset, List[str]]): List of product languages. The format of the language is ISO 639 two-letter code with BCP 47 language variants, separated by underscore e.g. en_au. location_address (Union[Unset, Address]): Address of a company, customer or product location. minimum_notice_minutes (Union[Unset, int]): Minimum book ahead interval for he product in minutes. pickup_id (Union[Unset, int]): If pickups are configured for this product, the field will contain the id of the pickup location list created by the supplier. quantity_required (Union[Unset, bool]): Does this product require a quantity to be booked? True for most products. Can be false if the supplier can only provide one quantity at any single time (I.e. private charters) or a price of a booking is fixed regardless of quantity quantity_required_max (Union[Unset, int]): Represent the max booking quantity for the product. It can be setup for a supplier product. For a successful booking of the product, the total number of participants (regardless of pricing options), per booking item in the booking request, have to be lesser or equal than this value. quantity_required_min (Union[Unset, int]): Represent the min booking quantity for the product. It can be setup for a supplier product. For a successful booking of the product, the total number of participants (regardless of pricing options), per booking item in the booking request, have to be greater or equal than this value. terms (Union[Unset, str]): Specific terms and conditions for this product. xero_account (Union[Unset, str]): Supplier Xero account for this product. """ booking_fields: List[BookingFieldCreate] booking_mode: ProductCreateRequestBookingMode confirm_mode: ProductCreateRequestConfirmMode description: str duration_minutes: int name: str price_options: List[PriceOptionCreate] product_type: ProductCreateRequestProductType short_description: str unit_label: str unit_label_plural: str additional_information: Union[Unset, str] = UNSET advertised_price: Union[Unset, float] = UNSET barcode_output_type: Union[Unset, ProductCreateRequestBarcodeOutputType] = UNSET charter: Union[Unset, bool] = UNSET confirm_mode_min_participants: Union[Unset, int] = UNSET extras: Union[Unset, List[Extra]] = UNSET internal_code: Union[Unset, str] = UNSET languages: Union[Unset, List[str]] = UNSET location_address: Union[Unset, Address] = UNSET minimum_notice_minutes: Union[Unset, int] = UNSET pickup_id: Union[Unset, int] = UNSET quantity_required: Union[Unset, bool] = UNSET quantity_required_max: Union[Unset, int] = UNSET quantity_required_min: Union[Unset, int] = UNSET terms: Union[Unset, str] = UNSET xero_account: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: booking_fields = [] for booking_fields_item_data in self.booking_fields: booking_fields_item = booking_fields_item_data.to_dict() booking_fields.append(booking_fields_item) booking_mode = self.booking_mode.value confirm_mode = self.confirm_mode.value description = self.description duration_minutes = self.duration_minutes name = self.name price_options = [] for price_options_item_data in self.price_options: price_options_item = price_options_item_data.to_dict() price_options.append(price_options_item) product_type = self.product_type.value short_description = self.short_description unit_label = self.unit_label unit_label_plural = self.unit_label_plural additional_information = self.additional_information advertised_price = self.advertised_price barcode_output_type: Union[Unset, str] = UNSET if not isinstance(self.barcode_output_type, Unset): barcode_output_type = self.barcode_output_type.value charter = self.charter confirm_mode_min_participants = self.confirm_mode_min_participants extras: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.extras, Unset): extras = [] for extras_item_data in self.extras: extras_item = extras_item_data.to_dict() extras.append(extras_item) internal_code = self.internal_code languages: Union[Unset, List[str]] = UNSET if not isinstance(self.languages, Unset): languages = self.languages location_address: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.location_address, Unset): location_address = self.location_address.to_dict() minimum_notice_minutes = self.minimum_notice_minutes pickup_id = self.pickup_id quantity_required = self.quantity_required quantity_required_max = self.quantity_required_max quantity_required_min = self.quantity_required_min terms = self.terms xero_account = self.xero_account field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "bookingFields": booking_fields, "bookingMode": booking_mode, "confirmMode": confirm_mode, "description": description, "durationMinutes": duration_minutes, "name": name, "priceOptions": price_options, "productType": product_type, "shortDescription": short_description, "unitLabel": unit_label, "unitLabelPlural": unit_label_plural, } ) if additional_information is not UNSET: field_dict["additionalInformation"] = additional_information if advertised_price is not UNSET: field_dict["advertisedPrice"] = advertised_price if barcode_output_type is not UNSET: field_dict["barcodeOutputType"] = barcode_output_type if charter is not UNSET: field_dict["charter"] = charter if confirm_mode_min_participants is not UNSET: field_dict["confirmModeMinParticipants"] = confirm_mode_min_participants if extras is not UNSET: field_dict["extras"] = extras if internal_code is not UNSET: field_dict["internalCode"] = internal_code if languages is not UNSET: field_dict["languages"] = languages if location_address is not UNSET: field_dict["locationAddress"] = location_address if minimum_notice_minutes is not UNSET: field_dict["minimumNoticeMinutes"] = minimum_notice_minutes if pickup_id is not UNSET: field_dict["pickupId"] = pickup_id if quantity_required is not UNSET: field_dict["quantityRequired"] = quantity_required if quantity_required_max is not UNSET: field_dict["quantityRequiredMax"] = quantity_required_max if quantity_required_min is not UNSET: field_dict["quantityRequiredMin"] = quantity_required_min if terms is not UNSET: field_dict["terms"] = terms if xero_account is not UNSET: field_dict["xeroAccount"] = xero_account return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() booking_fields = [] _booking_fields = d.pop("bookingFields") for booking_fields_item_data in _booking_fields: booking_fields_item = BookingFieldCreate.from_dict(booking_fields_item_data) booking_fields.append(booking_fields_item) booking_mode = ProductCreateRequestBookingMode(d.pop("bookingMode")) confirm_mode = ProductCreateRequestConfirmMode(d.pop("confirmMode")) description = d.pop("description") duration_minutes = d.pop("durationMinutes") name = d.pop("name") price_options = [] _price_options = d.pop("priceOptions") for price_options_item_data in _price_options: price_options_item = PriceOptionCreate.from_dict(price_options_item_data) price_options.append(price_options_item) product_type = ProductCreateRequestProductType(d.pop("productType")) short_description = d.pop("shortDescription") unit_label = d.pop("unitLabel") unit_label_plural = d.pop("unitLabelPlural") additional_information = d.pop("additionalInformation", UNSET) advertised_price = d.pop("advertisedPrice", UNSET) _barcode_output_type = d.pop("barcodeOutputType", UNSET) barcode_output_type: Union[Unset, ProductCreateRequestBarcodeOutputType] if isinstance(_barcode_output_type, Unset): barcode_output_type = UNSET else: barcode_output_type = ProductCreateRequestBarcodeOutputType(_barcode_output_type) charter = d.pop("charter", UNSET) confirm_mode_min_participants = d.pop("confirmModeMinParticipants", UNSET) extras = [] _extras = d.pop("extras", UNSET) for extras_item_data in _extras or []: extras_item = Extra.from_dict(extras_item_data) extras.append(extras_item) internal_code = d.pop("internalCode", UNSET) languages = cast(List[str], d.pop("languages", UNSET)) _location_address = d.pop("locationAddress", UNSET) location_address: Union[Unset, Address] if isinstance(_location_address, Unset): location_address = UNSET else: location_address = Address.from_dict(_location_address) minimum_notice_minutes = d.pop("minimumNoticeMinutes", UNSET) pickup_id = d.pop("pickupId", UNSET) quantity_required = d.pop("quantityRequired", UNSET) quantity_required_max = d.pop("quantityRequiredMax", UNSET) quantity_required_min = d.pop("quantityRequiredMin", UNSET) terms = d.pop("terms", UNSET) xero_account = d.pop("xeroAccount", UNSET) product_create_request = cls( booking_fields=booking_fields, booking_mode=booking_mode, confirm_mode=confirm_mode, description=description, duration_minutes=duration_minutes, name=name, price_options=price_options, product_type=product_type, short_description=short_description, unit_label=unit_label, unit_label_plural=unit_label_plural, additional_information=additional_information, advertised_price=advertised_price, barcode_output_type=barcode_output_type, charter=charter, confirm_mode_min_participants=confirm_mode_min_participants, extras=extras, internal_code=internal_code, languages=languages, location_address=location_address, minimum_notice_minutes=minimum_notice_minutes, pickup_id=pickup_id, quantity_required=quantity_required, quantity_required_max=quantity_required_max, quantity_required_min=quantity_required_min, terms=terms, xero_account=xero_account, ) product_create_request.additional_properties = d return product_create_request @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/product_create_request.py
0.789437
0.344912
product_create_request.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.customer import Customer from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseCustomerList") @attr.s(auto_attribs=True) class ResponseCustomerList: """ Attributes: request_status (RequestStatus): customers (Union[Unset, List[Customer]]): """ request_status: RequestStatus customers: Union[Unset, List[Customer]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() customers: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.customers, Unset): customers = [] for customers_item_data in self.customers: customers_item = customers_item_data.to_dict() customers.append(customers_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if customers is not UNSET: field_dict["customers"] = customers return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) customers = [] _customers = d.pop("customers", UNSET) for customers_item_data in _customers or []: customers_item = Customer.from_dict(customers_item_data) customers.append(customers_item) response_customer_list = cls( request_status=request_status, customers=customers, ) response_customer_list.additional_properties = d return response_customer_list @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_customer_list.py
0.763484
0.18407
response_customer_list.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.extra_request_extra_price_type import ExtraRequestExtraPriceType from ..types import UNSET, Unset T = TypeVar("T", bound="ExtraRequest") @attr.s(auto_attribs=True) class ExtraRequest: """Partial optional service or item that can be purchased when booking a specific product Attributes: description (Union[Unset, str]): Description of the extra extra_price_type (Union[Unset, ExtraRequestExtraPriceType]): Price type for this extra. Defines what quantities are allowed and how their price is calculated id (Union[Unset, int]): ID of the extra name (Union[Unset, str]): Name of the extra price (Union[Unset, float]): Price for a single quantity of this extra """ description: Union[Unset, str] = UNSET extra_price_type: Union[Unset, ExtraRequestExtraPriceType] = UNSET id: Union[Unset, int] = UNSET name: Union[Unset, str] = UNSET price: Union[Unset, float] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: description = self.description extra_price_type: Union[Unset, str] = UNSET if not isinstance(self.extra_price_type, Unset): extra_price_type = self.extra_price_type.value id = self.id name = self.name price = self.price field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if description is not UNSET: field_dict["description"] = description if extra_price_type is not UNSET: field_dict["extraPriceType"] = extra_price_type if id is not UNSET: field_dict["id"] = id if name is not UNSET: field_dict["name"] = name if price is not UNSET: field_dict["price"] = price return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() description = d.pop("description", UNSET) _extra_price_type = d.pop("extraPriceType", UNSET) extra_price_type: Union[Unset, ExtraRequestExtraPriceType] if isinstance(_extra_price_type, Unset): extra_price_type = UNSET else: extra_price_type = ExtraRequestExtraPriceType(_extra_price_type) id = d.pop("id", UNSET) name = d.pop("name", UNSET) price = d.pop("price", UNSET) extra_request = cls( description=description, extra_price_type=extra_price_type, id=id, name=name, price=price, ) extra_request.additional_properties = d return extra_request @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/extra_request.py
0.849582
0.278993
extra_request.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.check_in import CheckIn from ..models.request_status import RequestStatus from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseCheckIn") @attr.s(auto_attribs=True) class ResponseCheckIn: """ Attributes: request_status (RequestStatus): checkin (Union[Unset, CheckIn]): Check-in information. """ request_status: RequestStatus checkin: Union[Unset, CheckIn] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() checkin: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.checkin, Unset): checkin = self.checkin.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if checkin is not UNSET: field_dict["checkin"] = checkin return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _checkin = d.pop("checkin", UNSET) checkin: Union[Unset, CheckIn] if isinstance(_checkin, Unset): checkin = UNSET else: checkin = CheckIn.from_dict(_checkin) response_check_in = cls( request_status=request_status, checkin=checkin, ) response_check_in.additional_properties = d return response_check_in @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_check_in.py
0.787359
0.245746
response_check_in.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.request_status import RequestStatus from ..models.resource import Resource from ..types import UNSET, Unset T = TypeVar("T", bound="ResponseResource") @attr.s(auto_attribs=True) class ResponseResource: """ Attributes: request_status (RequestStatus): resource (Union[Unset, Resource]): Supplier resource - e.g. raft, bus, tour guide, venue which has a limited capacity. The resources can be shared between different supplier's products. If the resource does not have any spare availability, the booking of any of the product sessions, where the resource is used will not be possible. """ request_status: RequestStatus resource: Union[Unset, Resource] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: request_status = self.request_status.to_dict() resource: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.resource, Unset): resource = self.resource.to_dict() field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "requestStatus": request_status, } ) if resource is not UNSET: field_dict["resource"] = resource return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() request_status = RequestStatus.from_dict(d.pop("requestStatus")) _resource = d.pop("resource", UNSET) resource: Union[Unset, Resource] if isinstance(_resource, Unset): resource = UNSET else: resource = Resource.from_dict(_resource) response_resource = cls( request_status=request_status, resource=resource, ) response_resource.additional_properties = d return response_resource @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/response_resource.py
0.81615
0.191914
response_resource.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.product_rate import ProductRate from ..types import UNSET, Unset T = TypeVar("T", bound="Rate") @attr.s(auto_attribs=True) class Rate: """A Rate is used to group products with its corresponding shared rate Attributes: name (Union[Unset, str]): Rate name product_rates (Union[Unset, List[ProductRate]]): Products associated with this Rate (Catalog) rate_id (Union[Unset, int]): Rate ID """ name: Union[Unset, str] = UNSET product_rates: Union[Unset, List[ProductRate]] = UNSET rate_id: Union[Unset, int] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: name = self.name product_rates: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.product_rates, Unset): product_rates = [] for product_rates_item_data in self.product_rates: product_rates_item = product_rates_item_data.to_dict() product_rates.append(product_rates_item) rate_id = self.rate_id field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if name is not UNSET: field_dict["name"] = name if product_rates is not UNSET: field_dict["productRates"] = product_rates if rate_id is not UNSET: field_dict["rateId"] = rate_id return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() name = d.pop("name", UNSET) product_rates = [] _product_rates = d.pop("productRates", UNSET) for product_rates_item_data in _product_rates or []: product_rates_item = ProductRate.from_dict(product_rates_item_data) product_rates.append(product_rates_item) rate_id = d.pop("rateId", UNSET) rate = cls( name=name, product_rates=product_rates, rate_id=rate_id, ) rate.additional_properties = d return rate @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/rate.py
0.805364
0.278557
rate.py
pypi
import datetime from typing import Any, Dict, List, Type, TypeVar, Union import attr from dateutil.parser import isoparse from ..models.price_option import PriceOption from ..types import UNSET, Unset T = TypeVar("T", bound="SessionUpdateBatchRequest") @attr.s(auto_attribs=True) class SessionUpdateBatchRequest: """Batch update session request data. Attributes: rezdy_unique_product_code_linked_to_this_session (str): all_day (Union[Unset, bool]): If true, this session lasts all day and no time should be shown to customers. Technically the session will be from midnight to midnight. end_time (Union[Unset, datetime.datetime]): Batch update end interval end_time_local (Union[Unset, str]): Batch update end interval in supplier's local timezone. price_options (Union[Unset, List[PriceOption]]): List of price options, which will override the product level price. Price options have to be a subset of the product price options, thus you can not create new price options, use product update service to do so. seats (Union[Unset, int]): Update the total number of seats for this session. The total seats does not change after a booking is made. The total number of seats can not be less than 0. seats_available (Union[Unset, int]): Update the current availability for this session. The session total number of seats after updating the seats available can not be less than 0. start_time (Union[Unset, datetime.datetime]): Batch update start interval start_time_local (Union[Unset, str]): Batch update start interval in supplier's local timezone. """ rezdy_unique_product_code_linked_to_this_session: str all_day: Union[Unset, bool] = UNSET end_time: Union[Unset, datetime.datetime] = UNSET end_time_local: Union[Unset, str] = UNSET price_options: Union[Unset, List[PriceOption]] = UNSET seats: Union[Unset, int] = UNSET seats_available: Union[Unset, int] = UNSET start_time: Union[Unset, datetime.datetime] = UNSET start_time_local: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: rezdy_unique_product_code_linked_to_this_session = self.rezdy_unique_product_code_linked_to_this_session all_day = self.all_day end_time: Union[Unset, str] = UNSET if not isinstance(self.end_time, Unset): end_time = self.end_time.isoformat() end_time_local = self.end_time_local price_options: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.price_options, Unset): price_options = [] for price_options_item_data in self.price_options: price_options_item = price_options_item_data.to_dict() price_options.append(price_options_item) seats = self.seats seats_available = self.seats_available start_time: Union[Unset, str] = UNSET if not isinstance(self.start_time, Unset): start_time = self.start_time.isoformat() start_time_local = self.start_time_local field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "Rezdy unique productCode linked to this session": rezdy_unique_product_code_linked_to_this_session, } ) if all_day is not UNSET: field_dict["allDay"] = all_day if end_time is not UNSET: field_dict["endTime"] = end_time if end_time_local is not UNSET: field_dict["endTimeLocal"] = end_time_local if price_options is not UNSET: field_dict["priceOptions"] = price_options if seats is not UNSET: field_dict["seats"] = seats if seats_available is not UNSET: field_dict["seatsAvailable"] = seats_available if start_time is not UNSET: field_dict["startTime"] = start_time if start_time_local is not UNSET: field_dict["startTimeLocal"] = start_time_local return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() rezdy_unique_product_code_linked_to_this_session = d.pop("Rezdy unique productCode linked to this session") all_day = d.pop("allDay", UNSET) _end_time = d.pop("endTime", UNSET) end_time: Union[Unset, datetime.datetime] if isinstance(_end_time, Unset): end_time = UNSET else: end_time = isoparse(_end_time) end_time_local = d.pop("endTimeLocal", UNSET) price_options = [] _price_options = d.pop("priceOptions", UNSET) for price_options_item_data in _price_options or []: price_options_item = PriceOption.from_dict(price_options_item_data) price_options.append(price_options_item) seats = d.pop("seats", UNSET) seats_available = d.pop("seatsAvailable", UNSET) _start_time = d.pop("startTime", UNSET) start_time: Union[Unset, datetime.datetime] if isinstance(_start_time, Unset): start_time = UNSET else: start_time = isoparse(_start_time) start_time_local = d.pop("startTimeLocal", UNSET) session_update_batch_request = cls( rezdy_unique_product_code_linked_to_this_session=rezdy_unique_product_code_linked_to_this_session, all_day=all_day, end_time=end_time, end_time_local=end_time_local, price_options=price_options, seats=seats, seats_available=seats_available, start_time=start_time, start_time_local=start_time_local, ) session_update_batch_request.additional_properties = d return session_update_batch_request @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/session_update_batch_request.py
0.717507
0.335759
session_update_batch_request.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.price_option import PriceOption from ..types import UNSET, Unset T = TypeVar("T", bound="SessionUpdateRequest") @attr.s(auto_attribs=True) class SessionUpdateRequest: """Updates session request data. Attributes: all_day (Union[Unset, bool]): If true, this session lasts all day and no time should be shown to customers. Technically the session will be from midnight to midnight. price_options (Union[Unset, List[PriceOption]]): List of price options, which will override the product level price. Price options have to be a subset of the product price options, thus you can not create new price options, use product update service to do so. seats (Union[Unset, int]): Update the total number of seats for this session. The total seats does not change after a booking is made. The total number of seats can not be less than 0. seats_available (Union[Unset, int]): Update the current availability for this session. The session total number of seats after updating the seats available can not be less than 0. """ all_day: Union[Unset, bool] = UNSET price_options: Union[Unset, List[PriceOption]] = UNSET seats: Union[Unset, int] = UNSET seats_available: Union[Unset, int] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: all_day = self.all_day price_options: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.price_options, Unset): price_options = [] for price_options_item_data in self.price_options: price_options_item = price_options_item_data.to_dict() price_options.append(price_options_item) seats = self.seats seats_available = self.seats_available field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if all_day is not UNSET: field_dict["allDay"] = all_day if price_options is not UNSET: field_dict["priceOptions"] = price_options if seats is not UNSET: field_dict["seats"] = seats if seats_available is not UNSET: field_dict["seatsAvailable"] = seats_available return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() all_day = d.pop("allDay", UNSET) price_options = [] _price_options = d.pop("priceOptions", UNSET) for price_options_item_data in _price_options or []: price_options_item = PriceOption.from_dict(price_options_item_data) price_options.append(price_options_item) seats = d.pop("seats", UNSET) seats_available = d.pop("seatsAvailable", UNSET) session_update_request = cls( all_day=all_day, price_options=price_options, seats=seats, seats_available=seats_available, ) session_update_request.additional_properties = d return session_update_request @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/session_update_request.py
0.817356
0.365598
session_update_request.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.pickup_location import PickupLocation from ..types import UNSET, Unset T = TypeVar("T", bound="PickupList") @attr.s(auto_attribs=True) class PickupList: """PickupList object. Contains a list of pickup locations. Attributes: additional_notes (Union[Unset, str]): Global additional instructions for this pick up list id (Union[Unset, int]): ID of this pickup name (Union[Unset, str]): Name of the pickup location list other_location_instructions (Union[Unset, str]): Instructions for other locations that are not available in the pickupLocations list. E.g. For customer pick up location requests, a sample instruction for this field would be: 'We will contact you to confirm your pickup location' pickup_locations (Union[Unset, List[PickupLocation]]): List of all associated pickup locations for this list """ additional_notes: Union[Unset, str] = UNSET id: Union[Unset, int] = UNSET name: Union[Unset, str] = UNSET other_location_instructions: Union[Unset, str] = UNSET pickup_locations: Union[Unset, List[PickupLocation]] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: additional_notes = self.additional_notes id = self.id name = self.name other_location_instructions = self.other_location_instructions pickup_locations: Union[Unset, List[Dict[str, Any]]] = UNSET if not isinstance(self.pickup_locations, Unset): pickup_locations = [] for pickup_locations_item_data in self.pickup_locations: pickup_locations_item = pickup_locations_item_data.to_dict() pickup_locations.append(pickup_locations_item) field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if additional_notes is not UNSET: field_dict["additionalNotes"] = additional_notes if id is not UNSET: field_dict["id"] = id if name is not UNSET: field_dict["name"] = name if other_location_instructions is not UNSET: field_dict["otherLocationInstructions"] = other_location_instructions if pickup_locations is not UNSET: field_dict["pickupLocations"] = pickup_locations return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() additional_notes = d.pop("additionalNotes", UNSET) id = d.pop("id", UNSET) name = d.pop("name", UNSET) other_location_instructions = d.pop("otherLocationInstructions", UNSET) pickup_locations = [] _pickup_locations = d.pop("pickupLocations", UNSET) for pickup_locations_item_data in _pickup_locations or []: pickup_locations_item = PickupLocation.from_dict(pickup_locations_item_data) pickup_locations.append(pickup_locations_item) pickup_list = cls( additional_notes=additional_notes, id=id, name=name, other_location_instructions=other_location_instructions, pickup_locations=pickup_locations, ) pickup_list.additional_properties = d return pickup_list @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/pickup_list.py
0.820649
0.15588
pickup_list.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..models.address import Address from ..models.video import Video from ..types import UNSET, Unset T = TypeVar("T", bound="Company") @attr.s(auto_attribs=True) class Company: """Company object. Holds general details and information about a specific company. Attributes: address (Union[Unset, Address]): Address of a company, customer or product location. agent_description (Union[Unset, str]): Agent description, if the company is an agent. agent_registration_link (Union[Unset, str]): Agent registration link, if the company is an agent alias (Union[Unset, str]): Company alias. This is the unique identifier for this company booking_system (Union[Unset, str]): Company Booking System category (Union[Unset, str]): Company category company_description (Union[Unset, str]): Company description company_logo_url (Union[Unset, str]): URL of the company logo. company_name (Union[Unset, str]): Company name currency (Union[Unset, str]): Default currency used by this company. destination_country_code (Union[Unset, str]): Company destination. Country code. destination_name (Union[Unset, str]): Company destination. Name of the area. destination_path (Union[Unset, str]): Company destination. Destination path. facebook_page (Union[Unset, str]): Company facebook page fax (Union[Unset, str]): Company fax fb_page_id (Union[Unset, str]): Company facebook page id first_name (Union[Unset, str]): First name of company representative google_plus (Union[Unset, str]): Company google plus profile instagram (Union[Unset, str]): Company instagram profile last_name (Union[Unset, str]): Last name of company representative locale (Union[Unset, str]): Locale of this company. mobile (Union[Unset, str]): Company mobile opening_hours (Union[Unset, str]): Company opening hours phone (Union[Unset, str]): Company phone pinterest (Union[Unset, str]): Company pinterest profile privacy_policy (Union[Unset, str]): Privacy Policy skype (Union[Unset, str]): Company skype terms (Union[Unset, str]): General terms and conditions timezone (Union[Unset, str]): Timezone of this company. trip_advisor (Union[Unset, str]): Company trip advisor profile twitter (Union[Unset, str]): Company trip twitter profile video (Union[Unset, Video]): Video links. website (Union[Unset, str]): Company website yelp (Union[Unset, str]): Company yelp profile youtube_channel (Union[Unset, str]): Company youtube channel """ address: Union[Unset, Address] = UNSET agent_description: Union[Unset, str] = UNSET agent_registration_link: Union[Unset, str] = UNSET alias: Union[Unset, str] = UNSET booking_system: Union[Unset, str] = UNSET category: Union[Unset, str] = UNSET company_description: Union[Unset, str] = UNSET company_logo_url: Union[Unset, str] = UNSET company_name: Union[Unset, str] = UNSET currency: Union[Unset, str] = UNSET destination_country_code: Union[Unset, str] = UNSET destination_name: Union[Unset, str] = UNSET destination_path: Union[Unset, str] = UNSET facebook_page: Union[Unset, str] = UNSET fax: Union[Unset, str] = UNSET fb_page_id: Union[Unset, str] = UNSET first_name: Union[Unset, str] = UNSET google_plus: Union[Unset, str] = UNSET instagram: Union[Unset, str] = UNSET last_name: Union[Unset, str] = UNSET locale: Union[Unset, str] = UNSET mobile: Union[Unset, str] = UNSET opening_hours: Union[Unset, str] = UNSET phone: Union[Unset, str] = UNSET pinterest: Union[Unset, str] = UNSET privacy_policy: Union[Unset, str] = UNSET skype: Union[Unset, str] = UNSET terms: Union[Unset, str] = UNSET timezone: Union[Unset, str] = UNSET trip_advisor: Union[Unset, str] = UNSET twitter: Union[Unset, str] = UNSET video: Union[Unset, Video] = UNSET website: Union[Unset, str] = UNSET yelp: Union[Unset, str] = UNSET youtube_channel: Union[Unset, str] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: address: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.address, Unset): address = self.address.to_dict() agent_description = self.agent_description agent_registration_link = self.agent_registration_link alias = self.alias booking_system = self.booking_system category = self.category company_description = self.company_description company_logo_url = self.company_logo_url company_name = self.company_name currency = self.currency destination_country_code = self.destination_country_code destination_name = self.destination_name destination_path = self.destination_path facebook_page = self.facebook_page fax = self.fax fb_page_id = self.fb_page_id first_name = self.first_name google_plus = self.google_plus instagram = self.instagram last_name = self.last_name locale = self.locale mobile = self.mobile opening_hours = self.opening_hours phone = self.phone pinterest = self.pinterest privacy_policy = self.privacy_policy skype = self.skype terms = self.terms timezone = self.timezone trip_advisor = self.trip_advisor twitter = self.twitter video: Union[Unset, Dict[str, Any]] = UNSET if not isinstance(self.video, Unset): video = self.video.to_dict() website = self.website yelp = self.yelp youtube_channel = self.youtube_channel field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update({}) if address is not UNSET: field_dict["address"] = address if agent_description is not UNSET: field_dict["agentDescription"] = agent_description if agent_registration_link is not UNSET: field_dict["agentRegistrationLink"] = agent_registration_link if alias is not UNSET: field_dict["alias"] = alias if booking_system is not UNSET: field_dict["bookingSystem"] = booking_system if category is not UNSET: field_dict["category"] = category if company_description is not UNSET: field_dict["companyDescription"] = company_description if company_logo_url is not UNSET: field_dict["companyLogoUrl"] = company_logo_url if company_name is not UNSET: field_dict["companyName"] = company_name if currency is not UNSET: field_dict["currency"] = currency if destination_country_code is not UNSET: field_dict["destinationCountryCode"] = destination_country_code if destination_name is not UNSET: field_dict["destinationName"] = destination_name if destination_path is not UNSET: field_dict["destinationPath"] = destination_path if facebook_page is not UNSET: field_dict["facebookPage"] = facebook_page if fax is not UNSET: field_dict["fax"] = fax if fb_page_id is not UNSET: field_dict["fbPageId"] = fb_page_id if first_name is not UNSET: field_dict["firstName"] = first_name if google_plus is not UNSET: field_dict["googlePlus"] = google_plus if instagram is not UNSET: field_dict["instagram"] = instagram if last_name is not UNSET: field_dict["lastName"] = last_name if locale is not UNSET: field_dict["locale"] = locale if mobile is not UNSET: field_dict["mobile"] = mobile if opening_hours is not UNSET: field_dict["openingHours"] = opening_hours if phone is not UNSET: field_dict["phone"] = phone if pinterest is not UNSET: field_dict["pinterest"] = pinterest if privacy_policy is not UNSET: field_dict["privacyPolicy"] = privacy_policy if skype is not UNSET: field_dict["skype"] = skype if terms is not UNSET: field_dict["terms"] = terms if timezone is not UNSET: field_dict["timezone"] = timezone if trip_advisor is not UNSET: field_dict["tripAdvisor"] = trip_advisor if twitter is not UNSET: field_dict["twitter"] = twitter if video is not UNSET: field_dict["video"] = video if website is not UNSET: field_dict["website"] = website if yelp is not UNSET: field_dict["yelp"] = yelp if youtube_channel is not UNSET: field_dict["youtubeChannel"] = youtube_channel return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() _address = d.pop("address", UNSET) address: Union[Unset, Address] if isinstance(_address, Unset): address = UNSET else: address = Address.from_dict(_address) agent_description = d.pop("agentDescription", UNSET) agent_registration_link = d.pop("agentRegistrationLink", UNSET) alias = d.pop("alias", UNSET) booking_system = d.pop("bookingSystem", UNSET) category = d.pop("category", UNSET) company_description = d.pop("companyDescription", UNSET) company_logo_url = d.pop("companyLogoUrl", UNSET) company_name = d.pop("companyName", UNSET) currency = d.pop("currency", UNSET) destination_country_code = d.pop("destinationCountryCode", UNSET) destination_name = d.pop("destinationName", UNSET) destination_path = d.pop("destinationPath", UNSET) facebook_page = d.pop("facebookPage", UNSET) fax = d.pop("fax", UNSET) fb_page_id = d.pop("fbPageId", UNSET) first_name = d.pop("firstName", UNSET) google_plus = d.pop("googlePlus", UNSET) instagram = d.pop("instagram", UNSET) last_name = d.pop("lastName", UNSET) locale = d.pop("locale", UNSET) mobile = d.pop("mobile", UNSET) opening_hours = d.pop("openingHours", UNSET) phone = d.pop("phone", UNSET) pinterest = d.pop("pinterest", UNSET) privacy_policy = d.pop("privacyPolicy", UNSET) skype = d.pop("skype", UNSET) terms = d.pop("terms", UNSET) timezone = d.pop("timezone", UNSET) trip_advisor = d.pop("tripAdvisor", UNSET) twitter = d.pop("twitter", UNSET) _video = d.pop("video", UNSET) video: Union[Unset, Video] if isinstance(_video, Unset): video = UNSET else: video = Video.from_dict(_video) website = d.pop("website", UNSET) yelp = d.pop("yelp", UNSET) youtube_channel = d.pop("youtubeChannel", UNSET) company = cls( address=address, agent_description=agent_description, agent_registration_link=agent_registration_link, alias=alias, booking_system=booking_system, category=category, company_description=company_description, company_logo_url=company_logo_url, company_name=company_name, currency=currency, destination_country_code=destination_country_code, destination_name=destination_name, destination_path=destination_path, facebook_page=facebook_page, fax=fax, fb_page_id=fb_page_id, first_name=first_name, google_plus=google_plus, instagram=instagram, last_name=last_name, locale=locale, mobile=mobile, opening_hours=opening_hours, phone=phone, pinterest=pinterest, privacy_policy=privacy_policy, skype=skype, terms=terms, timezone=timezone, trip_advisor=trip_advisor, twitter=twitter, video=video, website=website, yelp=yelp, youtube_channel=youtube_channel, ) company.additional_properties = d return company @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/company.py
0.795579
0.226099
company.py
pypi
from typing import Any, Dict, List, Type, TypeVar, Union import attr from ..types import UNSET, Unset T = TypeVar("T", bound="Quantity") @attr.s(auto_attribs=True) class Quantity: """Quantity of a single price option attached to a BookingItem.<ul><li>If the product only has 1 price option, only "Quantity.value" is required.</li><li>If the product has multiple price options, "Quantity.optionLabel" is also required.</li><li>It is recommended to use "Quantity.optionLabel" and optionally "Quantity.optionPrice" instead of "Quantity.optionId" because the latter can vary depending on the session booked.</li></ul>I.e. enter optionLabel = "Adult", optionPrice = 100 and value = "2" to book for 2 x Adults ticket for 100 Attributes: value (int): Quantity actually booked option_id (Union[Unset, int]): Price option ID option_label (Union[Unset, str]): Price option label option_price (Union[Unset, float]): Price option price for a single quantity """ value: int option_id: Union[Unset, int] = UNSET option_label: Union[Unset, str] = UNSET option_price: Union[Unset, float] = UNSET additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict) def to_dict(self) -> Dict[str, Any]: value = self.value option_id = self.option_id option_label = self.option_label option_price = self.option_price field_dict: Dict[str, Any] = {} field_dict.update(self.additional_properties) field_dict.update( { "value": value, } ) if option_id is not UNSET: field_dict["optionId"] = option_id if option_label is not UNSET: field_dict["optionLabel"] = option_label if option_price is not UNSET: field_dict["optionPrice"] = option_price return field_dict @classmethod def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T: d = src_dict.copy() value = d.pop("value") option_id = d.pop("optionId", UNSET) option_label = d.pop("optionLabel", UNSET) option_price = d.pop("optionPrice", UNSET) quantity = cls( value=value, option_id=option_id, option_label=option_label, option_price=option_price, ) quantity.additional_properties = d return quantity @property def additional_keys(self) -> List[str]: return list(self.additional_properties.keys()) def __getitem__(self, key: str) -> Any: return self.additional_properties[key] def __setitem__(self, key: str, value: Any) -> None: self.additional_properties[key] = value def __delitem__(self, key: str) -> None: del self.additional_properties[key] def __contains__(self, key: str) -> bool: return key in self.additional_properties
/rezdy_api_for_suppliers_client-1.0.1.tar.gz/rezdy_api_for_suppliers_client-1.0.1/rezdy_api_for_suppliers_client/models/quantity.py
0.88047
0.353735
quantity.py
pypi
import re import sys from copy import deepcopy from contextlib import contextmanager try: from pathlib import Path # noqa, py3 except ImportError: from pathlib2 import Path # noqa, py2 if sys.version_info.major == 2: from UserDict import DictMixin # noqa, py2 else: from collections.abc import MutableMapping as DictMixin from ._vendor import toml DEFAULT_CONTAINER_NAME = ".main" #: default container name: `.main` DEFAULT_CONTAINER_RECIPES = Path.home() #: user home directory class BaseRecipe(DictMixin, object): """Dict-like baseclass of recipe object""" DEFAULT_RECIPE = (Path(__file__).parent / "rezup.toml").resolve() def __init__(self, name): self._name = name or DEFAULT_CONTAINER_NAME self._file = None self._path = None self.__data = None @property def _data(self): if self.__data is None: self._load() return self.__data def _load(self): data = toml.load(str(self.DEFAULT_RECIPE)) path = self.path() if path.is_file(): deep_update(data, toml.load(str(path))) self.__data = data def __repr__(self): return "%s(name=%s, path=%s)" % ( self.__class__.__name__, self.name(), self.path()) def __getitem__(self, key): return self._data[key] def __setitem__(self, key, value): self._data[key] = value def __delitem__(self, key): del self._data[key] def __iter__(self): for key in self._data.keys(): yield key def __len__(self): return len(self._data) def keys(self): return self._data.keys() def path(self): """Returns the path of this recipe, implement in subclass""" raise NotImplementedError def create(self): """Write out recipe content, implement in subclass""" raise NotImplementedError def name(self): """Returns the container name of this recipe corresponding to""" return self._name def data(self): """Returns a copy of parsed recipe file content""" return deepcopy(self._data) def is_file(self): """Returns True if recipe file exists, False otherwise.""" return self.path().is_file() class ContainerRecipe(BaseRecipe): """A dict-like representation of container's recipe The recipe file of default container '.main' will be '~/rezup.toml' And for other container, it will be `~/rezup.{name}.toml` for example: * `~/rezup.dev.toml` -> container `dev` * `~/rezup.test.toml` -> container `test` Args: name (str, optional): Container name """ REGEX = re.compile("rezup.?(.*).toml") RECIPES_DIR = DEFAULT_CONTAINER_RECIPES #: `DEFAULT_CONTAINER_RECIPES` def __init__(self, name=None): super(ContainerRecipe, self).__init__(name) _name = self._name if _name and _name != DEFAULT_CONTAINER_NAME: self._file = "rezup.%s.toml" % _name else: self._file = "rezup.toml" @classmethod @contextmanager def provisional_recipes(cls, path): """Context for changing recipes root temporarily Container recipes should be in user's home directory by defaule, but that could be changed inside this context for the case when you need to operate on machines that have no recipe exists in home directory. ``` with ContainerRecipe.provisional_recipes("/to/other/recipes"): ... ``` Args: path (str or path-like): directory path where recipes located """ default = cls.RECIPES_DIR try: cls.RECIPES_DIR = Path(path) yield finally: cls.RECIPES_DIR = default @classmethod def iter_recipes(cls): """Iter all recipe files found in `ContainerRecipe.RECIPES_DIR` Yields: `ContainerRecipe` """ for item in cls.RECIPES_DIR.iterdir(): if not item.is_file(): continue match = cls.REGEX.search(item.name) if match: name = match.group(1) yield cls(name) def path(self): """Returns the file path of this recipe Returns: pathlib.Path: The file path of this recipe """ if self._path is None: self._path = self.RECIPES_DIR / self._file return self._path def create(self, data=None): """Write out recipe content into a .toml file Args: data (dict, optional): Arbitrary data to write out """ if not self.RECIPES_DIR.is_dir(): self.RECIPES_DIR.mkdir(parents=True) path = self.path() if data: _data = toml.load(str(self.DEFAULT_RECIPE)) deep_update(_data, data) with open(str(path), "w") as f: toml.dump(_data, f) else: # read & write as plaintext, so the comment can be preserved with open(str(self.DEFAULT_RECIPE), "r") as r: with open(str(path), "w") as w: w.write(r.read()) self._load() class RevisionRecipe(BaseRecipe): """A dict-like representation of revision's internal recipe Args: revision (Revision): A rezup revision instance """ def __init__(self, revision): name = revision.container().name() super(RevisionRecipe, self).__init__(name) self._file = "rezup.toml" self._revision = revision def path(self): """Returns the file path of this recipe Returns: pathlib.Path """ if self._path is None: self._path = self._revision.path() / self._file return self._path def create(self): """Write revision recipe from it's container""" path = self.path() container_recipe = self._revision.container().recipe() with open(str(path), "w") as f: toml.dump(container_recipe.data(), f) self._load() def pull(self, revision): """Write revision recipe from other revision""" path = self.path() revision_recipe = revision.recipe() with open(str(path), "w") as f: toml.dump(revision_recipe.data(), f) self._load() def deep_update(dict1, dict2): for key, value in dict2.items(): if isinstance(dict1.get(key), dict) and isinstance(value, dict): deep_update(dict1[key], value) else: dict1[key] = value
/rezup-api-2.6.0.tar.gz/rezup-api-2.6.0/src/rezup/recipe.py
0.578329
0.29549
recipe.py
pypi
import datetime import re import sys from decimal import Decimal from rezup._vendor.toml.decoder import InlineTableDict if sys.version_info >= (3,): unicode = str def dump(o, f, encoder=None): """Writes out dict as toml to a file Args: o: Object to dump into toml f: File descriptor where the toml should be stored encoder: The ``TomlEncoder`` to use for constructing the output string Returns: String containing the toml corresponding to dictionary Raises: TypeError: When anything other than file descriptor is passed """ if not f.write: raise TypeError("You can only dump an object to a file descriptor") d = dumps(o, encoder=encoder) f.write(d) return d def dumps(o, encoder=None): """Stringifies input dict as toml Args: o: Object to dump into toml encoder: The ``TomlEncoder`` to use for constructing the output string Returns: String containing the toml corresponding to dict Examples: ```python >>> import toml >>> output = { ... 'a': "I'm a string", ... 'b': ["I'm", "a", "list"], ... 'c': 2400 ... } >>> toml.dumps(output) 'a = "I\'m a string"\nb = [ "I\'m", "a", "list",]\nc = 2400\n' ``` """ retval = "" if encoder is None: encoder = TomlEncoder(o.__class__) addtoretval, sections = encoder.dump_sections(o, "") retval += addtoretval outer_objs = [id(o)] while sections: section_ids = [id(section) for section in sections] for outer_obj in outer_objs: if outer_obj in section_ids: raise ValueError("Circular reference detected") outer_objs += section_ids newsections = encoder.get_empty_table() for section in sections: addtoretval, addtosections = encoder.dump_sections( sections[section], section) if addtoretval or (not addtoretval and not addtosections): if retval and retval[-2:] != "\n\n": retval += "\n" retval += "[" + section + "]\n" if addtoretval: retval += addtoretval for s in addtosections: newsections[section + "." + s] = addtosections[s] sections = newsections return retval def _dump_str(v): if sys.version_info < (3,) and hasattr(v, 'decode') and isinstance(v, str): v = v.decode('utf-8') v = "%r" % v if v[0] == 'u': v = v[1:] singlequote = v.startswith("'") if singlequote or v.startswith('"'): v = v[1:-1] if singlequote: v = v.replace("\\'", "'") v = v.replace('"', '\\"') v = v.split("\\x") while len(v) > 1: i = -1 if not v[0]: v = v[1:] v[0] = v[0].replace("\\\\", "\\") # No, I don't know why != works and == breaks joinx = v[0][i] != "\\" while v[0][:i] and v[0][i] == "\\": joinx = not joinx i -= 1 if joinx: joiner = "x" else: joiner = "u00" v = [v[0] + joiner + v[1]] + v[2:] return unicode('"' + v[0] + '"') def _dump_float(v): return "{}".format(v).replace("e+0", "e+").replace("e-0", "e-") def _dump_time(v): utcoffset = v.utcoffset() if utcoffset is None: return v.isoformat() # The TOML norm specifies that it's local time thus we drop the offset return v.isoformat()[:-6] class TomlEncoder(object): def __init__(self, _dict=dict, preserve=False): self._dict = _dict self.preserve = preserve self.dump_funcs = { str: _dump_str, unicode: _dump_str, list: self.dump_list, bool: lambda v: unicode(v).lower(), int: lambda v: v, float: _dump_float, Decimal: _dump_float, datetime.datetime: lambda v: v.isoformat().replace('+00:00', 'Z'), datetime.time: _dump_time, datetime.date: lambda v: v.isoformat() } def get_empty_table(self): return self._dict() def dump_list(self, v): retval = "[" for u in v: retval += " " + unicode(self.dump_value(u)) + "," retval += "]" return retval def dump_inline_table(self, section): """Preserve inline table in its compact syntax instead of expanding into subsection. https://github.com/toml-lang/toml#user-content-inline-table """ retval = "" if isinstance(section, dict): val_list = [] for k, v in section.items(): val = self.dump_inline_table(v) val_list.append(k + " = " + val) retval += "{ " + ", ".join(val_list) + " }\n" return retval else: return unicode(self.dump_value(section)) def dump_value(self, v): # Lookup function corresponding to v's type dump_fn = self.dump_funcs.get(type(v)) if dump_fn is None and hasattr(v, '__iter__'): dump_fn = self.dump_funcs[list] # Evaluate function (if it exists) else return v return dump_fn(v) if dump_fn is not None else self.dump_funcs[str](v) def dump_sections(self, o, sup): retstr = "" if sup != "" and sup[-1] != ".": sup += '.' retdict = self._dict() arraystr = "" for section in o: section = unicode(section) qsection = section if not re.match(r'^[A-Za-z0-9_-]+$', section): qsection = _dump_str(section) if not isinstance(o[section], dict): arrayoftables = False if isinstance(o[section], list): for a in o[section]: if isinstance(a, dict): arrayoftables = True if arrayoftables: for a in o[section]: arraytabstr = "\n" arraystr += "[[" + sup + qsection + "]]\n" s, d = self.dump_sections(a, sup + qsection) if s: if s[0] == "[": arraytabstr += s else: arraystr += s while d: newd = self._dict() for dsec in d: s1, d1 = self.dump_sections(d[dsec], sup + qsection + "." + dsec) if s1: arraytabstr += ("[" + sup + qsection + "." + dsec + "]\n") arraytabstr += s1 for s1 in d1: newd[dsec + "." + s1] = d1[s1] d = newd arraystr += arraytabstr else: if o[section] is not None: retstr += (qsection + " = " + unicode(self.dump_value(o[section])) + '\n') elif self.preserve and isinstance(o[section], InlineTableDict): retstr += (qsection + " = " + self.dump_inline_table(o[section])) else: retdict[qsection] = o[section] retstr += arraystr return (retstr, retdict) class TomlPreserveInlineDictEncoder(TomlEncoder): def __init__(self, _dict=dict): super(TomlPreserveInlineDictEncoder, self).__init__(_dict, True) class TomlArraySeparatorEncoder(TomlEncoder): def __init__(self, _dict=dict, preserve=False, separator=","): super(TomlArraySeparatorEncoder, self).__init__(_dict, preserve) if separator.strip() == "": separator = "," + separator elif separator.strip(' \t\n\r,'): raise ValueError("Invalid separator for arrays") self.separator = separator def dump_list(self, v): t = [] retval = "[" for u in v: t.append(self.dump_value(u)) while t != []: s = [] for u in t: if isinstance(u, list): for r in u: s.append(r) else: retval += " " + unicode(u) + self.separator t = s retval += "]" return retval class TomlNumpyEncoder(TomlEncoder): def __init__(self, _dict=dict, preserve=False): import numpy as np super(TomlNumpyEncoder, self).__init__(_dict, preserve) self.dump_funcs[np.float16] = _dump_float self.dump_funcs[np.float32] = _dump_float self.dump_funcs[np.float64] = _dump_float self.dump_funcs[np.int16] = self._dump_int self.dump_funcs[np.int32] = self._dump_int self.dump_funcs[np.int64] = self._dump_int def _dump_int(self, v): return "{}".format(int(v)) class TomlPreserveCommentEncoder(TomlEncoder): def __init__(self, _dict=dict, preserve=False): from rezup._vendor.toml.decoder import CommentValue super(TomlPreserveCommentEncoder, self).__init__(_dict, preserve) self.dump_funcs[CommentValue] = lambda v: v.dump(self.dump_value) class TomlPathlibEncoder(TomlEncoder): def _dump_pathlib_path(self, v): return _dump_str(str(v)) def dump_value(self, v): if (3, 4) <= sys.version_info: import pathlib if isinstance(v, pathlib.PurePath): v = str(v) return super(TomlPathlibEncoder, self).dump_value(v)
/rezup-api-2.6.0.tar.gz/rezup-api-2.6.0/src/rezup/_vendor/toml/encoder.py
0.49292
0.640917
encoder.py
pypi
import datetime import io from os import linesep import re import sys from rezup._vendor.toml.tz import TomlTz if sys.version_info < (3,): _range = xrange # noqa: F821 else: unicode = str _range = range basestring = str unichr = chr def _detect_pathlib_path(p): if (3, 4) <= sys.version_info: import pathlib if isinstance(p, pathlib.PurePath): return True return False def _ispath(p): if isinstance(p, (bytes, basestring)): return True return _detect_pathlib_path(p) def _getpath(p): if (3, 6) <= sys.version_info: import os return os.fspath(p) if _detect_pathlib_path(p): return str(p) return p try: FNFError = FileNotFoundError except NameError: FNFError = IOError TIME_RE = re.compile(r"([0-9]{2}):([0-9]{2}):([0-9]{2})(\.([0-9]{3,6}))?") class TomlDecodeError(ValueError): """Base toml Exception / Error.""" def __init__(self, msg, doc, pos): lineno = doc.count('\n', 0, pos) + 1 colno = pos - doc.rfind('\n', 0, pos) emsg = '{} (line {} column {} char {})'.format(msg, lineno, colno, pos) ValueError.__init__(self, emsg) self.msg = msg self.doc = doc self.pos = pos self.lineno = lineno self.colno = colno # Matches a TOML number, which allows underscores for readability _number_with_underscores = re.compile('([0-9])(_([0-9]))*') class CommentValue(object): def __init__(self, val, comment, beginline, _dict): self.val = val separator = "\n" if beginline else " " self.comment = separator + comment self._dict = _dict def __getitem__(self, key): return self.val[key] def __setitem__(self, key, value): self.val[key] = value def dump(self, dump_value_func): retstr = dump_value_func(self.val) if isinstance(self.val, self._dict): return self.comment + "\n" + unicode(retstr) else: return unicode(retstr) + self.comment def _strictly_valid_num(n): n = n.strip() if not n: return False if n[0] == '_': return False if n[-1] == '_': return False if "_." in n or "._" in n: return False if len(n) == 1: return True if n[0] == '0' and n[1] not in ['.', 'o', 'b', 'x']: return False if n[0] == '+' or n[0] == '-': n = n[1:] if len(n) > 1 and n[0] == '0' and n[1] != '.': return False if '__' in n: return False return True def load(f, _dict=dict, decoder=None): """Parses named file or files as toml and returns a dictionary Args: f: Path to the file to open, array of files to read into single dict or a file descriptor _dict: (optional) Specifies the class of the returned toml dictionary decoder: The decoder to use Returns: Parsed toml file represented as a dictionary Raises: TypeError -- When f is invalid type TomlDecodeError: Error while decoding toml IOError / FileNotFoundError -- When an array with no valid (existing) (Python 2 / Python 3) file paths is passed """ if _ispath(f): with io.open(_getpath(f), encoding='utf-8') as ffile: return loads(ffile.read(), _dict, decoder) elif isinstance(f, list): from os import path as op from warnings import warn if not [path for path in f if op.exists(path)]: error_msg = "Load expects a list to contain filenames only." error_msg += linesep error_msg += ("The list needs to contain the path of at least one " "existing file.") raise FNFError(error_msg) if decoder is None: decoder = TomlDecoder(_dict) d = decoder.get_empty_table() for l in f: # noqa: E741 if op.exists(l): d.update(load(l, _dict, decoder)) else: warn("Non-existent filename in list with at least one valid " "filename") return d else: try: return loads(f.read(), _dict, decoder) except AttributeError: raise TypeError("You can only load a file descriptor, filename or " "list") _groupname_re = re.compile(r'^[A-Za-z0-9_-]+$') def loads(s, _dict=dict, decoder=None): """Parses string as toml Args: s: String to be parsed _dict: (optional) Specifies the class of the returned toml dictionary Returns: Parsed toml file represented as a dictionary Raises: TypeError: When a non-string is passed TomlDecodeError: Error while decoding toml """ implicitgroups = [] if decoder is None: decoder = TomlDecoder(_dict) retval = decoder.get_empty_table() currentlevel = retval if not isinstance(s, basestring): raise TypeError("Expecting something like a string") if not isinstance(s, unicode): s = s.decode('utf8') original = s sl = list(s) openarr = 0 openstring = False openstrchar = "" multilinestr = False arrayoftables = False beginline = True keygroup = False dottedkey = False keyname = 0 key = '' prev_key = '' line_no = 1 for i, item in enumerate(sl): if item == '\r' and sl[i + 1] == '\n': sl[i] = ' ' continue if keyname: key += item if item == '\n': raise TomlDecodeError("Key name found without value." " Reached end of line.", original, i) if openstring: if item == openstrchar: oddbackslash = False k = 1 while i >= k and sl[i - k] == '\\': oddbackslash = not oddbackslash k += 1 if not oddbackslash: keyname = 2 openstring = False openstrchar = "" continue elif keyname == 1: if item.isspace(): keyname = 2 continue elif item == '.': dottedkey = True continue elif item.isalnum() or item == '_' or item == '-': continue elif (dottedkey and sl[i - 1] == '.' and (item == '"' or item == "'")): openstring = True openstrchar = item continue elif keyname == 2: if item.isspace(): if dottedkey: nextitem = sl[i + 1] if not nextitem.isspace() and nextitem != '.': keyname = 1 continue if item == '.': dottedkey = True nextitem = sl[i + 1] if not nextitem.isspace() and nextitem != '.': keyname = 1 continue if item == '=': keyname = 0 prev_key = key[:-1].rstrip() key = '' dottedkey = False else: raise TomlDecodeError("Found invalid character in key name: '" + item + "'. Try quoting the key name.", original, i) if item == "'" and openstrchar != '"': k = 1 try: while sl[i - k] == "'": k += 1 if k == 3: break except IndexError: pass if k == 3: multilinestr = not multilinestr openstring = multilinestr else: openstring = not openstring if openstring: openstrchar = "'" else: openstrchar = "" if item == '"' and openstrchar != "'": oddbackslash = False k = 1 tripquote = False try: while sl[i - k] == '"': k += 1 if k == 3: tripquote = True break if k == 1 or (k == 3 and tripquote): while sl[i - k] == '\\': oddbackslash = not oddbackslash k += 1 except IndexError: pass if not oddbackslash: if tripquote: multilinestr = not multilinestr openstring = multilinestr else: openstring = not openstring if openstring: openstrchar = '"' else: openstrchar = "" if item == '#' and (not openstring and not keygroup and not arrayoftables): j = i comment = "" try: while sl[j] != '\n': comment += s[j] sl[j] = ' ' j += 1 except IndexError: break if not openarr: decoder.preserve_comment(line_no, prev_key, comment, beginline) if item == '[' and (not openstring and not keygroup and not arrayoftables): if beginline: if len(sl) > i + 1 and sl[i + 1] == '[': arrayoftables = True else: keygroup = True else: openarr += 1 if item == ']' and not openstring: if keygroup: keygroup = False elif arrayoftables: if sl[i - 1] == ']': arrayoftables = False else: openarr -= 1 if item == '\n': if openstring or multilinestr: if not multilinestr: raise TomlDecodeError("Unbalanced quotes", original, i) if ((sl[i - 1] == "'" or sl[i - 1] == '"') and ( sl[i - 2] == sl[i - 1])): sl[i] = sl[i - 1] if sl[i - 3] == sl[i - 1]: sl[i - 3] = ' ' elif openarr: sl[i] = ' ' else: beginline = True line_no += 1 elif beginline and sl[i] != ' ' and sl[i] != '\t': beginline = False if not keygroup and not arrayoftables: if sl[i] == '=': raise TomlDecodeError("Found empty keyname. ", original, i) keyname = 1 key += item if keyname: raise TomlDecodeError("Key name found without value." " Reached end of file.", original, len(s)) if openstring: # reached EOF and have an unterminated string raise TomlDecodeError("Unterminated string found." " Reached end of file.", original, len(s)) s = ''.join(sl) s = s.split('\n') multikey = None multilinestr = "" multibackslash = False pos = 0 for idx, line in enumerate(s): if idx > 0: pos += len(s[idx - 1]) + 1 decoder.embed_comments(idx, currentlevel) if not multilinestr or multibackslash or '\n' not in multilinestr: line = line.strip() if line == "" and (not multikey or multibackslash): continue if multikey: if multibackslash: multilinestr += line else: multilinestr += line multibackslash = False closed = False if multilinestr[0] == '[': closed = line[-1] == ']' elif len(line) > 2: closed = (line[-1] == multilinestr[0] and line[-2] == multilinestr[0] and line[-3] == multilinestr[0]) if closed: try: value, vtype = decoder.load_value(multilinestr) except ValueError as err: raise TomlDecodeError(str(err), original, pos) currentlevel[multikey] = value multikey = None multilinestr = "" else: k = len(multilinestr) - 1 while k > -1 and multilinestr[k] == '\\': multibackslash = not multibackslash k -= 1 if multibackslash: multilinestr = multilinestr[:-1] else: multilinestr += "\n" continue if line[0] == '[': arrayoftables = False if len(line) == 1: raise TomlDecodeError("Opening key group bracket on line by " "itself.", original, pos) if line[1] == '[': arrayoftables = True line = line[2:] splitstr = ']]' else: line = line[1:] splitstr = ']' i = 1 quotesplits = decoder._get_split_on_quotes(line) quoted = False for quotesplit in quotesplits: if not quoted and splitstr in quotesplit: break i += quotesplit.count(splitstr) quoted = not quoted line = line.split(splitstr, i) if len(line) < i + 1 or line[-1].strip() != "": raise TomlDecodeError("Key group not on a line by itself.", original, pos) groups = splitstr.join(line[:-1]).split('.') i = 0 while i < len(groups): groups[i] = groups[i].strip() if len(groups[i]) > 0 and (groups[i][0] == '"' or groups[i][0] == "'"): groupstr = groups[i] j = i + 1 while not groupstr[0] == groupstr[-1]: j += 1 if j > len(groups) + 2: raise TomlDecodeError("Invalid group name '" + groupstr + "' Something " + "went wrong.", original, pos) groupstr = '.'.join(groups[i:j]).strip() groups[i] = groupstr[1:-1] groups[i + 1:j] = [] else: if not _groupname_re.match(groups[i]): raise TomlDecodeError("Invalid group name '" + groups[i] + "'. Try quoting it.", original, pos) i += 1 currentlevel = retval for i in _range(len(groups)): group = groups[i] if group == "": raise TomlDecodeError("Can't have a keygroup with an empty " "name", original, pos) try: currentlevel[group] if i == len(groups) - 1: if group in implicitgroups: implicitgroups.remove(group) if arrayoftables: raise TomlDecodeError("An implicitly defined " "table can't be an array", original, pos) elif arrayoftables: currentlevel[group].append(decoder.get_empty_table() ) else: raise TomlDecodeError("What? " + group + " already exists?" + str(currentlevel), original, pos) except TypeError: currentlevel = currentlevel[-1] if group not in currentlevel: currentlevel[group] = decoder.get_empty_table() if i == len(groups) - 1 and arrayoftables: currentlevel[group] = [decoder.get_empty_table()] except KeyError: if i != len(groups) - 1: implicitgroups.append(group) currentlevel[group] = decoder.get_empty_table() if i == len(groups) - 1 and arrayoftables: currentlevel[group] = [decoder.get_empty_table()] currentlevel = currentlevel[group] if arrayoftables: try: currentlevel = currentlevel[-1] except KeyError: pass elif line[0] == "{": if line[-1] != "}": raise TomlDecodeError("Line breaks are not allowed in inline" "objects", original, pos) try: decoder.load_inline_object(line, currentlevel, multikey, multibackslash) except ValueError as err: raise TomlDecodeError(str(err), original, pos) elif "=" in line: try: ret = decoder.load_line(line, currentlevel, multikey, multibackslash) except ValueError as err: raise TomlDecodeError(str(err), original, pos) if ret is not None: multikey, multilinestr, multibackslash = ret return retval def _load_date(val): microsecond = 0 tz = None try: if len(val) > 19: if val[19] == '.': if val[-1].upper() == 'Z': subsecondval = val[20:-1] tzval = "Z" else: subsecondvalandtz = val[20:] if '+' in subsecondvalandtz: splitpoint = subsecondvalandtz.index('+') subsecondval = subsecondvalandtz[:splitpoint] tzval = subsecondvalandtz[splitpoint:] elif '-' in subsecondvalandtz: splitpoint = subsecondvalandtz.index('-') subsecondval = subsecondvalandtz[:splitpoint] tzval = subsecondvalandtz[splitpoint:] else: tzval = None subsecondval = subsecondvalandtz if tzval is not None: tz = TomlTz(tzval) microsecond = int(int(subsecondval) * (10 ** (6 - len(subsecondval)))) else: tz = TomlTz(val[19:]) except ValueError: tz = None if "-" not in val[1:]: return None try: if len(val) == 10: d = datetime.date( int(val[:4]), int(val[5:7]), int(val[8:10])) else: d = datetime.datetime( int(val[:4]), int(val[5:7]), int(val[8:10]), int(val[11:13]), int(val[14:16]), int(val[17:19]), microsecond, tz) except ValueError: return None return d def _load_unicode_escapes(v, hexbytes, prefix): skip = False i = len(v) - 1 while i > -1 and v[i] == '\\': skip = not skip i -= 1 for hx in hexbytes: if skip: skip = False i = len(hx) - 1 while i > -1 and hx[i] == '\\': skip = not skip i -= 1 v += prefix v += hx continue hxb = "" i = 0 hxblen = 4 if prefix == "\\U": hxblen = 8 hxb = ''.join(hx[i:i + hxblen]).lower() if hxb.strip('0123456789abcdef'): raise ValueError("Invalid escape sequence: " + hxb) if hxb[0] == "d" and hxb[1].strip('01234567'): raise ValueError("Invalid escape sequence: " + hxb + ". Only scalar unicode points are allowed.") v += unichr(int(hxb, 16)) v += unicode(hx[len(hxb):]) return v # Unescape TOML string values. # content after the \ _escapes = ['0', 'b', 'f', 'n', 'r', 't', '"'] # What it should be replaced by _escapedchars = ['\0', '\b', '\f', '\n', '\r', '\t', '\"'] # Used for substitution _escape_to_escapedchars = dict(zip(_escapes, _escapedchars)) def _unescape(v): """Unescape characters in a TOML string.""" i = 0 backslash = False while i < len(v): if backslash: backslash = False if v[i] in _escapes: v = v[:i - 1] + _escape_to_escapedchars[v[i]] + v[i + 1:] elif v[i] == '\\': v = v[:i - 1] + v[i:] elif v[i] == 'u' or v[i] == 'U': i += 1 else: raise ValueError("Reserved escape sequence used") continue elif v[i] == '\\': backslash = True i += 1 return v class InlineTableDict(object): """Sentinel subclass of dict for inline tables.""" class TomlDecoder(object): def __init__(self, _dict=dict): self._dict = _dict def get_empty_table(self): return self._dict() def get_empty_inline_table(self): class DynamicInlineTableDict(self._dict, InlineTableDict): """Concrete sentinel subclass for inline tables. It is a subclass of _dict which is passed in dynamically at load time It is also a subclass of InlineTableDict """ return DynamicInlineTableDict() def load_inline_object(self, line, currentlevel, multikey=False, multibackslash=False): candidate_groups = line[1:-1].split(",") groups = [] if len(candidate_groups) == 1 and not candidate_groups[0].strip(): candidate_groups.pop() while len(candidate_groups) > 0: candidate_group = candidate_groups.pop(0) try: _, value = candidate_group.split('=', 1) except ValueError: raise ValueError("Invalid inline table encountered") value = value.strip() if ((value[0] == value[-1] and value[0] in ('"', "'")) or ( value[0] in '-0123456789' or value in ('true', 'false') or (value[0] == "[" and value[-1] == "]") or (value[0] == '{' and value[-1] == '}'))): groups.append(candidate_group) elif len(candidate_groups) > 0: candidate_groups[0] = (candidate_group + "," + candidate_groups[0]) else: raise ValueError("Invalid inline table value encountered") for group in groups: status = self.load_line(group, currentlevel, multikey, multibackslash) if status is not None: break def _get_split_on_quotes(self, line): doublequotesplits = line.split('"') quoted = False quotesplits = [] if len(doublequotesplits) > 1 and "'" in doublequotesplits[0]: singlequotesplits = doublequotesplits[0].split("'") doublequotesplits = doublequotesplits[1:] while len(singlequotesplits) % 2 == 0 and len(doublequotesplits): singlequotesplits[-1] += '"' + doublequotesplits[0] doublequotesplits = doublequotesplits[1:] if "'" in singlequotesplits[-1]: singlequotesplits = (singlequotesplits[:-1] + singlequotesplits[-1].split("'")) quotesplits += singlequotesplits for doublequotesplit in doublequotesplits: if quoted: quotesplits.append(doublequotesplit) else: quotesplits += doublequotesplit.split("'") quoted = not quoted return quotesplits def load_line(self, line, currentlevel, multikey, multibackslash): i = 1 quotesplits = self._get_split_on_quotes(line) quoted = False for quotesplit in quotesplits: if not quoted and '=' in quotesplit: break i += quotesplit.count('=') quoted = not quoted pair = line.split('=', i) strictly_valid = _strictly_valid_num(pair[-1]) if _number_with_underscores.match(pair[-1]): pair[-1] = pair[-1].replace('_', '') while len(pair[-1]) and (pair[-1][0] != ' ' and pair[-1][0] != '\t' and pair[-1][0] != "'" and pair[-1][0] != '"' and pair[-1][0] != '[' and pair[-1][0] != '{' and pair[-1].strip() != 'true' and pair[-1].strip() != 'false'): try: float(pair[-1]) break except ValueError: pass if _load_date(pair[-1]) is not None: break if TIME_RE.match(pair[-1]): break i += 1 prev_val = pair[-1] pair = line.split('=', i) if prev_val == pair[-1]: raise ValueError("Invalid date or number") if strictly_valid: strictly_valid = _strictly_valid_num(pair[-1]) pair = ['='.join(pair[:-1]).strip(), pair[-1].strip()] if '.' in pair[0]: if '"' in pair[0] or "'" in pair[0]: quotesplits = self._get_split_on_quotes(pair[0]) quoted = False levels = [] for quotesplit in quotesplits: if quoted: levels.append(quotesplit) else: levels += [level.strip() for level in quotesplit.split('.')] quoted = not quoted else: levels = pair[0].split('.') while levels[-1] == "": levels = levels[:-1] for level in levels[:-1]: if level == "": continue if level not in currentlevel: currentlevel[level] = self.get_empty_table() currentlevel = currentlevel[level] pair[0] = levels[-1].strip() elif (pair[0][0] == '"' or pair[0][0] == "'") and \ (pair[0][-1] == pair[0][0]): pair[0] = _unescape(pair[0][1:-1]) k, koffset = self._load_line_multiline_str(pair[1]) if k > -1: while k > -1 and pair[1][k + koffset] == '\\': multibackslash = not multibackslash k -= 1 if multibackslash: multilinestr = pair[1][:-1] else: multilinestr = pair[1] + "\n" multikey = pair[0] else: value, vtype = self.load_value(pair[1], strictly_valid) try: currentlevel[pair[0]] raise ValueError("Duplicate keys!") except TypeError: raise ValueError("Duplicate keys!") except KeyError: if multikey: return multikey, multilinestr, multibackslash else: currentlevel[pair[0]] = value def _load_line_multiline_str(self, p): poffset = 0 if len(p) < 3: return -1, poffset if p[0] == '[' and (p.strip()[-1] != ']' and self._load_array_isstrarray(p)): newp = p[1:].strip().split(',') while len(newp) > 1 and newp[-1][0] != '"' and newp[-1][0] != "'": newp = newp[:-2] + [newp[-2] + ',' + newp[-1]] newp = newp[-1] poffset = len(p) - len(newp) p = newp if p[0] != '"' and p[0] != "'": return -1, poffset if p[1] != p[0] or p[2] != p[0]: return -1, poffset if len(p) > 5 and p[-1] == p[0] and p[-2] == p[0] and p[-3] == p[0]: return -1, poffset return len(p) - 1, poffset def load_value(self, v, strictly_valid=True): if not v: raise ValueError("Empty value is invalid") if v == 'true': return (True, "bool") elif v == 'false': return (False, "bool") elif v[0] == '"' or v[0] == "'": quotechar = v[0] testv = v[1:].split(quotechar) triplequote = False triplequotecount = 0 if len(testv) > 1 and testv[0] == '' and testv[1] == '': testv = testv[2:] triplequote = True closed = False for tv in testv: if tv == '': if triplequote: triplequotecount += 1 else: closed = True else: oddbackslash = False try: i = -1 j = tv[i] while j == '\\': oddbackslash = not oddbackslash i -= 1 j = tv[i] except IndexError: pass if not oddbackslash: if closed: raise ValueError("Found tokens after a closed " + "string. Invalid TOML.") else: if not triplequote or triplequotecount > 1: closed = True else: triplequotecount = 0 if quotechar == '"': escapeseqs = v.split('\\')[1:] backslash = False for i in escapeseqs: if i == '': backslash = not backslash else: if i[0] not in _escapes and (i[0] != 'u' and i[0] != 'U' and not backslash): raise ValueError("Reserved escape sequence used") if backslash: backslash = False for prefix in ["\\u", "\\U"]: if prefix in v: hexbytes = v.split(prefix) v = _load_unicode_escapes(hexbytes[0], hexbytes[1:], prefix) v = _unescape(v) if len(v) > 1 and v[1] == quotechar and (len(v) < 3 or v[1] == v[2]): v = v[2:-2] return (v[1:-1], "str") elif v[0] == '[': return (self.load_array(v), "array") elif v[0] == '{': inline_object = self.get_empty_inline_table() self.load_inline_object(v, inline_object) return (inline_object, "inline_object") elif TIME_RE.match(v): h, m, s, _, ms = TIME_RE.match(v).groups() time = datetime.time(int(h), int(m), int(s), int(ms) if ms else 0) return (time, "time") else: parsed_date = _load_date(v) if parsed_date is not None: return (parsed_date, "date") if not strictly_valid: raise ValueError("Weirdness with leading zeroes or " "underscores in your number.") itype = "int" neg = False if v[0] == '-': neg = True v = v[1:] elif v[0] == '+': v = v[1:] v = v.replace('_', '') lowerv = v.lower() if '.' in v or ('x' not in v and ('e' in v or 'E' in v)): if '.' in v and v.split('.', 1)[1] == '': raise ValueError("This float is missing digits after " "the point") if v[0] not in '0123456789': raise ValueError("This float doesn't have a leading " "digit") v = float(v) itype = "float" elif len(lowerv) == 3 and (lowerv == 'inf' or lowerv == 'nan'): v = float(v) itype = "float" if itype == "int": v = int(v, 0) if neg: return (0 - v, itype) return (v, itype) def bounded_string(self, s): if len(s) == 0: return True if s[-1] != s[0]: return False i = -2 backslash = False while len(s) + i > 0: if s[i] == "\\": backslash = not backslash i -= 1 else: break return not backslash def _load_array_isstrarray(self, a): a = a[1:-1].strip() if a != '' and (a[0] == '"' or a[0] == "'"): return True return False def load_array(self, a): atype = None retval = [] a = a.strip() if '[' not in a[1:-1] or "" != a[1:-1].split('[')[0].strip(): strarray = self._load_array_isstrarray(a) if not a[1:-1].strip().startswith('{'): a = a[1:-1].split(',') else: # a is an inline object, we must find the matching parenthesis # to define groups new_a = [] start_group_index = 1 end_group_index = 2 open_bracket_count = 1 if a[start_group_index] == '{' else 0 in_str = False while end_group_index < len(a[1:]): if a[end_group_index] == '"' or a[end_group_index] == "'": if in_str: backslash_index = end_group_index - 1 while (backslash_index > -1 and a[backslash_index] == '\\'): in_str = not in_str backslash_index -= 1 in_str = not in_str if not in_str and a[end_group_index] == '{': open_bracket_count += 1 if in_str or a[end_group_index] != '}': end_group_index += 1 continue elif a[end_group_index] == '}' and open_bracket_count > 1: open_bracket_count -= 1 end_group_index += 1 continue # Increase end_group_index by 1 to get the closing bracket end_group_index += 1 new_a.append(a[start_group_index:end_group_index]) # The next start index is at least after the closing # bracket, a closing bracket can be followed by a comma # since we are in an array. start_group_index = end_group_index + 1 while (start_group_index < len(a[1:]) and a[start_group_index] != '{'): start_group_index += 1 end_group_index = start_group_index + 1 a = new_a b = 0 if strarray: while b < len(a) - 1: ab = a[b].strip() while (not self.bounded_string(ab) or (len(ab) > 2 and ab[0] == ab[1] == ab[2] and ab[-2] != ab[0] and ab[-3] != ab[0])): a[b] = a[b] + ',' + a[b + 1] ab = a[b].strip() if b < len(a) - 2: a = a[:b + 1] + a[b + 2:] else: a = a[:b + 1] b += 1 else: al = list(a[1:-1]) a = [] openarr = 0 j = 0 for i in _range(len(al)): if al[i] == '[': openarr += 1 elif al[i] == ']': openarr -= 1 elif al[i] == ',' and not openarr: a.append(''.join(al[j:i])) j = i + 1 a.append(''.join(al[j:])) for i in _range(len(a)): a[i] = a[i].strip() if a[i] != '': nval, ntype = self.load_value(a[i]) if atype: if ntype != atype: raise ValueError("Not a homogeneous array") else: atype = ntype retval.append(nval) return retval def preserve_comment(self, line_no, key, comment, beginline): pass def embed_comments(self, idx, currentlevel): pass class TomlPreserveCommentDecoder(TomlDecoder): def __init__(self, _dict=dict): self.saved_comments = {} super(TomlPreserveCommentDecoder, self).__init__(_dict) def preserve_comment(self, line_no, key, comment, beginline): self.saved_comments[line_no] = (key, comment, beginline) def embed_comments(self, idx, currentlevel): if idx not in self.saved_comments: return key, comment, beginline = self.saved_comments[idx] currentlevel[key] = CommentValue(currentlevel[key], comment, beginline, self._dict)
/rezup-api-2.6.0.tar.gz/rezup-api-2.6.0/src/rezup/_vendor/toml/decoder.py
0.424889
0.171512
decoder.py
pypi
## Structure A *container* provides Rez environment from it's *revision*. Each container holds at least one virtual environment folder that named by timestamp, which is a *revision*. With that convention, the latest version of environment can be sorted out and used without affecting existing container user. ``` ~\.rezup # container root | + - {container} | : : : : + - {revision} # venv and bin tools lives here : | + - {revision} # folder named as timestamp, e.g. 1619780350.58 | + - {revision} # take latest when calling `rezup use {container}` ``` ## Remote Container To manage Rez venv in production, we may want every machine to have the same Rez venv setup and try keeping them up-to-date. For this purpose, a centralized remote container is needed as a guidance for `rezup use` command to pick the right Rez venv setup from there, and create it locally if needed. !!! question "How that works ?" When calling `rezup use {container}`, if the container has remote set, rezup will find the latest valid revision from remote and see if the same revision exists in local and use it. If not, create a new one by the recipe in that remote revision before use. But what if local container contains revisions that doesn't exists in remote ? The command `rezup use` always respect remote revision even there's more latest revision exists in local. Unless `rezup use --local` is used and remote will be ignored. !!! info "The Difference" Both local and remote container have the same structure, the difference is the payload. === "Local" Where the Rez venv actually exists. Can be created by command ``` rezup add {container} ``` === "Remote" Only contains the venv installation manifest file (recipe) `rezup.toml` that uploaded by command ``` rezup add {container} --remote ``` !!! tip "Local doesn't have to be in local" Local container root can be pointed into network drive, but if that's how it setup, keeps an eye on which Python interpreter is being used or the venv may not be usable. ## Recipe A recipe file defines how a Rez venv should be built. ### File Naming Recipe files usually be saved to and loaded from user home directory, and should be named with container (if not default container) so that command `rezup add <container>` could pick it up when creating corresponding container, for example: * `~/rezup.toml` for container `.main`, the default * `~/rezup.dev.toml` for container `dev` * `~/rezup.test.toml` for container `test` * `~/rezup.{name}.toml` for container `{name}` ### File Content A recipe file may look like the following example, see below for details about each section. ```toml description = "My rez setup" [root] local = "" remote = "" [dotenv] [env] REZ_CONFIG_FILE = "/path/to/rezconfig.py" MY_CUSTOMS_ENV = "my value" [pip] options = [ "--disable-pip-version-check", ] [pip.env] [rez] name = "rez" url = "rez>=2.83" # a PyPi version specifier or repository path lib = [ "pythonfinder", "pyside2", "Qt5.py", ] [[extension]] name = "foo" url = "~/dev/foo" edit = true # install this in edit mode (pip --edit) [[extension]] name = "bar" url = "git+git://github.com/get-bar/bar" isolation = true # additional venv will be created just for this package python = 2.7 # the python version for the venv of this package lib = ["pathlib2"] [shared] # about to be deprecated, name = "prod" # use 'rez.lib' or 'extension.lib' section instead requires = ["six"] ``` #### description ```toml description = "hello, Rez!" ``` Like a comment, for knowing what this recipe is for. #### root Define where the root of this container should be. ```toml [root] local = "" remote = "/studio/remote/.rezup" ``` === "local" If the value is `false` or empty string `""`, env var `REZUP_ROOT_LOCAL` will be used, or the default `~/.rezup`. === "remote" If the value is `false` or empty string `""`, env var `REZUP_ROOT_REMOTE` will be used, or no remote for this container. #### dotenv The `.env` files will be loaded in order when container revision is being used, if provided. ```toml [dotenv] 1 = "/to/my.env" # non platform specific, load firstly, sort by key 2 = "/to/other.env" [dotenv.linux] a = "/to/lnx.env" # platform specific, load secondly, sort by key [dotenv.darwin] a = "/to/mac.env" # platform specific, load secondly, sort by key [dotenv.windows] a = "/to/win.env" # platform specific, load secondly, sort by key ``` The key can be anything, they are only for sorting. #### env These will be loaded when container revision is being used, if provided. ```toml [env] REZ_CONFIG_FILE = "/path/to/rezconfig.py" ``` #### pip Additional pip command options and environment variables to use when `pip install`-ing packages. ```toml [pip] options = [ "-qq", "--retries=2", "--timeout=5", "--no-input", "--disable-pip-version-check", "--proxy=https://user_name:password@proxyname:port", ] [pip.env] HTTP_PROXY = "http://proxyname:port" HTTPS_PROXY = "http://proxyname:port" ``` #### rez Rez venv setup configurations ```toml [rez] # required name = "rez" url = "/path/to/source/rez" # optional edit = true flags = ["-E"] python = 3.7 lib = [ "pythonfinder", "pyside2", "Qt5.py", ] ``` |Name|Required|Description | :---: | :---: | --- | |name| O | The name of the package | |url| O | The url that pass to `pip install`. Could be version specifier like `rez>=2.90`, or from version control like `git+https://github.com/nerdvegas/rez`, or local source path.| |edit| - | Just like `pip install -e`, install package in edit mode or not. | |python| - | The Python to create venv with. Use current if not set. Could be path to Python executable, or version | |flags| - | Python interpreter flags, default `["-E"]` if not set. No flag will be added if the value is an empty list. | |lib| - |Additional Python packages to be `pip` installed with.| #### extension ```toml [[extension]] # note this is a list but it's name is not plural # required name = "foo" url = "foo>=0.5" # optional edit = false flags = ["-E"] isolation = true python = 2.7 # ignored if `isolation` is false lib = ["pathlib2"] ``` Just like the section `rez`, but there's an extra option `isolation` can be used. Shouldn't be needed in most cases though. If `isolation` is true, a venv will be created just for this extension with Rez installed as lib into it. If false as default, the extension will be installed into the Rez venv. #### shared ```toml [shared] # about to be deprecated, name = "prod" # use 'rez.lib' or 'extension.lib' section instead requires = ["six"] ``` === "To be deprecated" See [davidlatwe/rezup#62](https://github.com/davidlatwe/rezup/issues/62). === "Original description" or faster deploy, dependency packages can be installed in here, and will be shared across all revisions in one container (all revisions that use same `name` of shared lib). This works by creating a `.pth` file that contains the absolute path of shared lib in Rez venv and only that venv. So this will not be shared with the extension that has `isolation` set to true. ## Production Install Rezup installs Rez and the tooling by following Rez installation script's "production-install" schema : 1. Install Rez in a fresh Python virtual environment. 2. Command line entry-points (bin tools) are all patched with Python interpreter flag `-E`. 3. All bin tools get stored in a sub-directory of regular Python bin tools install location (`{venv}/bin/rez` or `{venv}/Scripts/rez` on Windows). See Rez Wiki [Why Not Pip For Production?](https://github.com/nerdvegas/rez/wiki/Installation#why-not-pip-for-production) section for a bit more detail. But if Rez gets installed in *edit-mode*, it will fail to compute the location of those production-installed bin tools and not able to provide features like nesting resolved contexts or running some specific rez tests. Rezup covers this situation by using custom entry-point script. If Rez is going to be installed in edit-mode, all bin tools will be generated with the custom script, which will pre-cache the location of bin tools when the session starts if, the environment variable `REZUP_EDIT_IN_PRODUCTION` exists and is not empty (see [davidlatwe/rezup#56](https://github.com/davidlatwe/rezup/pull/56) for implementation detail). You may put that env var in e.g. `rezup.dev.toml` like this: ```toml [env] REZUP_EDIT_IN_PRODUCTION = "1" [rez] name = "rez" url = "/path/to/source/rez" edit = true ```
/rezup-api-2.6.0.tar.gz/rezup-api-2.6.0/docs/container.md
0.768473
0.802246
container.md
pypi
from typing import List, Optional, Dict, Any from rf_api_client.api.base_api import BaseApi from rf_api_client.models.maps_api_models import MapDto, NewMapDto from rf_api_client.models.node_types_api_models import NodeTypeDto from rf_api_client.models.nodes_api_models import NodeTreeDto from rf_api_client.models.search_hit import SearchHitDto, SearchResponse from rf_api_client.models.users_api_models import UserDto class MapsApi(BaseApi): async def get_map_by_id(self, map_id: str) -> MapDto: url = self.context.base_url / f'api/maps/{map_id}' async with self.session.get(url) as resp: body = await resp.json() return MapDto(**body) async def create_map(self, new_map: NewMapDto) -> MapDto: url = self.context.base_url / 'api/maps' async with self.session.post(url, json=new_map.dict(by_alias=True)) as resp: body = await resp.json() return MapDto(**body) async def delete_map_by_id(self, map_id: str): url = self.context.base_url / f'api/maps/{map_id}' await self.session.delete(url) async def get_map_types(self, map_id: str) -> List[NodeTypeDto]: url = self.context.base_url / f'api/maps/{map_id}/node_types' async with self.session.get(url) as resp: body = await resp.json() return [NodeTypeDto(**t) for t in body] async def get_map_users(self, map_id: str) -> List[UserDto]: url = self.context.base_url / f'api/maps/{map_id}/users' async with self.session.get(url) as resp: body = await resp.json() return [UserDto(**u) for u in body] async def get_all_maps(self) -> List[MapDto]: url = self.context.base_url / 'api/maps' async with self.session.get(url) as resp: body = await resp.json() return [MapDto(**m) for m in body] async def get_map_nodes( self, map_id: str, root_id: Optional[str] = None, level_count: Optional[int] = None, ) -> NodeTreeDto: url = self.context.base_url / f'api/maps/{map_id}/nodes' if root_id is not None: url = url / root_id if level_count is not None: url = url / f'level_count/{level_count}' async with self.session.get(url) as resp: body = await resp.json() return NodeTreeDto(**body) async def get_map_nodes_on_path( self, map_id: str, from_id: str, to_id: str, ) -> NodeTreeDto: url = self.context.base_url / f'api/maps/{map_id}/nodes/path/{from_id}/to/{to_id}' async with self.session.get(url) as resp: body = await resp.json() return NodeTreeDto(**body) async def search_nodes( self, query: str, map_ids: List[str], full_docs: bool = True, hits_limit: int = 50, root_id: str = None, with_node_links: bool = False, ) -> List[SearchHitDto]: url = self.context.base_url / 'api/search' params = dict( full_docs=full_docs, hits_limit=hits_limit, map_ids=map_ids, query=query, root_id=root_id, with_node_links=with_node_links, ) async with self.session.post(url, json=params) as resp: body = await resp.json() return SearchResponse(**body).hits async def search_nodes_advanced( self, query: Dict[str, Any], map_ids: List[str], full_docs: bool = True, hits_limit: int = 50, root_id: str = None, with_node_links: bool = False, ) -> List[SearchHitDto]: url = self.context.base_url / 'api/search/advanced' params = dict( full_docs=full_docs, hits_limit=hits_limit, map_ids=map_ids, query=query, root_id=root_id, with_node_links=with_node_links, ) async with self.session.post(url, json=params) as resp: body = await resp.json() return SearchResponse(**body).hits async def search_nodes_aggregation( self, query: Dict[str, Any], aggs: Dict[str, Any], map_ids: List[str], root_id: str = None, with_node_links: bool = False, ) -> Dict[str, Any]: url = self.context.base_url / 'api/search/aggregation' params = dict( query=query, aggs=aggs, map_ids=map_ids, root_id=root_id, with_node_links=with_node_links, ) async with self.session.post(url, json=params) as resp: body = await resp.json() return body
/rf_api_client-0.1.11.tar.gz/rf_api_client-0.1.11/rf_api_client/api/maps_api.py
0.785473
0.16778
maps_api.py
pypi
import json from datetime import datetime from enum import Enum from typing import List, Optional, Tuple, Dict, Union from pydantic import Field from rf_api_client.models.base_model import ApiBaseModel from rf_api_client.models.node_types_api_models import NodePropertyType class NodeAccessType(str, Enum): user_all = 'user_all' user_rwh = 'user_rwh' user_rw = 'user_rw' user_rc = 'user_rc' user_r = 'user_r' user_none = 'user_none' class PositionType(str, Enum): R = 'R' L = 'L' P = 'P' NodePosition = Tuple[PositionType, str] class NodeCommonMetaDto(ApiBaseModel): creation_timestamp: Optional[datetime] author: Optional[str] last_modified_timestamp: Optional[datetime] last_modified_user: Optional[str] can_move: bool editable: bool commentable: bool can_set_access: bool class NodeBodyMetaDto(NodeCommonMetaDto): subscribed: bool = False class NodeMetaDto(NodeCommonMetaDto): leaf: bool class GlobalGroupDto(ApiBaseModel): title: str class StyleGroupDto(ApiBaseModel): color: Optional[str] class UserPropertyDto(ApiBaseModel): key: str value: Optional[str] type_id: NodePropertyType visible: bool class FileInfoDto(ApiBaseModel): name: str # file name for user filepath: str # same as UploadFileResponse.file_id last_modified_timestamp: datetime = Field(alias='lastModifiedTimestamp') # ISO 8601 last_modified_user: str = Field(alias='lastModifiedUser') class FilePropertyValue: """ File property value is List[FileInfoDto] serialized to string, this is helper to work with it """ class __Serializer(ApiBaseModel): __root__: List[FileInfoDto] @staticmethod def from_string(value: str) -> List[FileInfoDto]: return FilePropertyValue.__Serializer(__root__=json.loads(value)).__root__ @staticmethod def to_string(files: List[FileInfoDto]) -> str: return FilePropertyValue.__Serializer(__root__=files).json(by_alias=True) DictLikeGroup = Dict[str, Optional[str]] class NodePropertiesDto(ApiBaseModel): global_: GlobalGroupDto = Field(alias='global') by_type: DictLikeGroup = Field(alias='byType') by_user: List[UserPropertyDto] = Field(alias='byUser') style: StyleGroupDto by_extension: DictLikeGroup = Field(alias='byExtension') class NodeBodyDto(ApiBaseModel): id: str map_id: str type_id: Optional[str] parent: Optional[str] children: List[str] access: NodeAccessType = NodeAccessType.user_none unread_comments_count: int comments_count: int readers: List[str] = [] meta: NodeBodyMetaDto properties: Optional[NodePropertiesDto] class NodeDto(ApiBaseModel): id: str map_id: str parent: Optional[str] original_parent: Optional[str] = Field(alias='originalParent') position: NodePosition access: NodeAccessType hidden: bool readers: List[str] = [] node_level: int = Field(0, alias='nodelevel') meta: NodeMetaDto body: NodeBodyDto class NodeTreeBodyDto(NodeBodyDto): children: List['NodeTreeDto'] class NodeTreeDto(NodeDto): body: NodeTreeBodyDto NodeTreeBodyDto.update_forward_refs() class CreateNodePropertiesDto(NodePropertiesDto): @classmethod def empty(cls) -> 'CreateNodePropertiesDto': return cls( global_=GlobalGroupDto(title=''), by_type={}, by_user=[], by_extension={}, style=StyleGroupDto() ) # todo build ? class CreateNodeDto(ApiBaseModel): map_id: str parent: str position: NodePosition properties: CreateNodePropertiesDto type_id: Optional[str] class CreateNodeLinkDto(ApiBaseModel): map_id: str parent: str position: NodePosition link: str class UserPropertyCreateDto(ApiBaseModel): group: str = 'byUser' key: str value: str type_id: NodePropertyType visible: bool class GlobalPropertyUpdateDto(ApiBaseModel): group: str = 'global' key: str = 'title' value: str class TypePropertyUpdateDto(ApiBaseModel): group: str = 'byType' key: str value: str class UserPropertyUpdateDto(ApiBaseModel): group: str = 'byUser' key: str value: Optional[str] type_id: Optional[NodePropertyType] visible: Optional[bool] class ObjectPropertyCreateOrUpdateDto(ApiBaseModel): group: str = 'style' key: str value: Union[str, int] UpdatePropertiesType = Union[ GlobalPropertyUpdateDto, TypePropertyUpdateDto, UserPropertyUpdateDto, ObjectPropertyCreateOrUpdateDto ] class UserPropertyDeleteDto(ApiBaseModel): group: str = 'byUser' key: str class PropertiesUpdateDto(ApiBaseModel): add: Optional[List[UserPropertyCreateDto]] update: Optional[List[UpdatePropertiesType]] delete: Optional[List[UserPropertyDeleteDto]] rename: Optional[List[str]] class NodeUpdateDto(ApiBaseModel): properties: Optional[PropertiesUpdateDto] type_id: Optional[str] position: Optional[NodePosition] class InsertOptions(ApiBaseModel): comments: bool = True styleProperties: bool = True userProperties: bool = True quiet: bool = False class NodeInsertOptions(ApiBaseModel): # Move (cut) or copy operation move: bool # Apply operation for a single node or branch for_branch: bool # These options are for copy operation, # InsertOptions(comments=False, styleProperties=False, userProperties=False, quiet=False) if not specified insert_options: Optional[InsertOptions] = None # Count of tree levels in response, all if not specified level_count: Optional[int] = None class NodeInsertResult(ApiBaseModel): root: NodeTreeDto
/rf_api_client-0.1.11.tar.gz/rf_api_client-0.1.11/rf_api_client/models/nodes_api_models.py
0.719876
0.287956
nodes_api_models.py
pypi
from typing import Optional, Generator, List, Iterator, Callable, Dict, Tuple, TypeVar, Type from rf_api_client.models.nodes_api_models import NodeTreeDto, NodeTreeBodyDto SearchFunction = Callable[['NodeWrapper'], bool] T = TypeVar('T', bound='NodeWrapper') class NodeBodyWrapper(NodeTreeBodyDto): children: List['NodeWrapper'] class NodeWrapper(NodeTreeDto): """ This class extend simple NodeTreeDto model to add properties and methods to traverse and search in given node tree. It is not recommended to create instances of this class manually due to internal tree lookup mechanism. If you want to create a new instance of NodeWrapper, please use the `from_tree_dto` class method. """ # Crude private field implementation - https://github.com/samuelcolvin/pydantic/issues/655#issuecomment-585374936 class __NodeInternalStorage: def __init__(self): self.node_index: Dict[str, 'NodeWrapper'] = None __slots__ = ('_internal_',) _internal_: __NodeInternalStorage def __init__(self, **kwargs): super().__init__(**kwargs) object.__setattr__(self, '_internal_', self.__NodeInternalStorage()) # To wrap all children of given tree with `NodeWrapper` we define a new node body type body: NodeBodyWrapper @property def is_link(self): return self.id != self.body.id @property def parent_node(self): return self._internal_.node_index[self.parent] def get_all_descendants(self) -> Generator['NodeWrapper', None, None]: """ Will yield nodes from the current branch in depth-first order """ def dive(current: 'NodeWrapper'): yield current for node in current.body.children: yield from dive(node) return dive(self) def find(self, function: SearchFunction) -> Optional['NodeWrapper']: """ Will find first node from current branch matched by search function """ for node in self.get_all_descendants(): if function(node): return node def find_all(self, function: SearchFunction) -> Iterator['NodeWrapper']: """ Will find all nodes in current branch matched by search function """ return filter(function, self.get_all_descendants()) def find_ancestors(self, function: Optional[SearchFunction] = None) -> Generator['NodeWrapper', None, None]: """ Will yield ancestor nodes from closest to farthest matched by search function if provided. If search function is omitted, will yield all ancestor nodes """ current = self._internal_.node_index.get(self.parent) while current is not None: if function is None or function(current): yield current current = self._internal_.node_index.get(current.parent) def find_closest_ancestor(self, function: Optional[SearchFunction] = None) -> Optional['NodeWrapper']: """ Return closest ancestor matched by search function if provided. If search function is omitted, will return closest ancestor (equal to `.parent_node` getter) """ return next(self.find_ancestors(function), None) def get_siblings(self): """ Return all nodes from the same level as current node (including current) """ return self.parent_node.body.children @classmethod def from_tree_dto(cls: Type[T], tree: NodeTreeDto) -> Tuple[T, Dict[str, T]]: """ Will wrap every node of given tree with own class and init each internal index. """ root = cls(**tree.dict(by_alias=True)) node_index = {c.id: c for c in root.get_all_descendants()} for n in root.get_all_descendants(): # noinspection PyProtectedMember n._internal_.node_index = node_index return root, node_index NodeBodyWrapper.update_forward_refs() class TreeWrapper: """ Represent nodes tree. Every node will be wrapped by `NodeWrapper` """ def __init__(self, tree: NodeTreeDto): root, self.node_index = NodeWrapper.from_tree_dto(tree) self._root_id = root.id @property def root(self) -> NodeWrapper: return self.node_index[self._root_id] def find_by_id(self, id_: str) -> Optional[NodeWrapper]: """ Return wrapped node by id """ return self.node_index.get(id_) # todo create node # todo update node # todo delete node # todo new parent # todo move # todo copy
/rf_client-1.0.2-py3-none-any.whl/rf_client/tree_wrapper.py
0.820541
0.495545
tree_wrapper.py
pypi
from collections import OrderedDict from typing import Tuple, Union import numpy as np import torch import torch.nn.functional as F from torch import nn class Bottleneck(nn.Module): expansion = 4 def __init__(self, inplanes, planes, stride=1): super().__init__() # all conv layers have stride 1. an avgpool is performed after the second convolution when stride > 1 self.conv1 = nn.Conv2d(inplanes, planes, 1, bias=False) self.bn1 = nn.BatchNorm2d(planes) self.relu1 = nn.ReLU(inplace=True) self.conv2 = nn.Conv2d(planes, planes, 3, padding=1, bias=False) self.bn2 = nn.BatchNorm2d(planes) self.relu2 = nn.ReLU(inplace=True) self.avgpool = nn.AvgPool2d(stride) if stride > 1 else nn.Identity() self.conv3 = nn.Conv2d(planes, planes * self.expansion, 1, bias=False) self.bn3 = nn.BatchNorm2d(planes * self.expansion) self.relu3 = nn.ReLU(inplace=True) self.downsample = None self.stride = stride if stride > 1 or inplanes != planes * Bottleneck.expansion: # downsampling layer is prepended with an avgpool, and the subsequent convolution has stride 1 self.downsample = nn.Sequential(OrderedDict([ ("-1", nn.AvgPool2d(stride)), ("0", nn.Conv2d(inplanes, planes * self.expansion, 1, stride=1, bias=False)), ("1", nn.BatchNorm2d(planes * self.expansion)) ])) def forward(self, x: torch.Tensor): identity = x out = self.relu1(self.bn1(self.conv1(x))) out = self.relu2(self.bn2(self.conv2(out))) out = self.avgpool(out) out = self.bn3(self.conv3(out)) if self.downsample is not None: identity = self.downsample(x) out += identity out = self.relu3(out) return out class AttentionPool2d(nn.Module): def __init__(self, spacial_dim: int, embed_dim: int, num_heads: int, output_dim: int = None): super().__init__() self.positional_embedding = nn.Parameter(torch.randn(spacial_dim ** 2 + 1, embed_dim) / embed_dim ** 0.5) self.k_proj = nn.Linear(embed_dim, embed_dim) self.q_proj = nn.Linear(embed_dim, embed_dim) self.v_proj = nn.Linear(embed_dim, embed_dim) self.c_proj = nn.Linear(embed_dim, output_dim or embed_dim) self.num_heads = num_heads def forward(self, x): x = x.flatten(start_dim=2).permute(2, 0, 1) # NCHW -> (HW)NC x = torch.cat([x.mean(dim=0, keepdim=True), x], dim=0) # (HW+1)NC x = x + self.positional_embedding[:, None, :].to(x.dtype) # (HW+1)NC x, _ = F.multi_head_attention_forward( query=x[:1], key=x, value=x, embed_dim_to_check=x.shape[-1], num_heads=self.num_heads, q_proj_weight=self.q_proj.weight, k_proj_weight=self.k_proj.weight, v_proj_weight=self.v_proj.weight, in_proj_weight=None, in_proj_bias=torch.cat([self.q_proj.bias, self.k_proj.bias, self.v_proj.bias]), bias_k=None, bias_v=None, add_zero_attn=False, dropout_p=0, out_proj_weight=self.c_proj.weight, out_proj_bias=self.c_proj.bias, use_separate_proj_weight=True, training=self.training, need_weights=False ) return x.squeeze(0) class ModifiedResNet(nn.Module): """ A ResNet class that is similar to torchvision's but contains the following changes: - There are now 3 "stem" convolutions as opposed to 1, with an average pool instead of a max pool. - Performs anti-aliasing strided convolutions, where an avgpool is prepended to convolutions with stride > 1 - The final pooling layer is a QKV attention instead of an average pool """ def __init__(self, layers, output_dim, heads, input_resolution=224, width=64): super().__init__() self.output_dim = output_dim self.input_resolution = input_resolution # the 3-layer stem self.conv1 = nn.Conv2d(3, width // 2, kernel_size=3, stride=2, padding=1, bias=False) self.bn1 = nn.BatchNorm2d(width // 2) self.relu1 = nn.ReLU(inplace=True) self.conv2 = nn.Conv2d(width // 2, width // 2, kernel_size=3, padding=1, bias=False) self.bn2 = nn.BatchNorm2d(width // 2) self.relu2 = nn.ReLU(inplace=True) self.conv3 = nn.Conv2d(width // 2, width, kernel_size=3, padding=1, bias=False) self.bn3 = nn.BatchNorm2d(width) self.relu3 = nn.ReLU(inplace=True) self.avgpool = nn.AvgPool2d(2) # residual layers self._inplanes = width # this is a *mutable* variable used during construction self.layer1 = self._make_layer(width, layers[0]) self.layer2 = self._make_layer(width * 2, layers[1], stride=2) self.layer3 = self._make_layer(width * 4, layers[2], stride=2) self.layer4 = self._make_layer(width * 8, layers[3], stride=2) embed_dim = width * 32 # the ResNet feature dimension self.attnpool = AttentionPool2d(input_resolution // 32, embed_dim, heads, output_dim) def _make_layer(self, planes, blocks, stride=1): layers = [Bottleneck(self._inplanes, planes, stride)] self._inplanes = planes * Bottleneck.expansion for _ in range(1, blocks): layers.append(Bottleneck(self._inplanes, planes)) return nn.Sequential(*layers) def forward(self, x): def stem(x): x = self.relu1(self.bn1(self.conv1(x))) x = self.relu2(self.bn2(self.conv2(x))) x = self.relu3(self.bn3(self.conv3(x))) x = self.avgpool(x) return x x = x.type(self.conv1.weight.dtype) x = stem(x) x = self.layer1(x) x = self.layer2(x) x = self.layer3(x) x = self.layer4(x) x = self.attnpool(x) return x class LayerNorm(nn.LayerNorm): """Subclass torch's LayerNorm to handle fp16.""" def forward(self, x: torch.Tensor): orig_type = x.dtype ret = super().forward(x.type(torch.float32)) return ret.type(orig_type) class QuickGELU(nn.Module): def forward(self, x: torch.Tensor): return x * torch.sigmoid(1.702 * x) class ResidualAttentionBlock(nn.Module): def __init__(self, d_model: int, n_head: int, attn_mask: torch.Tensor = None): super().__init__() self.attn = nn.MultiheadAttention(d_model, n_head) self.ln_1 = LayerNorm(d_model) self.mlp = nn.Sequential(OrderedDict([ ("c_fc", nn.Linear(d_model, d_model * 4)), ("gelu", QuickGELU()), ("c_proj", nn.Linear(d_model * 4, d_model)) ])) self.ln_2 = LayerNorm(d_model) self.attn_mask = attn_mask def attention(self, x: torch.Tensor): self.attn_mask = self.attn_mask.to(dtype=x.dtype, device=x.device) if self.attn_mask is not None else None return self.attn(x, x, x, need_weights=False, attn_mask=self.attn_mask)[0] def forward(self, x: torch.Tensor): x = x + self.attention(self.ln_1(x)) x = x + self.mlp(self.ln_2(x)) return x class Transformer(nn.Module): def __init__(self, width: int, layers: int, heads: int, attn_mask: torch.Tensor = None): super().__init__() self.width = width self.layers = layers self.resblocks = nn.Sequential(*[ResidualAttentionBlock(width, heads, attn_mask) for _ in range(layers)]) def forward(self, x: torch.Tensor): return self.resblocks(x) class VisionTransformer(nn.Module): def __init__(self, input_resolution: int, patch_size: int, width: int, layers: int, heads: int, output_dim: int): super().__init__() self.input_resolution = input_resolution self.output_dim = output_dim self.conv1 = nn.Conv2d(in_channels=3, out_channels=width, kernel_size=patch_size, stride=patch_size, bias=False) scale = width ** -0.5 self.class_embedding = nn.Parameter(scale * torch.randn(width)) self.positional_embedding = nn.Parameter(scale * torch.randn((input_resolution // patch_size) ** 2 + 1, width)) self.ln_pre = LayerNorm(width) self.transformer = Transformer(width, layers, heads) self.ln_post = LayerNorm(width) self.proj = nn.Parameter(scale * torch.randn(width, output_dim)) def forward(self, x: torch.Tensor): x = self.conv1(x) # shape = [*, width, grid, grid] x = x.reshape(x.shape[0], x.shape[1], -1) # shape = [*, width, grid ** 2] x = x.permute(0, 2, 1) # shape = [*, grid ** 2, width] x = torch.cat([self.class_embedding.to(x.dtype) + torch.zeros(x.shape[0], 1, x.shape[-1], dtype=x.dtype, device=x.device), x], dim=1) # shape = [*, grid ** 2 + 1, width] x = x + self.positional_embedding.to(x.dtype) x = self.ln_pre(x) x = x.permute(1, 0, 2) # NLD -> LND x = self.transformer(x) x = x.permute(1, 0, 2) # LND -> NLD x = self.ln_post(x[:, 0, :]) if self.proj is not None: x = x @ self.proj return x class CLIP(nn.Module): def __init__(self, embed_dim: int, # vision image_resolution: int, vision_layers: Union[Tuple[int, int, int, int], int], vision_width: int, vision_patch_size: int, # text context_length: int, vocab_size: int, transformer_width: int, transformer_heads: int, transformer_layers: int ): super().__init__() self.context_length = context_length if isinstance(vision_layers, (tuple, list)): vision_heads = vision_width * 32 // 64 self.visual = ModifiedResNet( layers=vision_layers, output_dim=embed_dim, heads=vision_heads, input_resolution=image_resolution, width=vision_width ) else: vision_heads = vision_width // 64 self.visual = VisionTransformer( input_resolution=image_resolution, patch_size=vision_patch_size, width=vision_width, layers=vision_layers, heads=vision_heads, output_dim=embed_dim ) self.transformer = Transformer( width=transformer_width, layers=transformer_layers, heads=transformer_heads, attn_mask=self.build_attention_mask() ) self.vocab_size = vocab_size self.token_embedding = nn.Embedding(vocab_size, transformer_width) self.positional_embedding = nn.Parameter(torch.empty(self.context_length, transformer_width)) self.ln_final = LayerNorm(transformer_width) self.text_projection = nn.Parameter(torch.empty(transformer_width, embed_dim)) self.logit_scale = nn.Parameter(torch.ones([]) * np.log(1 / 0.07)) self.initialize_parameters() def initialize_parameters(self): nn.init.normal_(self.token_embedding.weight, std=0.02) nn.init.normal_(self.positional_embedding, std=0.01) if isinstance(self.visual, ModifiedResNet): if self.visual.attnpool is not None: std = self.visual.attnpool.c_proj.in_features ** -0.5 nn.init.normal_(self.visual.attnpool.q_proj.weight, std=std) nn.init.normal_(self.visual.attnpool.k_proj.weight, std=std) nn.init.normal_(self.visual.attnpool.v_proj.weight, std=std) nn.init.normal_(self.visual.attnpool.c_proj.weight, std=std) for resnet_block in [self.visual.layer1, self.visual.layer2, self.visual.layer3, self.visual.layer4]: for name, param in resnet_block.named_parameters(): if name.endswith("bn3.weight"): nn.init.zeros_(param) proj_std = (self.transformer.width ** -0.5) * ((2 * self.transformer.layers) ** -0.5) attn_std = self.transformer.width ** -0.5 fc_std = (2 * self.transformer.width) ** -0.5 for block in self.transformer.resblocks: nn.init.normal_(block.attn.in_proj_weight, std=attn_std) nn.init.normal_(block.attn.out_proj.weight, std=proj_std) nn.init.normal_(block.mlp.c_fc.weight, std=fc_std) nn.init.normal_(block.mlp.c_proj.weight, std=proj_std) if self.text_projection is not None: nn.init.normal_(self.text_projection, std=self.transformer.width ** -0.5) def build_attention_mask(self): # lazily create causal attention mask, with full attention between the vision tokens # pytorch uses additive attention mask; fill with -inf mask = torch.empty(self.context_length, self.context_length) mask.fill_(float("-inf")) mask.triu_(1) # zero out the lower diagonal return mask @property def dtype(self): return self.visual.conv1.weight.dtype def encode_image(self, image): return self.visual(image.type(self.dtype)) def encode_text(self, text): x = self.token_embedding(text).type(self.dtype) # [batch_size, n_ctx, d_model] x = x + self.positional_embedding.type(self.dtype) x = x.permute(1, 0, 2) # NLD -> LND x = self.transformer(x) x = x.permute(1, 0, 2) # LND -> NLD x = self.ln_final(x).type(self.dtype) # x.shape = [batch_size, n_ctx, transformer.width] # take features from the eot embedding (eot_token is the highest number in each sequence) x = x[torch.arange(x.shape[0]), text.argmax(dim=-1)] @ self.text_projection return x def forward(self, image, text): image_features = self.encode_image(image) text_features = self.encode_text(text) # normalized features image_features = image_features / image_features.norm(dim=1, keepdim=True) text_features = text_features / text_features.norm(dim=1, keepdim=True) # cosine similarity as logits logit_scale = self.logit_scale.exp() logits_per_image = logit_scale * image_features @ text_features.t() logits_per_text = logits_per_image.t() # shape = [global_batch_size, global_batch_size] return logits_per_image, logits_per_text def convert_weights(model: nn.Module): """Convert applicable model parameters to fp16""" def _convert_weights_to_fp16(l): if isinstance(l, (nn.Conv1d, nn.Conv2d, nn.Linear)): l.weight.data = l.weight.data.half() if l.bias is not None: l.bias.data = l.bias.data.half() if isinstance(l, nn.MultiheadAttention): for attr in [*[f"{s}_proj_weight" for s in ["in", "q", "k", "v"]], "in_proj_bias", "bias_k", "bias_v"]: tensor = getattr(l, attr) if tensor is not None: tensor.data = tensor.data.half() for name in ["text_projection", "proj"]: if hasattr(l, name): attr = getattr(l, name) if attr is not None: attr.data = attr.data.half() model.apply(_convert_weights_to_fp16) def build_model(state_dict: dict): vit = "visual.proj" in state_dict if vit: vision_width = state_dict["visual.conv1.weight"].shape[0] vision_layers = len([k for k in state_dict.keys() if k.startswith("visual.") and k.endswith(".attn.in_proj_weight")]) vision_patch_size = state_dict["visual.conv1.weight"].shape[-1] grid_size = round((state_dict["visual.positional_embedding"].shape[0] - 1) ** 0.5) image_resolution = vision_patch_size * grid_size else: counts: list = [len(set(k.split(".")[2] for k in state_dict if k.startswith(f"visual.layer{b}"))) for b in [1, 2, 3, 4]] vision_layers = tuple(counts) vision_width = state_dict["visual.layer1.0.conv1.weight"].shape[0] output_width = round((state_dict["visual.attnpool.positional_embedding"].shape[0] - 1) ** 0.5) vision_patch_size = None assert output_width ** 2 + 1 == state_dict["visual.attnpool.positional_embedding"].shape[0] image_resolution = output_width * 32 embed_dim = state_dict["text_projection"].shape[1] context_length = state_dict["positional_embedding"].shape[0] vocab_size = state_dict["token_embedding.weight"].shape[0] transformer_width = state_dict["ln_final.weight"].shape[0] transformer_heads = transformer_width // 64 transformer_layers = len(set(k.split(".")[2] for k in state_dict if k.startswith("transformer.resblocks"))) model = CLIP( embed_dim, image_resolution, vision_layers, vision_width, vision_patch_size, context_length, vocab_size, transformer_width, transformer_heads, transformer_layers ) for key in ["input_resolution", "context_length", "vocab_size"]: if key in state_dict: del state_dict[key] convert_weights(model) model.load_state_dict(state_dict) return model.eval()
/rf_clip-1.0-py3-none-any.whl/clip/model.py
0.975472
0.571169
model.py
pypi
import hashlib import os import urllib import warnings from typing import Any, Union, List from pkg_resources import packaging import torch from PIL import Image from torchvision.transforms import Compose, Resize, CenterCrop, ToTensor, Normalize from tqdm import tqdm from .model import build_model from .simple_tokenizer import SimpleTokenizer as _Tokenizer try: from torchvision.transforms import InterpolationMode BICUBIC = InterpolationMode.BICUBIC except ImportError: BICUBIC = Image.BICUBIC if packaging.version.parse(torch.__version__) < packaging.version.parse("1.7.1"): warnings.warn("PyTorch version 1.7.1 or higher is recommended") __all__ = ["available_models", "load", "tokenize"] _tokenizer = _Tokenizer() _MODELS = { "RN50": "https://openaipublic.azureedge.net/clip/models/afeb0e10f9e5a86da6080e35cf09123aca3b358a0c3e3b6c78a7b63bc04b6762/RN50.pt", "RN101": "https://openaipublic.azureedge.net/clip/models/8fa8567bab74a42d41c5915025a8e4538c3bdbe8804a470a72f30b0d94fab599/RN101.pt", "RN50x4": "https://openaipublic.azureedge.net/clip/models/7e526bd135e493cef0776de27d5f42653e6b4c8bf9e0f653bb11773263205fdd/RN50x4.pt", "RN50x16": "https://openaipublic.azureedge.net/clip/models/52378b407f34354e150460fe41077663dd5b39c54cd0bfd2b27167a4a06ec9aa/RN50x16.pt", "RN50x64": "https://openaipublic.azureedge.net/clip/models/be1cfb55d75a9666199fb2206c106743da0f6468c9d327f3e0d0a543a9919d9c/RN50x64.pt", "ViT-B/32": "https://openaipublic.azureedge.net/clip/models/40d365715913c9da98579312b702a82c18be219cc2a73407c4526f58eba950af/ViT-B-32.pt", "ViT-B/16": "https://openaipublic.azureedge.net/clip/models/5806e77cd80f8b59890b7e101eabd078d9fb84e6937f9e85e4ecb61988df416f/ViT-B-16.pt", "ViT-L/14": "https://openaipublic.azureedge.net/clip/models/b8cca3fd41ae0c99ba7e8951adf17d267cdb84cd88be6f7c2e0eca1737a03836/ViT-L-14.pt", "ViT-L/14@336px": "https://openaipublic.azureedge.net/clip/models/3035c92b350959924f9f00213499208652fc7ea050643e8b385c2dac08641f02/ViT-L-14-336px.pt", } def _download(url: str, root: str): os.makedirs(root, exist_ok=True) filename = os.path.basename(url) expected_sha256 = url.split("/")[-2] download_target = os.path.join(root, filename) if os.path.exists(download_target) and not os.path.isfile(download_target): raise RuntimeError(f"{download_target} exists and is not a regular file") if os.path.isfile(download_target): if hashlib.sha256(open(download_target, "rb").read()).hexdigest() == expected_sha256: return download_target else: warnings.warn(f"{download_target} exists, but the SHA256 checksum does not match; re-downloading the file") with urllib.request.urlopen(url) as source, open(download_target, "wb") as output: with tqdm(total=int(source.info().get("Content-Length")), ncols=80, unit='iB', unit_scale=True, unit_divisor=1024) as loop: while True: buffer = source.read(8192) if not buffer: break output.write(buffer) loop.update(len(buffer)) if hashlib.sha256(open(download_target, "rb").read()).hexdigest() != expected_sha256: raise RuntimeError("Model has been downloaded but the SHA256 checksum does not not match") return download_target def _convert_image_to_rgb(image): return image.convert("RGB") def _transform(n_px): return Compose([ Resize(n_px, interpolation=BICUBIC), CenterCrop(n_px), _convert_image_to_rgb, ToTensor(), Normalize((0.48145466, 0.4578275, 0.40821073), (0.26862954, 0.26130258, 0.27577711)), ]) def available_models() -> List[str]: """Returns the names of available CLIP models""" return list(_MODELS.keys()) def load(name: str, device: Union[str, torch.device] = "cuda" if torch.cuda.is_available() else "cpu", jit: bool = False, download_root: str = None): """Load a CLIP model Parameters ---------- name : str A model name listed by `clip.available_models()`, or the path to a model checkpoint containing the state_dict device : Union[str, torch.device] The device to put the loaded model jit : bool Whether to load the optimized JIT model or more hackable non-JIT model (default). download_root: str path to download the model files; by default, it uses "~/.cache/clip" Returns ------- model : torch.nn.Module The CLIP model preprocess : Callable[[PIL.Image], torch.Tensor] A torchvision transform that converts a PIL image into a tensor that the returned model can take as its input """ if name in _MODELS: model_path = _download(_MODELS[name], download_root or os.path.expanduser("~/.cache/clip")) elif os.path.isfile(name): model_path = name else: raise RuntimeError(f"Model {name} not found; available models = {available_models()}") with open(model_path, 'rb') as opened_file: try: # loading JIT archive model = torch.jit.load(opened_file, map_location=device if jit else "cpu").eval() state_dict = None except RuntimeError: # loading saved state dict if jit: warnings.warn(f"File {model_path} is not a JIT archive. Loading as a state dict instead") jit = False state_dict = torch.load(opened_file, map_location="cpu") if not jit: model = build_model(state_dict or model.state_dict()).to(device) if str(device) == "cpu": model.float() return model, _transform(model.visual.input_resolution) # patch the device names device_holder = torch.jit.trace(lambda: torch.ones([]).to(torch.device(device)), example_inputs=[]) device_node = [n for n in device_holder.graph.findAllNodes("prim::Constant") if "Device" in repr(n)][-1] def _node_get(node: torch._C.Node, key: str): """Gets attributes of a node which is polymorphic over return type. From https://github.com/pytorch/pytorch/pull/82628 """ sel = node.kindOf(key) return getattr(node, sel)(key) def patch_device(module): try: graphs = [module.graph] if hasattr(module, "graph") else [] except RuntimeError: graphs = [] if hasattr(module, "forward1"): graphs.append(module.forward1.graph) for graph in graphs: for node in graph.findAllNodes("prim::Constant"): if "value" in node.attributeNames() and str(_node_get(node, "value")).startswith("cuda"): node.copyAttributes(device_node) model.apply(patch_device) patch_device(model.encode_image) patch_device(model.encode_text) # patch dtype to float32 on CPU if str(device) == "cpu": float_holder = torch.jit.trace(lambda: torch.ones([]).float(), example_inputs=[]) float_input = list(float_holder.graph.findNode("aten::to").inputs())[1] float_node = float_input.node() def patch_float(module): try: graphs = [module.graph] if hasattr(module, "graph") else [] except RuntimeError: graphs = [] if hasattr(module, "forward1"): graphs.append(module.forward1.graph) for graph in graphs: for node in graph.findAllNodes("aten::to"): inputs = list(node.inputs()) for i in [1, 2]: # dtype can be the second or third argument to aten::to() if _node_get(inputs[i].node(), "value") == 5: inputs[i].node().copyAttributes(float_node) model.apply(patch_float) patch_float(model.encode_image) patch_float(model.encode_text) model.float() return model, _transform(model.input_resolution.item()) def tokenize(texts: Union[str, List[str]], context_length: int = 77, truncate: bool = False) -> Union[torch.IntTensor, torch.LongTensor]: """ Returns the tokenized representation of given input string(s) Parameters ---------- texts : Union[str, List[str]] An input string or a list of input strings to tokenize context_length : int The context length to use; all CLIP models use 77 as the context length truncate: bool Whether to truncate the text in case its encoding is longer than the context length Returns ------- A two-dimensional tensor containing the resulting tokens, shape = [number of input strings, context_length]. We return LongTensor when torch version is <1.8.0, since older index_select requires indices to be long. """ if isinstance(texts, str): texts = [texts] sot_token = _tokenizer.encoder["<|startoftext|>"] eot_token = _tokenizer.encoder["<|endoftext|>"] all_tokens = [[sot_token] + _tokenizer.encode(text) + [eot_token] for text in texts] if packaging.version.parse(torch.__version__) < packaging.version.parse("1.8.0"): result = torch.zeros(len(all_tokens), context_length, dtype=torch.long) else: result = torch.zeros(len(all_tokens), context_length, dtype=torch.int) for i, tokens in enumerate(all_tokens): if len(tokens) > context_length: if truncate: tokens = tokens[:context_length] tokens[-1] = eot_token else: raise RuntimeError(f"Input {texts[i]} is too long for context length {context_length}") result[i, :len(tokens)] = torch.tensor(tokens) return result
/rf_clip-1.0-py3-none-any.whl/clip/clip.py
0.778481
0.324503
clip.py
pypi
import gzip import html import os from functools import lru_cache import ftfy import regex as re @lru_cache() def default_bpe(): return os.path.join(os.path.dirname(os.path.abspath(__file__)), "bpe_simple_vocab_16e6.txt.gz") @lru_cache() def bytes_to_unicode(): """ Returns list of utf-8 byte and a corresponding list of unicode strings. The reversible bpe codes work on unicode strings. This means you need a large # of unicode characters in your vocab if you want to avoid UNKs. When you're at something like a 10B token dataset you end up needing around 5K for decent coverage. This is a signficant percentage of your normal, say, 32K bpe vocab. To avoid that, we want lookup tables between utf-8 bytes and unicode strings. And avoids mapping to whitespace/control characters the bpe code barfs on. """ bs = list(range(ord("!"), ord("~")+1))+list(range(ord("¡"), ord("¬")+1))+list(range(ord("®"), ord("ÿ")+1)) cs = bs[:] n = 0 for b in range(2**8): if b not in bs: bs.append(b) cs.append(2**8+n) n += 1 cs = [chr(n) for n in cs] return dict(zip(bs, cs)) def get_pairs(word): """Return set of symbol pairs in a word. Word is represented as tuple of symbols (symbols being variable-length strings). """ pairs = set() prev_char = word[0] for char in word[1:]: pairs.add((prev_char, char)) prev_char = char return pairs def basic_clean(text): text = ftfy.fix_text(text) text = html.unescape(html.unescape(text)) return text.strip() def whitespace_clean(text): text = re.sub(r'\s+', ' ', text) text = text.strip() return text class SimpleTokenizer(object): def __init__(self, bpe_path: str = default_bpe()): self.byte_encoder = bytes_to_unicode() self.byte_decoder = {v: k for k, v in self.byte_encoder.items()} merges = gzip.open(bpe_path).read().decode("utf-8").split('\n') merges = merges[1:49152-256-2+1] merges = [tuple(merge.split()) for merge in merges] vocab = list(bytes_to_unicode().values()) vocab = vocab + [v+'</w>' for v in vocab] for merge in merges: vocab.append(''.join(merge)) vocab.extend(['<|startoftext|>', '<|endoftext|>']) self.encoder = dict(zip(vocab, range(len(vocab)))) self.decoder = {v: k for k, v in self.encoder.items()} self.bpe_ranks = dict(zip(merges, range(len(merges)))) self.cache = {'<|startoftext|>': '<|startoftext|>', '<|endoftext|>': '<|endoftext|>'} self.pat = re.compile(r"""<\|startoftext\|>|<\|endoftext\|>|'s|'t|'re|'ve|'m|'ll|'d|[\p{L}]+|[\p{N}]|[^\s\p{L}\p{N}]+""", re.IGNORECASE) def bpe(self, token): if token in self.cache: return self.cache[token] word = tuple(token[:-1]) + ( token[-1] + '</w>',) pairs = get_pairs(word) if not pairs: return token+'</w>' while True: bigram = min(pairs, key = lambda pair: self.bpe_ranks.get(pair, float('inf'))) if bigram not in self.bpe_ranks: break first, second = bigram new_word = [] i = 0 while i < len(word): try: j = word.index(first, i) new_word.extend(word[i:j]) i = j except: new_word.extend(word[i:]) break if word[i] == first and i < len(word)-1 and word[i+1] == second: new_word.append(first+second) i += 2 else: new_word.append(word[i]) i += 1 new_word = tuple(new_word) word = new_word if len(word) == 1: break else: pairs = get_pairs(word) word = ' '.join(word) self.cache[token] = word return word def encode(self, text): bpe_tokens = [] text = whitespace_clean(basic_clean(text)).lower() for token in re.findall(self.pat, text): token = ''.join(self.byte_encoder[b] for b in token.encode('utf-8')) bpe_tokens.extend(self.encoder[bpe_token] for bpe_token in self.bpe(token).split(' ')) return bpe_tokens def decode(self, tokens): text = ''.join([self.decoder[token] for token in tokens]) text = bytearray([self.byte_decoder[c] for c in text]).decode('utf-8', errors="replace").replace('</w>', ' ') return text
/rf_clip-1.0-py3-none-any.whl/clip/simple_tokenizer.py
0.442877
0.238414
simple_tokenizer.py
pypi
import numpy as np import pandas as pd from rf_explainer import RandomForestExplainer from single_cf_costs_functions import * from multi_cf_costs_functions import * def evaluate_counterfactual(rfe: RandomForestExplainer, X: pd.Series, X_prime: pd.Series, k=5): metrics = {} normalized_X = (X - rfe.X_train_stats['mean']) / rfe.X_train_stats['std'] normalized_X_prime = (X_prime - rfe.X_train_stats['mean']) / rfe.X_train_stats['std'] metrics['unmatched_components_rate'] = unmatched_components_distance(normalized_X, normalized_X_prime) metrics['euclidean_distance'] = euclidean_distance(normalized_X, normalized_X_prime) metrics['euclidean_categorical_distance'] = euclidean_categorical_distance(normalized_X, normalized_X_prime, rfe.categorical_features, rfe.non_categorical_features) metrics['cosine_distance'] = cosine_distance(normalized_X, normalized_X_prime) metrics['jaccard_distance'] = jaccard_distance(normalized_X, normalized_X_prime) metrics['pearson_correlation_distance'] = pearson_correlation_distance(normalized_X, normalized_X_prime) metrics['sparsity'] = metrics['unmatched_components_rate'] metrics['proximity'] = heterogeneous_euclidean_overlap_metric(X.values, X_prime.values, rfe.X_train_stats['range'], rfe.categorical_features, rfe.non_categorical_features) label = rfe.rf_model.predict(pd.DataFrame(X_prime.values.reshape(1, -1), columns=X_prime.index))[0] nbrs_same_label = NearestNeighbors(n_neighbors=k, algorithm='ball_tree', metric=heterogeneous_euclidean_overlap_metric, metric_params={'feature_range': rfe.X_train_stats['range'], 'cat_features': rfe.categorical_features, 'non_cat_features': rfe.non_categorical_features}) X_train_same_labels = rfe.X_train[rfe.y_train == label] nbrs_same_label.fit(X_train_same_labels.values) metrics['implausibility'] = implausibility_single(X_prime.values, nbrs_same_label) return metrics def evaluate_counterfactual_set(rfe: RandomForestExplainer, X: pd.Series, X_primes: pd.DataFrame, k=5): metrics = {} metrics['mean_hoem'] = np.mean([heterogeneous_euclidean_overlap_metric(X.values, X_prime.values, rfe.X_train_stats['range'], rfe.categorical_features, rfe.non_categorical_features) for _, X_prime in X_primes.iterrows()]) metrics['diversity'] = diversity(X_primes, rfe.X_train_stats['range'], rfe.categorical_features, rfe.non_categorical_features) nbrs = NearestNeighbors(n_neighbors=k, algorithm='ball_tree', metric=heterogeneous_euclidean_overlap_metric, metric_params={'feature_range': rfe.X_train_stats['range'], 'cat_features': rfe.categorical_features, 'non_cat_features': rfe.non_categorical_features}) nbrs.fit(rfe.X_train) metrics['implausibility'] = implausibility(X_primes, nbrs) return metrics
/rf_counterfactuals-0.1.6.tar.gz/rf_counterfactuals-0.1.6/rf_counterfactuals/evaluation.py
0.753194
0.516778
evaluation.py
pypi
import math import numpy as np import pandas as pd from scipy import spatial, stats from sklearn.neighbors import NearestNeighbors def unmatched_components(X: np.array, X_prime: np.array, eps:float): result = 0 for feature_id in range(len(X)): if abs(X[feature_id] - X_prime[feature_id]) > eps: result += 1 return result def unmatched_components_distance(X: np.array, X_prime: np.array, eps=1e-4): return unmatched_components(X, X_prime, eps) / len(X) if len(X) > 0 else 0.0 def heterogeneous_euclidean_overlap_metric(X: np.array, X_prime: np.array, feature_range: np.array, cat_features: list, non_cat_features: list): """ https://axon.cs.byu.edu/~randy/jair/wilson2.html """ result = 0.0 result += unmatched_components(X[cat_features], X_prime[cat_features], eps=1e-4) result += np.sum(np.power(np.clip(np.divide( np.absolute(X[non_cat_features] - X_prime[non_cat_features]), feature_range[non_cat_features], out=np.ones_like(X[non_cat_features], dtype=np.float), where=feature_range[non_cat_features] != 0.0), 0, 1), 2)) return np.sqrt(result) def euclidean_distance(X: np.array, X_prime: np.array): return np.linalg.norm(X - X_prime) def euclidean_categorical_distance(X: np.array, X_prime: np.array, cat_features: list, non_cat_features: list): result = euclidean_distance(X[non_cat_features], X_prime[non_cat_features])\ + unmatched_components(X[cat_features], X_prime[cat_features], eps=1e-4) return result def cosine_distance(X: np.array, X_prime: np.array): return spatial.distance.cosine(X, X_prime) def jaccard_distance(X: np.array, X_prime: np.array): """ Calculate a jaccard distance as a fraction of sets intersection and union lengths""" s_u = set(X) s_v = set(X_prime) s_u_and_v = s_u.intersection(s_v) s_u_or_v = s_u.union(s_v) Js = len(s_u_and_v) / float(len(s_u_or_v)) Jd = 1 - Js return Jd def pearson_correlation_distance(X: np.array, X_prime: np.array): rho = stats.pearsonr(X, X_prime)[0] # Returns only Pearson's correlation coefficient rho_d = 1 - rho return rho_d if not math.isnan(rho) else 1.0 def implausibility_single(X_prime: np.array, nbrs: NearestNeighbors, k=3): distances, indices = np.squeeze(nbrs.kneighbors(X_prime.reshape(1, -1), n_neighbors=k, return_distance=True)) score = np.mean(distances) return score def k_nearest_neighborhood(X_prime: np.array, label, nbrs: NearestNeighbors, y_train: np.array): indices = np.squeeze(nbrs.kneighbors(X_prime.reshape(1, -1), return_distance=False)) score = np.mean(y_train[indices] == label) return score def n_sigma_random_neighborhood(X_prime: np.array, label, sigma, n, trained_model, feature_means, feature_std): predictions = [] for i in range(n): X_new = X_prime[0, :] + (np.random.normal(0, sigma, size=X_prime.shape[1]) * feature_std) prediction = trained_model.predict(pd.DataFrame(X_new.values.reshape(1, -1), columns=X_new.index)) predictions.append(prediction) p = np.squeeze(np.array(predictions)) score = np.sum(p == label) / n return score
/rf_counterfactuals-0.1.6.tar.gz/rf_counterfactuals-0.1.6/rf_counterfactuals/single_cf_costs_functions.py
0.768993
0.796174
single_cf_costs_functions.py
pypi
from sklearn.ensemble import RandomForestClassifier from sklearn.tree import DecisionTreeClassifier from sklearn import tree import pandas as pd import numpy as np import warnings from functools import partial from joblib import Parallel, delayed import itertools import sys from single_cf_costs_functions import * from multi_cf_costs_functions import * class RandomForestExplainer: available_loss_functions = { 'euclidean': lambda x, x_prime: euclidean_distance(x, x_prime), 'euclidean_categorical': lambda x, x_prime, cat_features, non_cat_features: euclidean_categorical_distance(x, x_prime, cat_features, non_cat_features), 'hoem': lambda x, x_prime, feature_range, cat_features, non_cat_features: heterogeneous_euclidean_overlap_metric(x, x_prime, feature_range, cat_features, non_cat_features), 'cosine': lambda x, x_prime: cosine_distance(x, x_prime), 'jaccard': lambda x, x_prime: jaccard_distance(x, x_prime), 'pearson_correlation': lambda x, x_prime: pearson_correlation_distance(x, x_prime), 'unmatched_components': lambda x, x_prime: unmatched_components_distance(x, x_prime), 'k_nearest_neighborhood': lambda x_prime, label, nbrs, y_train: k_nearest_neighborhood(x_prime, label, nbrs, y_train), 'implausibility_single': lambda x_prime, nbrs, k: implausibility_single(x_prime, nbrs, k), } def __init__(self, model: RandomForestClassifier, X_train, y_train, categorical_features=None, frozen_features=None, left_frozen_features=None, right_frozen_features=None): self.rf_model = model self.decision_trees = model.estimators_ self.classes = list(model.classes_) self.get_class_for_dt = lambda label: self.classes.index(label) self.n_features = model.n_features_in_ self.positive_paths = dict() self.X_train = X_train self.y_train = y_train X_train_mean = np.mean(X_train, axis=0) X_train_std = np.std(X_train, axis=0) X_train_max = np.max(X_train, axis=0) X_train_min = np.min(X_train, axis=0) X_train_range = X_train_max - X_train_min self.X_train_stats = {'min': X_train_min, 'max': X_train_max, 'range': X_train_range, 'mean': X_train_mean, 'std': X_train_std, 'labels': y_train} self.nbrs = {} self.nbrs_same_label = {} categorical_features = [] if categorical_features is None else categorical_features frozen_features = [] if frozen_features is None else frozen_features left_frozen_features = [] if left_frozen_features is None else left_frozen_features right_frozen_features = [] if right_frozen_features is None else right_frozen_features for name, list_parameter in {'categorical_features': categorical_features, 'frozen_features': frozen_features, 'left_frozen_features': left_frozen_features, 'right_frozen_features': right_frozen_features}.items(): if type(list_parameter) != list: raise Exception(f"'{name}' parameter must be a list") for feature_index in list_parameter: if type(feature_index) != int or (feature_index < 0 or feature_index > self.n_features-1): raise Exception(f"Feature index '{feature_index}' in parameter '{name}' must be integer in range [0, {self.n_features-1}]") self.categorical_features = sorted(list(set(categorical_features))) self.non_categorical_features = [i for i in range(self.X_train.shape[1]) if i not in self.categorical_features] # We treat frozen_features as they are left_ and right_ frozen, so it's simpler for feature_index in frozen_features: left_frozen_features.append(feature_index) right_frozen_features.append(feature_index) self.left_frozen_features = sorted(list(set(left_frozen_features))) self.right_frozen_features = sorted(list(set(right_frozen_features))) def explain_with_single_metric(self, X, label, limit=1, eps=0.1, metric='euclidean', k=5, to_single_df=False, n_jobs=-1): """ Explain given instances with single metric """ if eps <= 0.0: raise Exception(f"Eps parameter={eps} (must be greater than 0.0).") if X.ndim == 1: warnings.warn(f"X has ndim={X.ndim}. Reshaping: X = X.values.reshape(1, -1)", UserWarning) X = X.values.reshape(1, -1) elif X.ndim == 2: pass else: raise Exception(f"Incorrect dimensions of X={X.ndim} (should be 2).") if type(limit) != int and limit is not None: raise Exception(f"Incorrect 'limit' parameter (limit={limit}). It must be integer type or None.") y_hat_ensemble = self.rf_model.predict(X) wrong_label = np.where(y_hat_ensemble != label)[0] X_wrong_label = X.iloc[wrong_label, :] counterfactuals, costs_per_row = self._get_artificial_counterfactuals(X, wrong_label, y_hat_ensemble, label, 0.1, (metric,), k, n_jobs=n_jobs) # Put whole calculation results into one DataFrame cfs_index = np.zeros(X.shape[0]) cfs_index[wrong_label] = 1 result = self._select_counterfactuals(X_wrong_label, counterfactuals, costs_per_row, limit, cfs_index) if to_single_df: result = pd.concat(result, ignore_index=False) return result def explain_with_multiple_metrics(self, X, label, limit=1, eps=0.1, metrics=('unmatched_components', 'euclidean'), k=5, to_single_df=False, n_jobs=-1): """ Explain given instances with multiple metrics """ if eps <= 0.0: raise Exception(f"Eps parameter={eps} (must be greater than 0.0).") if X.ndim == 1: warnings.warn(f"X has ndim={X.ndim}. Reshaping: X = X.values.reshape(1, -1)", UserWarning) X = X.values.reshape(1, -1) elif X.ndim == 2: pass else: raise Exception(f"Incorrect dimensions of X={X.ndim} (should be 2).") y_hat_ensemble = self.rf_model.predict(X) wrong_label = np.where(y_hat_ensemble != label)[0] X_wrong_label = X.iloc[wrong_label, :] counterfactuals, costs_per_row = self._get_artificial_counterfactuals(X, wrong_label, y_hat_ensemble, label, 0.1, metrics, k, n_jobs=n_jobs) cfs_index = np.zeros(X.shape[0]) cfs_index[wrong_label] = 1 result = self._select_counterfactuals_pareto_front(X_wrong_label, counterfactuals, costs_per_row, cfs_index) if to_single_df: result = pd.concat(result, ignore_index=False) return result def _get_positive_paths_for_label(self, label): """ Get positive path for given label and save paths to cache memory """ if label not in self.classes: raise Exception(f"This label: '{label}' doesn't belong to the dataset classes: '{self.classes}'") if label not in self.positive_paths: self.positive_paths[label] = _get_positive_paths(self.rf_model, self.get_class_for_dt(label)) return self.positive_paths[label] def _get_artificial_counterfactuals(self, X, wrong_label, y_hat_ensemble, label, eps, metrics, k, n_jobs=-1): """ Get counterfactual candidates """ # Precalculations X_wrong_label = X.iloc[wrong_label, :] # TODO: It can be calculated concurrently sys.stdout.write( f"[1/3] Extracting positive paths.\n") positive_paths = self._get_positive_paths_for_label(label) feature_eps_mul_std = eps * self.X_train_stats['std'] sys.stdout.write( f"[2/3] Generating counterfactual examples for each tree. Total number of tasks: {len(self.decision_trees)}\n") results_per_tree = Parallel(n_jobs=n_jobs, verbose=10, prefer='processes')( delayed(partial(_tweak_features, X_wrong_label, label, self.classes, self.rf_model, feature_eps_mul_std, self.categorical_features))(dt, pp) for dt, pp in zip(self.decision_trees, positive_paths)) # results_per_tree have shape (trees_no, X.shape[0], CFs) so we need to concat CFs along 0 dimension rpt_iterator = iter(np.array(results_per_tree, dtype=object).T) counterfactuals = [pd.DataFrame(itertools.chain.from_iterable(next(rpt_iterator))).drop_duplicates() for no in range(X.shape[0]) if no in wrong_label] params = {'k': k, 'y_hat_ensemble': y_hat_ensemble, 'label': label, 'y_train': self.y_train.values} if 'k_nearest_neighborhood' in metrics: if k not in self.nbrs: self.nbrs[k] = NearestNeighbors(n_neighbors=k, algorithm='ball_tree', metric=heterogeneous_euclidean_overlap_metric, metric_params={'feature_range': self.X_train_stats['range'], 'cat_features': self.categorical_features, 'non_cat_features': self.non_categorical_features}) self.nbrs[k].fit(self.X_train.values) params['nbrs'] = self.nbrs[k] if 'implausibility_single' in metrics: if (label, k) not in self.nbrs_same_label: self.nbrs_same_label[(label, k)] = NearestNeighbors(n_neighbors=k, algorithm='ball_tree', metric=heterogeneous_euclidean_overlap_metric, metric_params={'feature_range': self.X_train_stats['range'], 'cat_features': self.categorical_features, 'non_cat_features': self.non_categorical_features}) X_train_same_labels = self.X_train[self.y_train == label] self.nbrs_same_label[(label, k)].fit(X_train_same_labels.values) params['nbrs_same_label'] = self.nbrs_same_label[(label, k)] params['loss_functions_names'] = metrics params['loss_functions'] = {k: v for k, v in RandomForestExplainer.available_loss_functions.items() if k in metrics} sys.stdout.write(f"[3/3] Calculating loss function. Total number of tasks: {len(counterfactuals)}\n") costs_per_row = Parallel(n_jobs=n_jobs if len(counterfactuals) * 4 > n_jobs else 1, verbose=10, prefer='processes')( delayed(partial(_calculate_loss, params, self.X_train_stats['range'], self.X_train_stats['mean'], self.X_train_stats['std'], self.categorical_features, self.non_categorical_features)) (x[1], x_primes) for x, x_primes in zip(X_wrong_label.iterrows(), counterfactuals)) return counterfactuals, costs_per_row def _select_counterfactuals(self, original_rows, counterfactuals, costs, limit, cfs_index): """ Select first 'limit' counterfactual examples that meet certain constraints """ result = [] cfs_counter = 0 for no, is_csf in enumerate(cfs_index): if is_csf and len(counterfactuals[cfs_counter]) > 0: cfs = counterfactuals[cfs_counter] cfs['_loss'] = costs[cfs_counter] cfs['_loss'] = cfs['_loss'].apply(lambda x: x[0] if type(x) == list else x) # Check actionability of counterfactual cfs = cfs[cfs.apply(lambda row: _check_row_frozen_validity(original_rows.iloc[cfs_counter, :].values, row.values, self.left_frozen_features, self.right_frozen_features), axis=1)] if len(cfs) == 0: # If there are no candidates, continue the loop result.append(pd.DataFrame({})) continue sorted_cfs = cfs.sort_values('_loss') sorted_cfs = sorted_cfs.drop('_loss', axis=1) if limit is None: result.append(sorted_cfs.iloc[:, :]) else: result.append(sorted_cfs.iloc[:limit, :]) cfs_counter += 1 else: result.append(pd.DataFrame({})) return result def _select_counterfactuals_pareto_front(self, original_rows, counterfactuals, costs, cfs_index): """ Select counterfactual examples from first pareto front that meet certain constraints """ result = [] cfs_counter = 0 for no, is_csf in enumerate(cfs_index): if is_csf and len(counterfactuals[cfs_counter]) > 0: cfs = counterfactuals[cfs_counter] to_process = np.ones(cfs.shape[0], dtype=bool) # Check actionability of counterfactual actionable = cfs.apply( lambda row: _check_row_frozen_validity(original_rows.iloc[cfs_counter, :].values, row.values, self.left_frozen_features, self.right_frozen_features), axis=1) to_process[~actionable] = False cfs = cfs.iloc[to_process, :] if len(cfs) == 0: # If there are no candidates, continue the loop result.append(pd.DataFrame({})) continue cfs_costs = np.array(costs[cfs_counter]) pareto_mask = _is_pareto_efficient(cfs_costs[to_process], return_mask=True) cfs = cfs.iloc[pareto_mask, :] if len(cfs) == 0: # If there are no candidates, continue the loop result.append(pd.DataFrame({})) continue result.append(cfs) cfs_counter += 1 else: result.append(pd.DataFrame({})) return result def _check_row_frozen_validity(x, cf, left_frozen, right_frozen): """ Check actionability of counterfactual """ for left_frozen_feature in left_frozen: if cf[left_frozen_feature] < x[left_frozen_feature]: return False for right_frozen_feature in right_frozen: if cf[right_frozen_feature] > x[right_frozen_feature]: return False return True def _calculate_loss(params: dict, feature_range, feature_means, feature_std, categorical_features: list, non_categorical_features: list, X_row: np.array, X_primes: pd.DataFrame): """ Calculate given loss metrics for counterfactual """ result = [] zscore_normalized_X_primes = (X_primes - feature_means) / feature_std zscore_normalized_X_row = (X_row.values - feature_means) / feature_std zscore_normalized_X_row[zscore_normalized_X_row.isna()] = 0 for X_prime_no in range(zscore_normalized_X_primes.shape[0]): scores = [] X_prime = X_primes.iloc[X_prime_no, :] normalized_X_prime = zscore_normalized_X_primes.iloc[X_prime_no, :] normalized_X_prime[normalized_X_prime.isna()] = 0 for func_name, func in params['loss_functions'].items(): if func_name == 'k_nearest_neighborhood': loss = 1 - func(X_prime.values, params['label'], params['nbrs'], params['y_train']) elif func_name == 'implausibility_single': loss = func(X_prime.values, params['nbrs_same_label'], params['k']) elif func_name == 'euclidean_categorical': loss = func(zscore_normalized_X_row.values, normalized_X_prime.values, categorical_features, non_categorical_features) elif func_name == 'hoem': loss = func(X_row.values, X_prime.values, feature_range, categorical_features, non_categorical_features) else: loss = func(zscore_normalized_X_row.values, normalized_X_prime.values) scores.append(loss) result.append(scores) return result def _is_pareto_efficient(costs, return_mask=True): """ Find the pareto-efficient points :param costs: An (n_points, n_costs) array :param return_mask: True to return a mask :return: An array of indices of pareto-efficient points. If return_mask is True, this will be an (n_points, ) boolean array Otherwise it will be a (n_efficient_points, ) integer array of indices. From: https://stackoverflow.com/questions/32791911/fast-calculation-of-pareto-front-in-python """ is_efficient = np.arange(costs.shape[0]) n_points = costs.shape[0] next_point_index = 0 # Next index in the is_efficient array to search for while next_point_index<len(costs): nondominated_point_mask = np.any(costs<costs[next_point_index], axis=1) nondominated_point_mask[next_point_index] = True is_efficient = is_efficient[nondominated_point_mask] # Remove dominated points costs = costs[nondominated_point_mask] next_point_index = np.sum(nondominated_point_mask[:next_point_index])+1 if return_mask: is_efficient_mask = np.zeros(n_points, dtype = bool) is_efficient_mask[is_efficient] = True return is_efficient_mask else: return is_efficient def _tweak_features(X, label, classes, rf, feature_eps_mul_std, categorical_features, decision_tree, positive_paths): """ Tweak features to find counterfactual candidates for each tree """ predicted_classes_by_tree = np.array(decision_tree.predict(X.values), dtype=int) y_hat_tree = np.take(classes, predicted_classes_by_tree) to_tweak = np.where(y_hat_tree != label)[0] X_to_tweak = X.iloc[to_tweak, :] X_tweaked_candidates = [[] for _ in range(X.shape[0])] for positive_path in positive_paths: # If there are no samples to tweak if len(X_to_tweak) == 0: continue X_prime = X_to_tweak.copy() for feature_id, sign, threshold in positive_path: feature_values = X_prime.iloc[:, feature_id] if sign == 1: rows_to_tweak = feature_values.loc[(feature_values < threshold)].index if feature_id in categorical_features: X_prime.loc[rows_to_tweak, X_prime.columns[feature_id]] = np.ceil(threshold + ( feature_eps_mul_std[feature_id])) else: X_prime.loc[rows_to_tweak, X_prime.columns[feature_id]] = threshold + ( feature_eps_mul_std[feature_id]) else: rows_to_tweak = feature_values.loc[(feature_values >= threshold)].index if feature_id in categorical_features: X_prime.loc[rows_to_tweak, X_prime.columns[feature_id]] = np.floor(threshold - ( feature_eps_mul_std[feature_id])) else: X_prime.loc[rows_to_tweak, X_prime.columns[feature_id]] = threshold - ( feature_eps_mul_std[feature_id]) y_hat_prime = rf.predict(X_prime) candidates_indices = np.where(y_hat_prime == label)[0] for i in candidates_indices: X_tweaked_candidates[to_tweak[i]].append(X_prime.iloc[i, :]) return X_tweaked_candidates def _get_positive_paths(model: RandomForestClassifier, label: int): """ Get all positive paths from Random Forest Classifier """ positive_paths = [] for decision_tree_classifier in model.estimators_: tree_paths = _get_positive_paths_from_decision_tree(decision_tree_classifier, label) positive_paths.append(tree_paths) return positive_paths def _get_positive_paths_from_decision_tree(decision_tree_classifier: DecisionTreeClassifier, label: int): """ Get all positive paths from a single Decision Tree Classifier""" tree = decision_tree_classifier.tree_ nodes_values = tree.value # If root note doesn't contain desired label in children nodes, return empty list if nodes_values[0, :, label] == 0: return [] tree_paths = [] _recursively_search_tree(0, label, [], tree, tree_paths) return tree_paths def _recursively_search_tree(node_id: int, leaf_label: int, path_history: list, tree, tree_paths: list): """ Recursively go through tree to find positive paths """ children_left_node_id = tree.children_left[node_id] children_right_node_id = tree.children_right[node_id] nodes_values = tree.value # Check if left children is leaf node if tree.children_left[children_left_node_id] != tree.children_right[children_left_node_id]: # If no, check if it can have still a path to target label, then process it recursively if nodes_values[children_left_node_id, :, leaf_label] > 0: new_path_history = path_history.copy() + [[tree.feature[node_id], -1, tree.threshold[node_id]]] _recursively_search_tree(children_left_node_id, leaf_label, new_path_history, tree, tree_paths) else: # If it is a leaf node, check if it contains target label if np.argmax(nodes_values[children_left_node_id, 0, :]) == leaf_label: new_path_history = path_history.copy() + [[tree.feature[node_id], -1, tree.threshold[node_id]]] tree_paths.append(new_path_history) # Check if right children is leaf node if tree.children_left[children_right_node_id] != tree.children_right[children_right_node_id]: # If no, check if it can have still a path to target label, then process it recursively if nodes_values[children_right_node_id, :, leaf_label] > 0: new_path_history = path_history.copy() + [[tree.feature[node_id], 1, tree.threshold[node_id]]] _recursively_search_tree(children_right_node_id, leaf_label, new_path_history, tree, tree_paths) else: # If it is a leaf node, check if it contains target label if np.argmax(nodes_values[children_right_node_id, 0, :]) == leaf_label: new_path_history = path_history.copy() + [[tree.feature[node_id], 1, tree.threshold[node_id]]] tree_paths.append(new_path_history)
/rf_counterfactuals-0.1.6.tar.gz/rf_counterfactuals-0.1.6/rf_counterfactuals/rf_explainer.py
0.77137
0.40751
rf_explainer.py
pypi
# :sauropod: Grounding DINO [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/grounding-dino-marrying-dino-with-grounded/zero-shot-object-detection-on-mscoco)](https://paperswithcode.com/sota/zero-shot-object-detection-on-mscoco?p=grounding-dino-marrying-dino-with-grounded) [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/grounding-dino-marrying-dino-with-grounded/zero-shot-object-detection-on-odinw)](https://paperswithcode.com/sota/zero-shot-object-detection-on-odinw?p=grounding-dino-marrying-dino-with-grounded) \ [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/grounding-dino-marrying-dino-with-grounded/object-detection-on-coco-minival)](https://paperswithcode.com/sota/object-detection-on-coco-minival?p=grounding-dino-marrying-dino-with-grounded) [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/grounding-dino-marrying-dino-with-grounded/object-detection-on-coco)](https://paperswithcode.com/sota/object-detection-on-coco?p=grounding-dino-marrying-dino-with-grounded) [![image](https://img.shields.io/pypi/v/rf_groundingdino.svg)](https://pypi.python.org/pypi/rf_groundingdino) Official PyTorch implementation of ["Grounding DINO: Marrying DINO with Grounded Pre-Training for Open-Set Object Detection"](https://arxiv.org/abs/2303.05499): the SoTA open-set object detector. ## :sun_with_face: Helpful Tutorial - :grapes: [[Read our arXiv Paper](https://arxiv.org/abs/2303.05499)] - :apple: [[Watch our simple introduction video on YouTube](https://youtu.be/wxWDt5UiwY8)] - :rose: &nbsp;[[Try the Colab Demo](https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/zero-shot-object-detection-with-grounding-dino.ipynb)] - :sunflower: [[Try our Official Huggingface Demo](https://huggingface.co/spaces/ShilongLiu/Grounding_DINO_demo)] - :maple_leaf: [[Watch the Step by Step Tutorial about GroundingDINO by Roboflow AI](https://youtu.be/cMa77r3YrDk)] - :mushroom: [[GroundingDINO: Automated Dataset Annotation and Evaluation by Roboflow AI](https://youtu.be/C4NqaRBz_Kw)] - :hibiscus: [[Accelerate Image Annotation with SAM and GroundingDINO by Roboflow AI](https://youtu.be/oEQYStnF2l8)] <!-- Grounding DINO Methods | [![arXiv](https://img.shields.io/badge/arXiv-2303.05499-b31b1b.svg)](https://arxiv.org/abs/2303.05499) [![YouTube](https://badges.aleen42.com/src/youtube.svg)](https://youtu.be/wxWDt5UiwY8) --> <!-- Grounding DINO Demos | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/zero-shot-object-detection-with-grounding-dino.ipynb) --> <!-- [![YouTube](https://badges.aleen42.com/src/youtube.svg)](https://youtu.be/cMa77r3YrDk) [![HuggingFace space](https://img.shields.io/badge/🤗-HuggingFace%20Space-cyan.svg)](https://huggingface.co/spaces/ShilongLiu/Grounding_DINO_demo) [![YouTube](https://badges.aleen42.com/src/youtube.svg)](https://youtu.be/oEQYStnF2l8) [![YouTube](https://badges.aleen42.com/src/youtube.svg)](https://youtu.be/C4NqaRBz_Kw) --> ## :sparkles: Highlight Projects - [DetGPT: Detect What You Need via Reasoning](https://github.com/OptimalScale/DetGPT) - [Grounded-SAM: Marrying Grounding DINO with Segment Anything](https://github.com/IDEA-Research/Grounded-Segment-Anything) - [Grounding DINO with Stable Diffusion](demo/image_editing_with_groundingdino_stablediffusion.ipynb) - [Grounding DINO with GLIGEN for Controllable Image Editing](demo/image_editing_with_groundingdino_gligen.ipynb) - [OpenSeeD: A Simple and Strong Openset Segmentation Model](https://github.com/IDEA-Research/OpenSeeD) - [SEEM: Segment Everything Everywhere All at Once](https://github.com/UX-Decoder/Segment-Everything-Everywhere-All-At-Once) - [X-GPT: Conversational Visual Agent supported by X-Decoder](https://github.com/microsoft/X-Decoder/tree/xgpt) - [GLIGEN: Open-Set Grounded Text-to-Image Generation](https://github.com/gligen/GLIGEN) - [LLaVA: Large Language and Vision Assistant](https://github.com/haotian-liu/LLaVA) <!-- Extensions | [Grounding DINO with Segment Anything](https://github.com/IDEA-Research/Grounded-Segment-Anything); [Grounding DINO with Stable Diffusion](demo/image_editing_with_groundingdino_stablediffusion.ipynb); [Grounding DINO with GLIGEN](demo/image_editing_with_groundingdino_gligen.ipynb) --> <!-- Official PyTorch implementation of [Grounding DINO](https://arxiv.org/abs/2303.05499), a stronger open-set object detector. Code is available now! --> ## :bulb: Highlight - **Open-Set Detection.** Detect **everything** with language! - **High Performancce.** COCO zero-shot **52.5 AP** (training without COCO data!). COCO fine-tune **63.0 AP**. - **Flexible.** Collaboration with Stable Diffusion for Image Editting. ## :fire: News - **`2023/04/15`**: Refer to [CV in the Wild Readings](https://github.com/Computer-Vision-in-the-Wild/CVinW_Readings) for those who are interested in open-set recognition! - **`2023/04/08`**: We release [demos](demo/image_editing_with_groundingdino_gligen.ipynb) to combine [Grounding DINO](https://arxiv.org/abs/2303.05499) with [GLIGEN](https://github.com/gligen/GLIGEN) for more controllable image editings. - **`2023/04/08`**: We release [demos](demo/image_editing_with_groundingdino_stablediffusion.ipynb) to combine [Grounding DINO](https://arxiv.org/abs/2303.05499) with [Stable Diffusion](https://github.com/Stability-AI/StableDiffusion) for image editings. - **`2023/04/06`**: We build a new demo by marrying GroundingDINO with [Segment-Anything](https://github.com/facebookresearch/segment-anything) named **[Grounded-Segment-Anything](https://github.com/IDEA-Research/Grounded-Segment-Anything)** aims to support segmentation in GroundingDINO. - **`2023/03/28`**: A YouTube [video](https://youtu.be/cMa77r3YrDk) about Grounding DINO and basic object detection prompt engineering. [[SkalskiP](https://github.com/SkalskiP)] - **`2023/03/28`**: Add a [demo](https://huggingface.co/spaces/ShilongLiu/Grounding_DINO_demo) on Hugging Face Space! - **`2023/03/27`**: Support CPU-only mode. Now the model can run on machines without GPUs. - **`2023/03/25`**: A [demo](https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/zero-shot-object-detection-with-grounding-dino.ipynb) for Grounding DINO is available at Colab. [[SkalskiP](https://github.com/SkalskiP)] - **`2023/03/22`**: Code is available Now! <details open> <summary><font size="4"> Description </font></summary> <a href="https://arxiv.org/abs/2303.05499">Paper</a> introduction. <img src=".asset/hero_figure.png" alt="ODinW" width="100%"> Marrying <a href="https://github.com/IDEA-Research/GroundingDINO">Grounding DINO</a> and <a href="https://github.com/gligen/GLIGEN">GLIGEN</a> <img src="https://huggingface.co/ShilongLiu/GroundingDINO/resolve/main/GD_GLIGEN.png" alt="gd_gligen" width="100%"> </details> ## :star: Explanations/Tips for Grounding DINO Inputs and Outputs - Grounding DINO accepts an `(image, text)` pair as inputs. - It outputs `900` (by default) object boxes. Each box has similarity scores across all input words. (as shown in Figures below.) - We defaultly choose the boxes whose highest similarities are higher than a `box_threshold`. - We extract the words whose similarities are higher than the `text_threshold` as predicted labels. - If you want to obtain objects of specific phrases, like the `dogs` in the sentence `two dogs with a stick.`, you can select the boxes with highest text similarities with `dogs` as final outputs. - Note that each word can be split to **more than one** tokens with different tokenlizers. The number of words in a sentence may not equal to the number of text tokens. - We suggest separating different category names with `.` for Grounding DINO. ![model_explain1](.asset/model_explan1.PNG) ![model_explain2](.asset/model_explan2.PNG) ## :label: TODO - [x] Release inference code and demo. - [x] Release checkpoints. - [x] Grounding DINO with Stable Diffusion and GLIGEN demos. - [ ] Release training codes. ## :hammer_and_wrench: Install **Note:** If you have a CUDA environment, please make sure the environment variable `CUDA_HOME` is set. It will be compiled under CPU-only mode if no CUDA available. **Installation:** Clone the GroundingDINO repository from GitHub. ```bash git clone https://github.com/IDEA-Research/GroundingDINO.git ``` Change the current directory to the GroundingDINO folder. ```bash cd GroundingDINO/ ``` Install the required dependencies in the current directory. ```bash pip3 install -q -e . ``` Create a new directory called "weights" to store the model weights. ```bash mkdir weights ``` Change the current directory to the "weights" folder. ```bash cd weights ``` Download the model weights file. ```bash wget -q https://github.com/IDEA-Research/GroundingDINO/releases/download/v0.1.0-alpha/groundingdino_swint_ogc.pth ``` ## :arrow_forward: Demo Check your GPU ID (only if you're using a GPU) ```bash nvidia-smi ``` Replace `{GPU ID}`, `image_you_want_to_detect.jpg`, and `"dir you want to save the output"` with appropriate values in the following command ```bash CUDA_VISIBLE_DEVICES={GPU ID} python demo/inference_on_a_image.py \ -c /GroundingDINO/groundingdino/config/GroundingDINO_SwinT_OGC.py \ -p /GroundingDINO/weights/groundingdino_swint_ogc.pth \ -i image_you_want_to_detect.jpg \ -o "dir you want to save the output" \ -t "chair" [--cpu-only] # open it for cpu mode ``` See the `demo/inference_on_a_image.py` for more details. **Running with Python:** ```python from groundingdino.util.inference import load_model, load_image, predict, annotate import cv2 model = load_model("groundingdino/config/GroundingDINO_SwinT_OGC.py", "weights/groundingdino_swint_ogc.pth") IMAGE_PATH = "weights/dog-3.jpeg" TEXT_PROMPT = "chair . person . dog ." BOX_TRESHOLD = 0.35 TEXT_TRESHOLD = 0.25 image_source, image = load_image(IMAGE_PATH) boxes, logits, phrases = predict( model=model, image=image, caption=TEXT_PROMPT, box_threshold=BOX_TRESHOLD, text_threshold=TEXT_TRESHOLD ) annotated_frame = annotate(image_source=image_source, boxes=boxes, logits=logits, phrases=phrases) cv2.imwrite("annotated_image.jpg", annotated_frame) ``` **Web UI** We also provide a demo code to integrate Grounding DINO with Gradio Web UI. See the file `demo/gradio_app.py` for more details. **Notebooks** - We release [demos](demo/image_editing_with_groundingdino_gligen.ipynb) to combine [Grounding DINO](https://arxiv.org/abs/2303.05499) with [GLIGEN](https://github.com/gligen/GLIGEN) for more controllable image editings. - We release [demos](demo/image_editing_with_groundingdino_stablediffusion.ipynb) to combine [Grounding DINO](https://arxiv.org/abs/2303.05499) with [Stable Diffusion](https://github.com/Stability-AI/StableDiffusion) for image editings. ## :luggage: Checkpoints <!-- insert a table --> <table> <thead> <tr style="text-align: right;"> <th></th> <th>name</th> <th>backbone</th> <th>Data</th> <th>box AP on COCO</th> <th>Checkpoint</th> <th>Config</th> </tr> </thead> <tbody> <tr> <th>1</th> <td>GroundingDINO-T</td> <td>Swin-T</td> <td>O365,GoldG,Cap4M</td> <td>48.4 (zero-shot) / 57.2 (fine-tune)</td> <td><a href="https://github.com/IDEA-Research/GroundingDINO/releases/download/v0.1.0-alpha/groundingdino_swint_ogc.pth">GitHub link</a> | <a href="https://huggingface.co/ShilongLiu/GroundingDINO/resolve/main/groundingdino_swint_ogc.pth">HF link</a></td> <td><a href="https://github.com/IDEA-Research/GroundingDINO/blob/main/groundingdino/config/GroundingDINO_SwinT_OGC.py">link</a></td> </tr> <tr> <th>2</th> <td>GroundingDINO-B</td> <td>Swin-B</td> <td>COCO,O365,GoldG,Cap4M,OpenImage,ODinW-35,RefCOCO</td> <td>56.7 </td> <td><a href="https://github.com/IDEA-Research/GroundingDINO/releases/download/v0.1.0-alpha2/groundingdino_swinb_cogcoor.pth">GitHub link</a> | <a href="https://huggingface.co/ShilongLiu/GroundingDINO/resolve/main/groundingdino_swinb_cogcoor.pth">HF link</a> <td><a href="https://github.com/IDEA-Research/GroundingDINO/blob/main/groundingdino/config/GroundingDINO_SwinB.cfg.py">link</a></td> </tr> </tbody> </table> ## :medal_military: Results <details open> <summary><font size="4"> COCO Object Detection Results </font></summary> <img src=".asset/COCO.png" alt="COCO" width="100%"> </details> <details open> <summary><font size="4"> ODinW Object Detection Results </font></summary> <img src=".asset/ODinW.png" alt="ODinW" width="100%"> </details> <details open> <summary><font size="4"> Marrying Grounding DINO with <a href="https://github.com/Stability-AI/StableDiffusion">Stable Diffusion</a> for Image Editing </font></summary> See our example <a href="https://github.com/IDEA-Research/GroundingDINO/blob/main/demo/image_editing_with_groundingdino_stablediffusion.ipynb">notebook</a> for more details. <img src=".asset/GD_SD.png" alt="GD_SD" width="100%"> </details> <details open> <summary><font size="4"> Marrying Grounding DINO with <a href="https://github.com/gligen/GLIGEN">GLIGEN</a> for more Detailed Image Editing. </font></summary> See our example <a href="https://github.com/IDEA-Research/GroundingDINO/blob/main/demo/image_editing_with_groundingdino_gligen.ipynb">notebook</a> for more details. <img src=".asset/GD_GLIGEN.png" alt="GD_GLIGEN" width="100%"> </details> ## :sauropod: Model: Grounding DINO Includes: a text backbone, an image backbone, a feature enhancer, a language-guided query selection, and a cross-modality decoder. ![arch](.asset/arch.png) ## :hearts: Acknowledgement Our model is related to [DINO](https://github.com/IDEA-Research/DINO) and [GLIP](https://github.com/microsoft/GLIP). Thanks for their great work! We also thank great previous work including DETR, Deformable DETR, SMCA, Conditional DETR, Anchor DETR, Dynamic DETR, DAB-DETR, DN-DETR, etc. More related work are available at [Awesome Detection Transformer](https://github.com/IDEACVR/awesome-detection-transformer). A new toolbox [detrex](https://github.com/IDEA-Research/detrex) is available as well. Thanks [Stable Diffusion](https://github.com/Stability-AI/StableDiffusion) and [GLIGEN](https://github.com/gligen/GLIGEN) for their awesome models. ## :black_nib: Citation If you find our work helpful for your research, please consider citing the following BibTeX entry. ```bibtex @article{liu2023grounding, title={Grounding dino: Marrying dino with grounded pre-training for open-set object detection}, author={Liu, Shilong and Zeng, Zhaoyang and Ren, Tianhe and Li, Feng and Zhang, Hao and Yang, Jie and Li, Chunyuan and Yang, Jianwei and Su, Hang and Zhu, Jun and others}, journal={arXiv preprint arXiv:2303.05499}, year={2023} } ```
/rf_groundingdino-0.1.2.tar.gz/rf_groundingdino-0.1.2/README.md
0.663778
0.780997
README.md
pypi
import math import warnings from typing import Optional import torch import torch.nn as nn import torch.nn.functional as F from torch.autograd import Function from torch.autograd.function import once_differentiable from torch.nn.init import constant_, xavier_uniform_ # helpers def _is_power_of_2(n): if (not isinstance(n, int)) or (n < 0): raise ValueError("invalid input for _is_power_of_2: {} (type: {})".format(n, type(n))) return (n & (n - 1) == 0) and n != 0 def multi_scale_deformable_attn_pytorch( value: torch.Tensor, value_spatial_shapes: torch.Tensor, sampling_locations: torch.Tensor, attention_weights: torch.Tensor, ) -> torch.Tensor: bs, _, num_heads, embed_dims = value.shape _, num_queries, num_heads, num_levels, num_points, _ = sampling_locations.shape value_list = value.split([H_ * W_ for H_, W_ in value_spatial_shapes], dim=1) sampling_grids = 2 * sampling_locations - 1 sampling_value_list = [] for level, (H_, W_) in enumerate(value_spatial_shapes): # bs, H_*W_, num_heads, embed_dims -> # bs, H_*W_, num_heads*embed_dims -> # bs, num_heads*embed_dims, H_*W_ -> # bs*num_heads, embed_dims, H_, W_ value_l_ = ( value_list[level].flatten(2).transpose(1, 2).reshape(bs * num_heads, embed_dims, H_, W_) ) # bs, num_queries, num_heads, num_points, 2 -> # bs, num_heads, num_queries, num_points, 2 -> # bs*num_heads, num_queries, num_points, 2 sampling_grid_l_ = sampling_grids[:, :, :, level].transpose(1, 2).flatten(0, 1) # bs*num_heads, embed_dims, num_queries, num_points sampling_value_l_ = F.grid_sample( value_l_, sampling_grid_l_, mode="bilinear", padding_mode="zeros", align_corners=False ) sampling_value_list.append(sampling_value_l_) # (bs, num_queries, num_heads, num_levels, num_points) -> # (bs, num_heads, num_queries, num_levels, num_points) -> # (bs, num_heads, 1, num_queries, num_levels*num_points) attention_weights = attention_weights.transpose(1, 2).reshape( bs * num_heads, 1, num_queries, num_levels * num_points ) output = ( (torch.stack(sampling_value_list, dim=-2).flatten(-2) * attention_weights) .sum(-1) .view(bs, num_heads * embed_dims, num_queries) ) return output.transpose(1, 2).contiguous() class MultiScaleDeformableAttention(nn.Module): """Multi-Scale Deformable Attention Module used in Deformable-DETR `Deformable DETR: Deformable Transformers for End-to-End Object Detection. <https://arxiv.org/pdf/2010.04159.pdf>`_. Args: embed_dim (int): The embedding dimension of Attention. Default: 256. num_heads (int): The number of attention heads. Default: 8. num_levels (int): The number of feature map used in Attention. Default: 4. num_points (int): The number of sampling points for each query in each head. Default: 4. img2col_steps (int): The step used in image_to_column. Defualt: 64. dropout (float): Dropout layer used in output. Default: 0.1. batch_first (bool): if ``True``, then the input and output tensor will be provided as `(bs, n, embed_dim)`. Default: False. `(n, bs, embed_dim)` """ def __init__( self, embed_dim: int = 256, num_heads: int = 8, num_levels: int = 4, num_points: int = 4, img2col_step: int = 64, batch_first: bool = False, ): super().__init__() if embed_dim % num_heads != 0: raise ValueError( "embed_dim must be divisible by num_heads, but got {} and {}".format( embed_dim, num_heads ) ) head_dim = embed_dim // num_heads self.batch_first = batch_first if not _is_power_of_2(head_dim): warnings.warn( """ You'd better set d_model in MSDeformAttn to make sure that each dim of the attention head a power of 2, which is more efficient. """ ) self.im2col_step = img2col_step self.embed_dim = embed_dim self.num_heads = num_heads self.num_levels = num_levels self.num_points = num_points self.sampling_offsets = nn.Linear(embed_dim, num_heads * num_levels * num_points * 2) self.attention_weights = nn.Linear(embed_dim, num_heads * num_levels * num_points) self.value_proj = nn.Linear(embed_dim, embed_dim) self.output_proj = nn.Linear(embed_dim, embed_dim) self.init_weights() def _reset_parameters(self): return self.init_weights() def init_weights(self): """ Default initialization for Parameters of Module. """ constant_(self.sampling_offsets.weight.data, 0.0) thetas = torch.arange(self.num_heads, dtype=torch.float32) * ( 2.0 * math.pi / self.num_heads ) grid_init = torch.stack([thetas.cos(), thetas.sin()], -1) grid_init = ( (grid_init / grid_init.abs().max(-1, keepdim=True)[0]) .view(self.num_heads, 1, 1, 2) .repeat(1, self.num_levels, self.num_points, 1) ) for i in range(self.num_points): grid_init[:, :, i, :] *= i + 1 with torch.no_grad(): self.sampling_offsets.bias = nn.Parameter(grid_init.view(-1)) constant_(self.attention_weights.weight.data, 0.0) constant_(self.attention_weights.bias.data, 0.0) xavier_uniform_(self.value_proj.weight.data) constant_(self.value_proj.bias.data, 0.0) xavier_uniform_(self.output_proj.weight.data) constant_(self.output_proj.bias.data, 0.0) def freeze_sampling_offsets(self): print("Freeze sampling offsets") self.sampling_offsets.weight.requires_grad = False self.sampling_offsets.bias.requires_grad = False def freeze_attention_weights(self): print("Freeze attention weights") self.attention_weights.weight.requires_grad = False self.attention_weights.bias.requires_grad = False def forward( self, query: torch.Tensor, key: Optional[torch.Tensor] = None, value: Optional[torch.Tensor] = None, query_pos: Optional[torch.Tensor] = None, key_padding_mask: Optional[torch.Tensor] = None, reference_points: Optional[torch.Tensor] = None, spatial_shapes: Optional[torch.Tensor] = None, level_start_index: Optional[torch.Tensor] = None, **kwargs ) -> torch.Tensor: """Forward Function of MultiScaleDeformableAttention Args: query (torch.Tensor): Query embeddings with shape `(num_query, bs, embed_dim)` key (torch.Tensor): Key embeddings with shape `(num_key, bs, embed_dim)` value (torch.Tensor): Value embeddings with shape `(num_key, bs, embed_dim)` query_pos (torch.Tensor): The position embedding for `query`. Default: None. key_padding_mask (torch.Tensor): ByteTensor for `query`, with shape `(bs, num_key)`, indicating which elements within `key` to be ignored in attention. reference_points (torch.Tensor): The normalized reference points with shape `(bs, num_query, num_levels, 2)`, all elements is range in [0, 1], top-left (0, 0), bottom-right (1, 1), including padding are. or `(N, Length_{query}, num_levels, 4)`, add additional two dimensions `(h, w)` to form reference boxes. spatial_shapes (torch.Tensor): Spatial shape of features in different levels. With shape `(num_levels, 2)`, last dimension represents `(h, w)`. level_start_index (torch.Tensor): The start index of each level. A tensor with shape `(num_levels, )` which can be represented as `[0, h_0 * w_0, h_0 * w_0 + h_1 * w_1, ...]`. Returns: torch.Tensor: forward results with shape `(num_query, bs, embed_dim)` """ if value is None: value = query if query_pos is not None: query = query + query_pos if not self.batch_first: # change to (bs, num_query ,embed_dims) query = query.permute(1, 0, 2) value = value.permute(1, 0, 2) bs, num_query, _ = query.shape bs, num_value, _ = value.shape assert (spatial_shapes[:, 0] * spatial_shapes[:, 1]).sum() == num_value value = self.value_proj(value) if key_padding_mask is not None: value = value.masked_fill(key_padding_mask[..., None], float(0)) value = value.view(bs, num_value, self.num_heads, -1) sampling_offsets = self.sampling_offsets(query).view( bs, num_query, self.num_heads, self.num_levels, self.num_points, 2 ) attention_weights = self.attention_weights(query).view( bs, num_query, self.num_heads, self.num_levels * self.num_points ) attention_weights = attention_weights.softmax(-1) attention_weights = attention_weights.view( bs, num_query, self.num_heads, self.num_levels, self.num_points, ) # bs, num_query, num_heads, num_levels, num_points, 2 if reference_points.shape[-1] == 2: offset_normalizer = torch.stack([spatial_shapes[..., 1], spatial_shapes[..., 0]], -1) sampling_locations = ( reference_points[:, :, None, :, None, :] + sampling_offsets / offset_normalizer[None, None, None, :, None, :] ) elif reference_points.shape[-1] == 4: sampling_locations = ( reference_points[:, :, None, :, None, :2] + sampling_offsets / self.num_points * reference_points[:, :, None, :, None, 2:] * 0.5 ) else: raise ValueError( "Last dim of reference_points must be 2 or 4, but get {} instead.".format( reference_points.shape[-1] ) ) output = multi_scale_deformable_attn_pytorch( value, spatial_shapes, sampling_locations, attention_weights ) output = self.output_proj(output) if not self.batch_first: output = output.permute(1, 0, 2) return output def create_dummy_class(klass, dependency, message=""): """ When a dependency of a class is not available, create a dummy class which throws ImportError when used. Args: klass (str): name of the class. dependency (str): name of the dependency. message: extra message to print Returns: class: a class object """ err = "Cannot import '{}', therefore '{}' is not available.".format(dependency, klass) if message: err = err + " " + message class _DummyMetaClass(type): # throw error on class attribute access def __getattr__(_, __): # noqa: B902 raise ImportError(err) class _Dummy(object, metaclass=_DummyMetaClass): # throw error on constructor def __init__(self, *args, **kwargs): raise ImportError(err) return _Dummy def create_dummy_func(func, dependency, message=""): """ When a dependency of a function is not available, create a dummy function which throws ImportError when used. Args: func (str): name of the function. dependency (str or list[str]): name(s) of the dependency. message: extra message to print Returns: function: a function object """ err = "Cannot import '{}', therefore '{}' is not available.".format(dependency, func) if message: err = err + " " + message if isinstance(dependency, (list, tuple)): dependency = ",".join(dependency) def _dummy(*args, **kwargs): raise ImportError(err) return _dummy
/rf_groundingdino-0.1.2.tar.gz/rf_groundingdino-0.1.2/groundingdino/models/GroundingDINO/ms_deform_attn.py
0.97544
0.564369
ms_deform_attn.py
pypi
from typing import Optional import torch import torch.nn.functional as F from torch import Tensor, nn from .utils import ( MLP, _get_activation_fn, _get_clones, gen_encoder_output_proposals, gen_sineembed_for_position, sigmoid_focal_loss, ) class TextTransformer(nn.Module): def __init__(self, num_layers, d_model=256, nheads=8, dim_feedforward=2048, dropout=0.1): super().__init__() self.num_layers = num_layers self.d_model = d_model self.nheads = nheads self.dim_feedforward = dim_feedforward self.norm = None single_encoder_layer = TransformerEncoderLayer( d_model=d_model, nhead=nheads, dim_feedforward=dim_feedforward, dropout=dropout ) self.layers = _get_clones(single_encoder_layer, num_layers) def forward(self, memory_text: torch.Tensor, text_attention_mask: torch.Tensor): """ Args: text_attention_mask: bs, num_token memory_text: bs, num_token, d_model Raises: RuntimeError: _description_ Returns: output: bs, num_token, d_model """ output = memory_text.transpose(0, 1) for layer in self.layers: output = layer(output, src_key_padding_mask=text_attention_mask) if self.norm is not None: output = self.norm(output) return output.transpose(0, 1) class TransformerEncoderLayer(nn.Module): def __init__( self, d_model, nhead, dim_feedforward=2048, dropout=0.1, activation="relu", normalize_before=False, ): super().__init__() self.self_attn = nn.MultiheadAttention(d_model, nhead, dropout=dropout) # Implementation of Feedforward model self.linear1 = nn.Linear(d_model, dim_feedforward) self.dropout = nn.Dropout(dropout) self.linear2 = nn.Linear(dim_feedforward, d_model) self.norm1 = nn.LayerNorm(d_model) self.norm2 = nn.LayerNorm(d_model) self.dropout1 = nn.Dropout(dropout) self.dropout2 = nn.Dropout(dropout) self.activation = _get_activation_fn(activation) self.normalize_before = normalize_before self.nhead = nhead def with_pos_embed(self, tensor, pos: Optional[Tensor]): return tensor if pos is None else tensor + pos def forward( self, src, src_mask: Optional[Tensor] = None, src_key_padding_mask: Optional[Tensor] = None, pos: Optional[Tensor] = None, ): # repeat attn mask if src_mask.dim() == 3 and src_mask.shape[0] == src.shape[1]: # bs, num_q, num_k src_mask = src_mask.repeat(self.nhead, 1, 1) q = k = self.with_pos_embed(src, pos) src2 = self.self_attn(q, k, value=src, attn_mask=src_mask)[0] # src2 = self.self_attn(q, k, value=src, attn_mask=src_mask, key_padding_mask=src_key_padding_mask)[0] src = src + self.dropout1(src2) src = self.norm1(src) src2 = self.linear2(self.dropout(self.activation(self.linear1(src)))) src = src + self.dropout2(src2) src = self.norm2(src) return src
/rf_groundingdino-0.1.2.tar.gz/rf_groundingdino-0.1.2/groundingdino/models/GroundingDINO/transformer_vanilla.py
0.973203
0.364099
transformer_vanilla.py
pypi
import os import random from typing import List import torch def create_positive_map_from_span(tokenized, token_span, max_text_len=256): """construct a map such that positive_map[i,j] = True iff box i is associated to token j Input: - tokenized: - input_ids: Tensor[1, ntokens] - attention_mask: Tensor[1, ntokens] - token_span: list with length num_boxes. - each item: [start_idx, end_idx] """ positive_map = torch.zeros((len(token_span), max_text_len), dtype=torch.float) for j, tok_list in enumerate(token_span): for (beg, end) in tok_list: beg_pos = tokenized.char_to_token(beg) end_pos = tokenized.char_to_token(end - 1) if beg_pos is None: try: beg_pos = tokenized.char_to_token(beg + 1) if beg_pos is None: beg_pos = tokenized.char_to_token(beg + 2) except: beg_pos = None if end_pos is None: try: end_pos = tokenized.char_to_token(end - 2) if end_pos is None: end_pos = tokenized.char_to_token(end - 3) except: end_pos = None if beg_pos is None or end_pos is None: continue assert beg_pos is not None and end_pos is not None if os.environ.get("SHILONG_DEBUG_ONLY_ONE_POS", None) == "TRUE": positive_map[j, beg_pos] = 1 break else: positive_map[j, beg_pos : end_pos + 1].fill_(1) return positive_map / (positive_map.sum(-1)[:, None] + 1e-6) def build_captions_and_token_span(cat_list, force_lowercase): """ Return: captions: str cat2tokenspan: dict { 'dog': [[0, 2]], ... } """ cat2tokenspan = {} captions = "" for catname in cat_list: class_name = catname if force_lowercase: class_name = class_name.lower() if "/" in class_name: class_name_list: List = class_name.strip().split("/") class_name_list.append(class_name) class_name: str = random.choice(class_name_list) tokens_positive_i = [] subnamelist = [i.strip() for i in class_name.strip().split(" ")] for subname in subnamelist: if len(subname) == 0: continue if len(captions) > 0: captions = captions + " " strat_idx = len(captions) end_idx = strat_idx + len(subname) tokens_positive_i.append([strat_idx, end_idx]) captions = captions + subname if len(tokens_positive_i) > 0: captions = captions + " ." cat2tokenspan[class_name] = tokens_positive_i return captions, cat2tokenspan def build_id2posspan_and_caption(category_dict: dict): """Build id2pos_span and caption from category_dict Args: category_dict (dict): category_dict """ cat_list = [item["name"].lower() for item in category_dict] id2catname = {item["id"]: item["name"].lower() for item in category_dict} caption, cat2posspan = build_captions_and_token_span(cat_list, force_lowercase=True) id2posspan = {catid: cat2posspan[catname] for catid, catname in id2catname.items()} return id2posspan, caption
/rf_groundingdino-0.1.2.tar.gz/rf_groundingdino-0.1.2/groundingdino/util/vl_utils.py
0.575349
0.510435
vl_utils.py
pypi
from typing import Tuple, List import cv2 import numpy as np import supervision as sv import torch from PIL import Image from torchvision.ops import box_convert import groundingdino.datasets.transforms as T from groundingdino.models import build_model from groundingdino.util.misc import clean_state_dict from groundingdino.util.slconfig import SLConfig from groundingdino.util.utils import get_phrases_from_posmap # ---------------------------------------------------------------------------------------------------------------------- # OLD API # ---------------------------------------------------------------------------------------------------------------------- def preprocess_caption(caption: str) -> str: result = caption.lower().strip() if result.endswith("."): return result return result + "." def load_model(model_config_path: str, model_checkpoint_path: str, device: str = "cuda"): args = SLConfig.fromfile(model_config_path) args.device = device model = build_model(args) checkpoint = torch.load(model_checkpoint_path, map_location="cpu") model.load_state_dict(clean_state_dict(checkpoint["model"]), strict=False) model.eval() return model def load_image(image_path: str) -> Tuple[np.array, torch.Tensor]: transform = T.Compose( [ T.RandomResize([800], max_size=1333), T.ToTensor(), T.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225]), ] ) image_source = Image.open(image_path).convert("RGB") image = np.asarray(image_source) image_transformed, _ = transform(image_source, None) return image, image_transformed def predict( model, image: torch.Tensor, caption: str, box_threshold: float, text_threshold: float, device: str = "cuda" ) -> Tuple[torch.Tensor, torch.Tensor, List[str]]: caption = preprocess_caption(caption=caption) model = model.to(device) image = image.to(device) with torch.no_grad(): outputs = model(image[None], captions=[caption]) prediction_logits = outputs["pred_logits"].cpu().sigmoid()[0] # prediction_logits.shape = (nq, 256) prediction_boxes = outputs["pred_boxes"].cpu()[0] # prediction_boxes.shape = (nq, 4) mask = prediction_logits.max(dim=1)[0] > box_threshold logits = prediction_logits[mask] # logits.shape = (n, 256) boxes = prediction_boxes[mask] # boxes.shape = (n, 4) tokenizer = model.tokenizer tokenized = tokenizer(caption) phrases = [ get_phrases_from_posmap(logit > text_threshold, tokenized, tokenizer).replace('.', '') for logit in logits ] return boxes, logits.max(dim=1)[0], phrases def annotate(image_source: np.ndarray, boxes: torch.Tensor, logits: torch.Tensor, phrases: List[str]) -> np.ndarray: h, w, _ = image_source.shape boxes = boxes * torch.Tensor([w, h, w, h]) xyxy = box_convert(boxes=boxes, in_fmt="cxcywh", out_fmt="xyxy").numpy() detections = sv.Detections(xyxy=xyxy) labels = [ f"{phrase} {logit:.2f}" for phrase, logit in zip(phrases, logits) ] box_annotator = sv.BoxAnnotator() annotated_frame = cv2.cvtColor(image_source, cv2.COLOR_RGB2BGR) annotated_frame = box_annotator.annotate(scene=annotated_frame, detections=detections, labels=labels) return annotated_frame # ---------------------------------------------------------------------------------------------------------------------- # NEW API # ---------------------------------------------------------------------------------------------------------------------- class Model: def __init__( self, model_config_path: str, model_checkpoint_path: str, device: str = "cuda" ): self.model = load_model( model_config_path=model_config_path, model_checkpoint_path=model_checkpoint_path, device=device ).to(device) self.device = device def predict_with_caption( self, image: np.ndarray, caption: str, box_threshold: float = 0.35, text_threshold: float = 0.25 ) -> Tuple[sv.Detections, List[str]]: """ import cv2 image = cv2.imread(IMAGE_PATH) model = Model(model_config_path=CONFIG_PATH, model_checkpoint_path=WEIGHTS_PATH) detections, labels = model.predict_with_caption( image=image, caption=caption, box_threshold=BOX_THRESHOLD, text_threshold=TEXT_THRESHOLD ) import supervision as sv box_annotator = sv.BoxAnnotator() annotated_image = box_annotator.annotate(scene=image, detections=detections, labels=labels) """ processed_image = Model.preprocess_image(image_bgr=image).to(self.device) boxes, logits, phrases = predict( model=self.model, image=processed_image, caption=caption, box_threshold=box_threshold, text_threshold=text_threshold, device=self.device) source_h, source_w, _ = image.shape detections = Model.post_process_result( source_h=source_h, source_w=source_w, boxes=boxes, logits=logits) return detections, phrases def predict_with_classes( self, image: np.ndarray, classes: List[str], box_threshold: float, text_threshold: float ) -> sv.Detections: """ import cv2 image = cv2.imread(IMAGE_PATH) model = Model(model_config_path=CONFIG_PATH, model_checkpoint_path=WEIGHTS_PATH) detections = model.predict_with_classes( image=image, classes=CLASSES, box_threshold=BOX_THRESHOLD, text_threshold=TEXT_THRESHOLD ) import supervision as sv box_annotator = sv.BoxAnnotator() annotated_image = box_annotator.annotate(scene=image, detections=detections) """ caption = ". ".join(classes) processed_image = Model.preprocess_image(image_bgr=image).to(self.device) boxes, logits, phrases = predict( model=self.model, image=processed_image, caption=caption, box_threshold=box_threshold, text_threshold=text_threshold, device=self.device) source_h, source_w, _ = image.shape detections = Model.post_process_result( source_h=source_h, source_w=source_w, boxes=boxes, logits=logits) class_id = Model.phrases2classes(phrases=phrases, classes=classes) detections.class_id = class_id return detections @staticmethod def preprocess_image(image_bgr: np.ndarray) -> torch.Tensor: transform = T.Compose( [ T.RandomResize([800], max_size=1333), T.ToTensor(), T.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225]), ] ) image_pillow = Image.fromarray(cv2.cvtColor(image_bgr, cv2.COLOR_BGR2RGB)) image_transformed, _ = transform(image_pillow, None) return image_transformed @staticmethod def post_process_result( source_h: int, source_w: int, boxes: torch.Tensor, logits: torch.Tensor ) -> sv.Detections: boxes = boxes * torch.Tensor([source_w, source_h, source_w, source_h]) xyxy = box_convert(boxes=boxes, in_fmt="cxcywh", out_fmt="xyxy").numpy() confidence = logits.numpy() return sv.Detections(xyxy=xyxy, confidence=confidence) @staticmethod def phrases2classes(phrases: List[str], classes: List[str]) -> np.ndarray: class_ids = [] for phrase in phrases: try: class_ids.append(classes.index(phrase)) except ValueError: class_ids.append(None) return np.array(class_ids)
/rf_groundingdino-0.1.2.tar.gz/rf_groundingdino-0.1.2/groundingdino/util/inference.py
0.875933
0.521227
inference.py
pypi
from iso3166 import countries from .countrymap import COUNTRY_MAP def parse_freq(freq, unit): argfreq = freq.replace('.', '').replace(',', '').replace('_', '').replace(' ', '') if unit.lower() == 'khz': mindigits = 3 elif unit.lower() == 'mhz': mindigits = 6 elif unit.lower() == 'ghz': mindigits = 9 elif unit.lower() == 'hz': if argfreq.isnumeric(): return int(argfreq) else: raise ValueError('Invalid Frequency Specified') else: raise ValueError('Invalid Unit Specified') if '.' in freq: first_occurrence = freq.index('.') + 1 nfreq = (freq[:first_occurrence] + freq[first_occurrence:].replace(".", "")).split('.') while len(nfreq[1]) < mindigits: nfreq[1] = nfreq[1] + '0' return int(''.join(nfreq)) else: for each in range(mindigits): argfreq = argfreq + '0' argfreq = str(int(argfreq)) return int(argfreq) class Frequency(): def __init__(self, freq, unit='hz', country='us'): # Hack for pytest to test cli inputs if unit == '': unit = 'hz' if country == '': country = 'us' # Determine Country and import country data try: scountry = countries.get(country) except KeyError: raise ValueError('Invalid Country Specified') cc = scountry.alpha2.upper() if cc not in COUNTRY_MAP: raise ValueError('Specified Country is Not Supported') from .data.international import ISM, IEEE, ITU, NATO, WAVEGUIDE, MICROWAVE from .data.satellites import SATELLITES if COUNTRY_MAP[cc] == 'a': from .data.a_allocations import ALLOCATIONS elif COUNTRY_MAP[cc] == 'b': from .data.b_allocations import ALLOCATIONS elif COUNTRY_MAP[cc] == 'c': from .data.c_allocations import ALLOCATIONS if scountry.alpha2.upper() == 'US': from .data.us import BROADCAST, AMATEUR, WIFI, SERVICES # Parse Frequency and unit inputs if (isinstance(freq, float) or isinstance(freq, str) or isinstance(freq, int)) and type(freq) != bool: intfreq = parse_freq(str(freq), unit) else: raise TypeError('Invalid Frequency Type') if intfreq < 1 or intfreq > 999999999999: raise ValueError('Frequency Out of Range') # Display Frequency dispfreq = str(intfreq)[::-1] while len(dispfreq) < 9: dispfreq = dispfreq + '0' dispfreq = '.'.join(dispfreq[i:i + 3] for i in range(0, len(dispfreq), 3)) self.display = dispfreq[::-1] # Unit frequencies self.units = {'hz': int(intfreq), 'khz': float(intfreq / 1000), 'mhz': float(intfreq / 1000000), 'ghz': float(intfreq / 1000000000)} # Wavelength data meter = 300000000 / intfreq if meter >= 1: self.wavelength = '{:,}'.format(int(meter)) self.wavelength = '{}m'.format(self.wavelength) elif meter >= 0.01: sub = int(str(meter).split('.')[1]) self.wavelength = '{}cm'.format(str(sub)[:2]) elif meter < 0.01: sub = int(str(meter).split('.')[1]) * 1000 self.wavelength = '{}mm'.format(str(sub)[:2]) # ITU data itu = ITU[intfreq] if itu: self.itu = {'number': itu[0], 'band': itu[2], 'abbr': itu[1]} else: self.itu = {'number': None, 'band': None, 'abbr': None} # IEEE data ieee = IEEE[intfreq] if ieee: self.ieee = {'band': ieee[0], 'description': ieee[1]} else: self.ieee = {'band': None, 'description': None} # NATO data nato = NATO[intfreq] if nato: self.nato = {'band': nato[0]} else: self.nato = {'band': None} # ISM Band data if ISM[intfreq] is not None: keys = ['type', 'description'] self.ism = dict(zip(keys, ISM[intfreq])) else: self.ism = {'band': None, 'description': None} # Waveguide data waveguide = WAVEGUIDE[intfreq] if waveguide: self.waveguide = {'band': waveguide[0]} else: self.waveguide = {'band': None} # Microwave data if MICROWAVE[intfreq] is None: self.microwave = {'band': None, 'allocation': None} else: self.microwave = {'band': MICROWAVE[intfreq][0], 'allocation': MICROWAVE[intfreq][1]} # Set Country self.country = {'name': scountry.name, 'abbr': scountry.alpha2.upper()} # Broadcasting data broadcasting = ALLOCATIONS[intfreq][3] if 'BROADCAST' in locals(): broadcast = BROADCAST[intfreq] if broadcasting: if broadcast is not None: if len(broadcast) > 0: self.broadcasting = {'allocated': True, 'details': broadcast} else: self.broadcasting = {'allocated': True, 'details': tuple()} else: self.broadcasting = {'allocated': False, 'details': tuple()} else: self.broadcasting = {'allocated': False, 'details': tuple()} # Wifi data if 'WIFI' in locals(): wifi = WIFI[intfreq] if wifi is not None: self.wifi = {'allocated': True, 'details': wifi} else: self.wifi = {'allocated': False, 'details': None} else: self.wifi = {'allocated': False, 'details': None} # Amateur radio data amateur = ALLOCATIONS[intfreq][0] if 'AMATEUR' in locals(): amateurdetail = AMATEUR[intfreq] if amateur: if amateurdetail is not None: self.amateur = {'allocated': True, 'modes': amateurdetail[0], 'license': amateurdetail[1], 'power': amateurdetail[2]} else: self.amateur = {'allocated': True, 'modes': None, 'license': None, 'power': None} else: self.amateur = {'allocated': False, 'modes': None, 'license': None, 'power': None} else: self.amateur = {'allocated': False, 'modes': None, 'license': None, 'power': None} # Satellite data satellite = ALLOCATIONS[intfreq][4] if 'SATELLITES' in locals(): satdetail = SATELLITES[intfreq] if satdetail is not None: self.satellite = {'allocated': True, 'name': satdetail[0], 'sat-id': satdetail[1], 'link': satdetail[2], 'modes': satdetail[3], 'callsign': satdetail[4], 'status': satdetail[5]} elif satellite: self.satellite = {'allocated': True, 'name': None, 'sat-id': None, 'link': None, 'modes': None, 'callsign': None, 'status': None} else: self.satellite = {'allocated': False, 'name': None, 'sat-id': None, 'link': None, 'modes': None, 'callsign': None, 'status': None} else: self.satellite = {'allocated': False, 'name': None, 'sat-id': None, 'link': None, 'modes': None, 'callsign': None, 'status': None} # Other Services data if 'SERVICES' in locals(): services = SERVICES[intfreq] if services is not None: self.services = services else: self.services = None else: self.services = None # Fixed & Mobile station data self.station = {'fixed': ALLOCATIONS[intfreq][1], 'mobile': ALLOCATIONS[intfreq][2]} # IEEE Allocation self.ieee_allocation = {'primary': tuple(ALLOCATIONS[intfreq][5]), 'secondary': tuple(ALLOCATIONS[intfreq][6]), 'notes': tuple(ALLOCATIONS[intfreq][7])} def info(self): return self.__dict__ def details(self): return self.__dict__ def __repr__(self): return "rf_info.Frequency('{}', 'hz', '{}')".format(self.display, self.country['abbr'].lower()) def __str__(self): return '{} - {} hz'.format(self.display, self.units['hz']) def __int__(self): return int(self.units['hz']) def __add__(self, other): if isinstance(other, Frequency): return Frequency(self.units['hz'] + other.units['hz']) elif isinstance(other, int): return Frequency(self.units['hz'] + other) elif isinstance(other, str): otherf = Frequency(other) return Frequency(self.units['hz'] + otherf.units['hz']) else: raise TypeError def __sub__(self, other): if isinstance(other, Frequency): return Frequency(self.units['hz'] - other.units['hz']) elif isinstance(other, int): return Frequency(self.units['hz'] - other) elif isinstance(other, str): otherf = Frequency(other) return Frequency(self.units['hz'] - otherf.units['hz']) else: raise TypeError def __len__(self): return len(str(self.units['hz']))
/rf_info-0.8.0.tar.gz/rf_info-0.8.0/rf_info/rf_info.py
0.553626
0.368065
rf_info.py
pypi
from rf_info.data.rangekeydict import RangeKeyDict ALLOCATIONS = RangeKeyDict({ (0, 8301): (False, False, False, False, False, ['(Not Allocated)'], [], ['[5.53]: Administrations authorizing the use of frequencies below 8.3 kHz shall ensure that no harmful interference is caused to services to which the bands above 8.3 kHz are allocated. (WRC-12)', '[5.54]: Administrations conducting scientific research using frequencies below 8.3 kHz are urged to advise other administrations that may be concerned in order that such research may be afforded all practicable protection from harmful interference. (WRC-12)']), (8300, 9001): (False, False, False, False, False, ['Meteorological Aids [5.54A][5.54B][5.54C]'], [], ['[5.54A]: Use of the 8.3-11.3 kHz frequency band by stations in the meteorological aids service is limited to passive use only. In the band 9-11.3 kHz, meteorological aids stations shall not claim protection from stations of the radionavigation service submitted for notification to the Bureau prior to 1 January 2013. For sharing between stations of the meteorological aids service and stations in the radionavigation service submitted for notification after this date, the most recent version of Recommendation ITU-R RS.1881 should be applied. (WRC-12)', '[5.54B]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Egypt, the United Arab Emirates, the Russian Federation, Iran (Islamic Republic of), Iraq, Kuwait, Lebanon, Morocco, Qatar, the Syrian Arab Republic, Sudan and Tunisia, the frequency band 8.3-9 kHz is also allocated to the radionavigation, fixed and mobile services on a primary basis. (WRC-15)', '[5.54C]: Additional allocation: in China, the frequency band 8.3-9 kHz is also allocated to the maritime radionavigation and maritime mobile services on a primary basis. (WRC-12)']), (9000, 11301): (False, False, False, False, False, ['Meteorological Aids [5.54A]', 'Radionavigation'], [], ['[5.54A]: Use of the 8.3-11.3 kHz frequency band by stations in the meteorological aids service is limited to passive use only. In the band 9-11.3 kHz, meteorological aids stations shall not claim protection from stations of the radionavigation service submitted for notification to the Bureau prior to 1 January 2013. For sharing between stations of the meteorological aids service and stations in the radionavigation service submitted for notification after this date, the most recent version of Recommendation ITU-R RS.1881 should be applied. (WRC-12)']), (11300, 14001): (False, False, False, False, False, ['Radionavigation'], [], []), (14000, 19951): (False, True, True, False, False, ['Maritime Mobile [5.57]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.55]: Additional allocation: in Armenia, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the frequency band 14-17 kHz is also allocated to the radionavigation service on a primary basis. (WRC-15)', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)']), (19950, 20051): (False, False, False, False, False, ['Standard Frequency And Time Signal (20 Khz)'], [], []), (20050, 70001): (False, True, True, False, False, ['Maritime Mobile [5.57]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)', '[5.58]: Additional allocation: in Armenia, Azerbaijan, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the band 67-70 kHz is also allocated to the radionavigation service on a primary basis. (WRC-2000)']), (70000, 72001): (False, False, False, False, False, ['Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.']), (72000, 84001): (False, True, True, False, False, ['Maritime Mobile [5.57]', 'Radionavigation [5.60]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)']), (84000, 86001): (False, False, False, False, False, ['Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.']), (86000, 90001): (False, True, True, False, False, ['Maritime Mobile [5.57]', 'Radionavigation'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)']), (90000, 110001): (False, True, False, False, False, ['Radionavigation [5.62]'], [], ['[5.62]: Administrations which operate stations in the radionavigation service in the band 90-110 kHz are urged to coordinate technical and operating characteristics in such a way as to avoid harmful interference to the services provided by these stations.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (110000, 112001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (112000, 115001): (False, False, False, False, False, ['Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.']), (115000, 117601): (False, True, False, False, False, ['Radionavigation [5.60]'], ['Maritime Mobile'], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.66]: Different category of service: in Germany, the allocation of the band 115-117.6 kHz to the fixed and maritime mobile services is on a primary basis (see No. 5.33) and to the radionavigation service on a secondary basis (see No. 5.32).']), (117600, 126001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (126000, 129001): (False, False, False, False, False, ['Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.']), (129000, 130001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (130000, 135701): (False, True, True, False, False, ['Maritime Mobile'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.67]: Additional allocation: in Mongolia, Kyrgyzstan and Turkmenistan, the band 130-148.5 kHz is also allocated to the radionavigation service on a secondary basis. Within and between these countries this service shall have an equal right to operate. (WRC-07)']), (135700, 137801): (True, True, True, False, False, ['Maritime Mobile'], ['Amateur [5.67A]'], ['[5.67A]: Stations in the amateur service using frequencies in the band 135.7-137.8 kHz shall not exceed a maximum radiated power of 1 W (e.i.r.p.) and shall not cause harmful interference to stations of the radionavigation service operating in countries listed in No. 5.67. (WRC-07)', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.67]: Additional allocation: in Mongolia, Kyrgyzstan and Turkmenistan, the band 130-148.5 kHz is also allocated to the radionavigation service on a secondary basis. Within and between these countries this service shall have an equal right to operate. (WRC-07)', '[5.67B]: The use of the band 135.7-137.8 kHz in Algeria, Egypt, Iran (Islamic Republic of), Iraq, Lebanon, Syrian Arab Republic, Sudan, South Sudan and Tunisia is limited to the fixed and maritime mobile services. The amateur service shall not be used in the above-mentioned countries in the band 135.7-137.8 kHz, and this should be taken into account by the countries authorizing such use. (WRC-12)']), (137800, 148501): (False, True, True, False, False, ['Maritime Mobile'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.67]: Additional allocation: in Mongolia, Kyrgyzstan and Turkmenistan, the band 130-148.5 kHz is also allocated to the radionavigation service on a secondary basis. Within and between these countries this service shall have an equal right to operate. (WRC-07)']), (148500, 255001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.68]: Alternative allocation: in Congo (Rep. of the), the Dem. Rep. of the Congo and South Africa, the frequency band 160-200 kHz is allocated to the fixed service on a primary basis. (WRC-15)', '[5.69]: Additional allocation: in Somalia, the band 200-255 kHz is also allocated to the aeronautical radionavigation service on a primary basis.', '[5.70]: Alternative allocation: in Angola, Botswana, Burundi, the Central African Rep., Congo (Rep. of the), Ethiopia, Kenya, Lesotho, Madagascar, Malawi, Mozambique, Namibia, Nigeria, Oman, the Dem. Rep. of the Congo, South Africa, Swaziland, Tanzania, Chad, Zambia and Zimbabwe, the band 200-283.5 kHz is allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)']), (255000, 283501): (False, False, False, True, False, ['Broadcasting', 'Aeronautical Radionavigation'], [], ['[5.70]: Alternative allocation: in Angola, Botswana, Burundi, the Central African Rep., Congo (Rep. of the), Ethiopia, Kenya, Lesotho, Madagascar, Malawi, Mozambique, Namibia, Nigeria, Oman, the Dem. Rep. of the Congo, South Africa, Swaziland, Tanzania, Chad, Zambia and Zimbabwe, the band 200-283.5 kHz is allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.71]: Alternative allocation: in Tunisia, the band 255-283.5 kHz is allocated to the broadcasting service on a primary basis.']), (283500, 315001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Maritime Radionavigation (Radiobeacons) [5.73]'], [], ['[5.73]: The band 285-325 kHz (283.5-325 kHz in Region 1) in the maritime radionavigation service may be used to transmit supplementary navigational information using narrow-band techniques, on condition that no harmful interference is caused to radiobeacon stations operating in the radionavigation service. (WRC-97)', '[5.74]: Additional Allocation: in Region 1, the frequency band 285.3-285.7 kHz is also allocated to the maritime radionavigation service (other than radiobeacons) on a primary basis.']), (315000, 325001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Maritime Radionavigation (Radiobeacons) [5.73]'], ['[5.73]: The band 285-325 kHz (283.5-325 kHz in Region 1) in the maritime radionavigation service may be used to transmit supplementary navigational information using narrow-band techniques, on condition that no harmful interference is caused to radiobeacon stations operating in the radionavigation service. (WRC-97)', '[5.75]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Moldova, Kyrgyzstan, Tajikistan, Turkmenistan, Ukraine and the Black Sea areas of Romania, the allocation of the band 315-325 kHz to the maritime radionavigation service is on a primary basis under the condition that in the Baltic Sea area, the assignment of frequencies in this band to new stations in the maritime or aeronautical radionavigation services shall be subject to prior consultation between the administrations concerned. (WRC-07)']), (325000, 405001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], []), (405000, 415001): (False, False, False, False, False, ['Radionavigation [5.76]'], [], ['[5.76]: The frequency 410 kHz is designated for radio direction-finding in the maritime radionavigation service. The other radionavigation services to which the band 405-415 kHz is allocated shall not cause harmful interference to radio direction-finding in the band 406.5-413.5 kHz.']), (415000, 435001): (False, False, True, False, False, ['Maritime Mobile [5.79]', 'Aeronautical Radionavigation'], [], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.']), (435000, 472001): (False, False, True, False, False, ['Maritime Mobile [5.79]'], ['Aeronautical Radionavigation [5.77]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (472000, 479001): (True, False, True, False, False, ['Maritime Mobile [5.79]'], ['Amateur [5.80A]', 'Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.80A]: The maximum equivalent isotropically radiated power (e.i.r.p.) of stations in the amateur service using frequencies in the band 472-479 kHz shall not exceed 1 W. Administrations may increase this limit of e.i.r.p. to 5 W in portions of their territory which are at a distance of over 800 km from the borders of Algeria, Saudi Arabia, Azerbaijan, Bahrain, Belarus, China, Comoros, Djibouti, Egypt, United Arab Emirates, the Russian Federation, Iran (Islamic Republic of), Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Morocco, Mauritania, Oman, Uzbekistan, Qatar, Syrian Arab Republic, Kyrgyzstan, Somalia, Sudan, Tunisia, Ukraine and Yemen. In this frequency band, stations in the amateur service shall not cause harmful interference to, or claim protection from, stations of the aeronautical radionavigation service. (WRC-12)', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.80B]: The use of the frequency band 472-479 kHz in Algeria, Saudi Arabia, Azerbaijan, Bahrain, Belarus, China, Comoros, Djibouti, Egypt, United Arab Emirates, the Russian Federation, Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Mauritania, Oman, Uzbekistan, Qatar, Syrian Arab Republic, Kyrgyzstan, Somalia, Sudan, Tunisia and Yemen is limited to the maritime mobile and aeronautical radionavigation services. The amateur service shall not be used in the above-mentioned countries in this frequency band, and this should be taken into account by the countries authorizing such use. (WRC-12)', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (479000, 495001): (False, False, True, False, False, ['Maritime Mobile [5.79][5.79A]'], ['Aeronautical Radionavigation [5.77]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (495000, 505001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (505000, 526501): (False, False, True, False, False, ['Maritime Mobile [5.79][5.79A][5.84]', 'Aeronautical Radionavigation'], [], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.84]: The conditions for the use of the frequency 518 kHz by the maritime mobile service are prescribed in Articles 31 and 52. (WRC-07)']), (526500, 1606501): (False, False, False, True, False, ['Broadcasting'], [], ['[5.87]: Additional allocation: in Angola, Botswana, Lesotho, Malawi, Mozambique, Namibia, Niger and Swaziland, the band 526.5-535 kHz is also allocated to the mobile service on a secondary basis. (WRC-12)', '[5.87A]: Additional allocation: in Uzbekistan, the band 526.5-1 606.5 kHz is also allocated to the radionavigation service on a primary basis. Such use is subject to agreement obtained under No. 9.21 with administrations concerned and limited to ground-based radiobeacons in operation on 27 October 1997 until the end of their lifetime. (WRC-97)']), (1606500, 1625001): (False, True, True, False, False, ['Maritime Mobile [5.90]', 'Land Mobile'], [], ['[5.90]: In the band 1 605-1 705 kHz, in cases where a broadcasting station of Region 2 is concerned, the service area of the maritime mobile stations in Region 1 shall be limited to that provided by ground-wave propagation.', '[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.']), (1625000, 1635001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.93]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Kazakhstan, Latvia, Lithuania, Mongolia, Nigeria, Uzbekistan, Poland, Kyrgyzstan, Slovakia, Tajikistan, Chad, Turkmenistan and Ukraine, the frequency bands 1 625-1 635 kHz, 1 800-1 810 kHz and 2 160-2 170 kHz are also allocated to the fixed and land mobile services on a primary basis, subject to agreement obtained under No. 9.21. (WRC-15)']), (1635000, 1800001): (False, True, True, False, False, ['Maritime Mobile [5.90]', 'Land Mobile'], [], ['[5.90]: In the band 1 605-1 705 kHz, in cases where a broadcasting station of Region 2 is concerned, the service area of the maritime mobile stations in Region 1 shall be limited to that provided by ground-wave propagation.', '[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.96]: In Germany, Armenia, Austria, Azerbaijan, Belarus, Croatia, Denmark, Estonia, the Russian Federation, Finland, Georgia, Hungary, Ireland, Iceland, Israel, Kazakhstan, Latvia, Liechtenstein, Lithuania, Malta, Moldova, Norway, Uzbekistan, Poland, Kyrgyzstan, Slovakia, the Czech Rep., the United Kingdom, Sweden, Switzerland, Tajikistan, Turkmenistan and Ukraine, administrations may allocate up to 200 kHz to their amateur service in the frequency bands 1 715-1 800 kHz and 1 850-2 000 kHz. However, when allocating the frequency bands within this range to their amateur service, administrations shall, after prior consultation with administrations of neighbouring countries, take such steps as may be necessary to prevent harmful interference from their amateur service to the fixed and mobile services of other countries. The mean power of any amateur station shall not exceed 10 W. (WRC-15)']), (1800000, 1810001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.93]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Kazakhstan, Latvia, Lithuania, Mongolia, Nigeria, Uzbekistan, Poland, Kyrgyzstan, Slovakia, Tajikistan, Chad, Turkmenistan and Ukraine, the frequency bands 1 625-1 635 kHz, 1 800-1 810 kHz and 2 160-2 170 kHz are also allocated to the fixed and land mobile services on a primary basis, subject to agreement obtained under No. 9.21. (WRC-15)']), (1810000, 1850001): (True, False, False, False, False, ['Amateur'], [], ['[5.98]: Alternative allocation: in Armenia, Azerbaijan, Belarus, Belgium, Cameroon, Congo (Rep. of the), Denmark, Egypt, Eritrea, Spain, Ethiopia, the Russian Federation, Georgia, Greece, Italy, Kazakhstan, Lebanon, Lithuania, the Syrian Arab Republic, Kyrgyzstan, Somalia, Tajikistan, Tunisia, Turkmenistan and Turkey, the frequency band 1 810-1 830 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)', '[5.99]: Additional allocation: in Saudi Arabia, Austria, Iraq, Libya, Uzbekistan, Slovakia, Romania, Slovenia, Chad, and Togo, the band 1 810-1 830 kHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)', '[5.100]: In Region 1, the authorization to use the band 1 810-1 830 kHz by the amateur service in countries situated totally or partially north of 40° N shall be given only after consultation with the countries mentioned in Nos. 5.98 and 5.99 to define the necessary steps to be taken to prevent harmful interference between amateur stations and stations of other services operating in accordance with Nos. 5.98 and 5.99.']), (1850000, 2000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.96]: In Germany, Armenia, Austria, Azerbaijan, Belarus, Croatia, Denmark, Estonia, the Russian Federation, Finland, Georgia, Hungary, Ireland, Iceland, Israel, Kazakhstan, Latvia, Liechtenstein, Lithuania, Malta, Moldova, Norway, Uzbekistan, Poland, Kyrgyzstan, Slovakia, the Czech Rep., the United Kingdom, Sweden, Switzerland, Tajikistan, Turkmenistan and Ukraine, administrations may allocate up to 200 kHz to their amateur service in the frequency bands 1 715-1 800 kHz and 1 850-2 000 kHz. However, when allocating the frequency bands within this range to their amateur service, administrations shall, after prior consultation with administrations of neighbouring countries, take such steps as may be necessary to prevent harmful interference from their amateur service to the fixed and mobile services of other countries. The mean power of any amateur station shall not exceed 10 W. (WRC-15)', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.']), (2000000, 2025001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.']), (2025000, 2045001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], ['Meteorological Aids [5.104]'], ['[5.104]: In Region 1, the use of the band 2 025-2 045 kHz by the meteorological aids service is limited to oceanographic buoy stations.', '[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.']), (2045000, 2160001): (False, True, True, False, False, ['Maritime Mobile', 'Land Mobile'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.']), (2160000, 2170001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.93]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Kazakhstan, Latvia, Lithuania, Mongolia, Nigeria, Uzbekistan, Poland, Kyrgyzstan, Slovakia, Tajikistan, Chad, Turkmenistan and Ukraine, the frequency bands 1 625-1 635 kHz, 1 800-1 810 kHz and 2 160-2 170 kHz are also allocated to the fixed and land mobile services on a primary basis, subject to agreement obtained under No. 9.21. (WRC-15)', '[5.107]: Additional allocation: in Saudi Arabia, Eritrea, Ethiopia, Iraq, Libya, Somalia and Swaziland, the band 2 160-2 170 kHz is also allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis. The mean power of stations in these services shall not exceed 50 W. (WRC-12)']), (2170000, 2173501): (False, False, True, False, False, ['Maritime Mobile'], [], []), (2173500, 2190501): (False, False, True, False, False, ['Mobile (Distress And Calling)'], [], ['[5.108]: The carrier frequency 2 182 kHz is an international distress and calling frequency for radiotelephony. The conditions for the use of the band 2 173.5-2 190.5 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (2190500, 2194001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (2194000, 2300001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.', '[5.112]: Alternative allocation: in Denmark and Sri Lanka, the band 2 194-2 300 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2300000, 2498001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile (R)', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.']), (2498000, 2501001): (False, False, False, False, False, ['Standard Frequency And Time Signal (2 500 Khz)'], [], []), (2501000, 2502001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (2502000, 2625001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.', '[5.114]: Alternative allocation: in Denmark and Iraq, the band 2 502-2 625 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2625000, 2650001): (False, False, True, False, False, ['Maritime Mobile', 'Maritime Radionavigation'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.']), (2650000, 2850001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.', '[5.103]: In Region 1, in making assignments to stations in the fixed and mobile services in the bands 1 850-2 045 kHz, 2 194-2 498 kHz, 2 502-2 625 kHz and 2 650-2 850 kHz, administrations should bear in mind the special requirements of the maritime mobile service.']), (2850000, 3025001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (3025000, 3155001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (3155000, 3200001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field. ', "[5.117]: Alternative allocation: in Côte d'Ivoire, Denmark, Egypt, Liberia, Sri Lanka and Togo, the band 3 155-3 200 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)"]), (3200000, 3230001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile (R)', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field.']), (3230000, 3400001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field. ', '[5.118]: Additional allocation: in the United States, Mexico, Peru and Uruguay, the band 3 230-3 400 kHz is also allocated to the radiolocation service on a secondary basis. (WRC-03)']), (3400000, 3500001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (3500000, 3800001): (True, True, True, False, False, ['Amateur', 'Mobile Except Aeronautical Mobile'], [], ['[5.92]: Some countries of Region 1 use radiodetermination systems in the bands 1 606.5-1 625 kHz, 1 635-1 800 kHz, 1 850-2 160 kHz, 2 194-2 300 kHz, 2 502-2 850 kHz and 3 500-3 800 kHz, subject to agreement obtained under No. 9.21. The radiated mean power of these stations shall not exceed 50 W.']), (3800000, 3900001): (False, True, True, False, False, ['Aeronautical Mobile (Or)', 'Land Mobile'], [], []), (3900000, 3950001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], ['[5.123]: Additional allocation: in Botswana, Lesotho, Malawi, Mozambique, Namibia, South Africa, Swaziland, Zambia and Zimbabwe, the band 3 900-3 950 kHz is also allocated to the broadcasting service on a primary basis, subject to agreement obtained under No. 9.21.']), (3950000, 4000001): (False, True, False, True, False, ['Broadcasting'], [], []), (4000000, 4063000): (False, True, True, False, False, ['Maritime Mobile [5.127]'], [], ['[5.127]: The use of the band 4 000-4 063 kHz by the maritime mobile service is limited to ship stations using radiotelephony (see No. 52.220 and Appendix 17).', '[5.126]: In Region 3, the stations of those services to which the band 3 995-4 005 kHz is allocated may transmit standard frequency and time signals.']), (4062999, 4438001): (False, False, True, False, False, ['Maritime Mobile [5.79A][5.109][5.110][5.130][5.131][5.132]'], [], ['[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.130]: The conditions for the use of the carrier frequencies 4 125 kHz and 6 215 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.131]: The frequency 4 209.5 kHz is used exclusively for the transmission by coast stations of meteorological and navigational warnings and urgent information to ships by means of narrow-band direct-printing techniques. (WRC-97)', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.128]: Frequencies in the bands 4 063-4 123 kHz and 4 130-4 438 kHz may be used exceptionally by stations in the fixed service, communicating only within the boundary of the country in which they are located, with a mean power not exceeding 50 W, on condition that harmful interference is not caused to the maritime mobile service. In addition, in Afghanistan, Argentina, Armenia, Azerbaijan, Belarus, Botswana, Burkina Faso, the Central African Rep., China, the Russian Federation, Georgia, India, Kazakhstan, Mali, Niger, Pakistan, Kyrgyzstan, Tajikistan, Chad, Turkmenistan and Ukraine, in the bands 4 063-4 123 kHz, 4 130-4 133 kHz and 4 408-4 438 kHz, stations in the fixed service, with a mean power not exceeding 1 kW, can be operated on condition that they are situated at least 600 km from the coast and that harmful interference is not caused to the maritime mobile service. (WRC-12)']), (4438000, 4488001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.132B]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency band 4 438-4 488 kHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis. (WRC-15)']), (4488000, 4650001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], []), (4650000, 4700001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (4700000, 4750001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (4750000, 4850001): (False, True, True, True, False, ['Aeronautical Mobile (Or)', 'Land Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (4850000, 4995001): (False, True, True, True, False, ['Land Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (4995000, 5003001): (False, False, False, False, False, ['Standard Frequency And Time Signal (5 000 Khz)'], [], []), (5003000, 5005001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (5005000, 5060001): (False, True, False, True, False, ['Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (5060000, 5250001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile'], ['[5.133]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Latvia, Lithuania, Niger, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 5 130-5 250 kHz to the mobile, except aeronautical mobile, service is on a primary basis (see No. 5.33). (WRC-12)']), (5250000, 5275001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.133A]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency bands 5 250-5 275 kHz and 26 200-26 350 kHz are allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)']), (5275000, 5351501): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (5351500, 5366501): (True, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Amateur [5.133B]'], ['[5.133B]: Stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 15 W (e.i.r.p.). However, in Region 2 in Mexico, stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 20 W (e.i.r.p.). In the following Region 2 countries: Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bolivia, Brazil, Chile, Colombia, Costa Rica, Cuba, Dominican Republic, Dominica, El Salvador, Ecuador, Grenada, Guatemala, Guyana, Haiti, Honduras, Jamaica, Nicaragua, Panama, Paraguay, Peru, Saint Lucia, Saint Kitts and Nevis, Saint Vincent and the Grenadines, Suriname, Trinidad and Tobago, Uruguay, Venezuela, as well as the overseas territories of the Netherlands in Region 2, stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 25 W (e.i.r.p.). (WRC-15)']), (5366500, 5450001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (5450000, 5480001): (False, True, True, False, False, ['Aeronautical Mobile (Or)', 'Land Mobile'], [], []), (5480000, 5680001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (5680000, 5730001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (5730000, 5900001): (False, True, True, False, False, ['Land Mobile'], [], []), (5900000, 5950001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.136]: Additional allocation: frequencies in the band 5 900-5 950 kHz may be used by stations in the following services, communicating only within the boundary of the country in which they are located: fixed service (in all three Regions), land mobile service (in Region 1), mobile except aeronautical mobile (R) service (in Regions 2 and 3), on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (5950000, 6200001): (False, False, False, True, False, ['Broadcasting'], [], []), (6200000, 6525001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.130][5.132]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.130]: The conditions for the use of the carrier frequencies 4 125 kHz and 6 215 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.137]: On condition that harmful interference is not caused to the maritime mobile service, the bands 6 200-6 213.5 kHz and 6 220.5-6 525 kHz may be used exceptionally by stations in the fixed service, communicating only within the boundary of the country in which they are located, with a mean power not exceeding 50 W. At the time of notification of these frequencies, the attention of the Bureau will be drawn to the above conditions.']), (6525000, 6685001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (6685000, 6765001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (6765000, 7000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (7000000, 7100001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.140]: Additional allocation: in Angola, Iraq, Somalia and Togo, the frequency band 7 000-7 050 kHz is also allocated to the fixed service on a primary basis. (WRC-15)', '[5.141]: Alternative allocation: in Egypt, Eritrea, Ethiopia, Guinea, Libya, Madagascar and Niger, the band 7 000-7 050 kHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.141A]: Additional allocation: in Uzbekistan and Kyrgyzstan, the bands 7 000-7 100 kHz and 7 100-7 200 kHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-03)']), (7100000, 7200001): (True, False, False, False, False, ['Amateur'], [], ['[5.141A]: Additional allocation: in Uzbekistan and Kyrgyzstan, the bands 7 000-7 100 kHz and 7 100-7 200 kHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-03)', '[5.141B]: Additional allocation: in Algeria, Saudi Arabia, Australia, Bahrain, Botswana, Brunei Darussalam, China, Comoros, Korea (Rep. of), Diego Garcia, Djibouti, Egypt, United Arab Emirates, Eritrea, Guinea, Indonesia, Iran (Islamic Republic of), Japan, Jordan, Kuwait, Libya, Mali, Morocco, Mauritania, Niger, New Zealand, Oman, Papua New Guinea, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Tunisia, Viet Nam and Yemen, the frequency band 7 100-7 200 kHz is also allocated to the fixed and the mobile, except aeronautical mobile (R), services on a primary basis. (WRC-15)']), (7200000, 7300001): (False, False, False, True, False, ['Broadcasting'], [], []), (7300000, 7400001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.143]: Additional allocation: frequencies in the band 7 300-7 350 kHz may be used by stations in the fixed service and in the land mobile service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)', '[5.143A]: In Region 3, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed service on a primary basis and land mobile service on a secondary basis, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)', '[5.143B]: In Region 1, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed and land mobile services communicating only within the boundary of the country in which they are located on condition that harmful interference is not caused to the broadcasting service. The total radiated power of each station shall not exceed 24 dBW. (WRC-12)', '[5.143C]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Iran (Islamic Republic of), Jordan, Kuwait, Libya, Morocco, Mauritania, Niger, Oman, Qatar, the Syrian Arab Republic, Sudan, South Sudan, Tunisia and Yemen, the bands 7 350-7 400 kHz and 7 400-7 450 kHz are also allocated to the fixed service on a primary basis. (WRC-12)', '[5.143D]: In Region 2, frequencies in the band 7 350-7 400 kHz may be used by stations in the fixed service and in the land mobile service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)']), (7400000, 7450001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.143B]: In Region 1, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed and land mobile services communicating only within the boundary of the country in which they are located on condition that harmful interference is not caused to the broadcasting service. The total radiated power of each station shall not exceed 24 dBW. (WRC-12)', '[5.143C]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Iran (Islamic Republic of), Jordan, Kuwait, Libya, Morocco, Mauritania, Niger, Oman, Qatar, the Syrian Arab Republic, Sudan, South Sudan, Tunisia and Yemen, the bands 7 350-7 400 kHz and 7 400-7 450 kHz are also allocated to the fixed service on a primary basis. (WRC-12)']), (7450000, 8100001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.144]: In Region 3, the stations of those services to which the band 7 995-8 005 kHz is allocated may transmit standard frequency and time signals.']), (8100000, 8195001): (False, True, True, False, False, ['Maritime Mobile'], [], []), (8195000, 8815001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (8815000, 8965001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (8965000, 9040001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (9040000, 9305001): (False, True, False, False, False, [], [], []), (9305000, 9355001): (False, True, False, False, False, [], ['Radiolocation [5.145A]'], ['[5.145A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed service. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.145B]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency bands 9 305-9 355 kHz and 16 100-16 200 kHz are allocated to the fixed service on a primary basis. (WRC-15)']), (9355000, 9400001): (False, True, False, False, False, [], [], []), (9400000, 9500001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (9500000, 9900001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.147]: On condition that harmful interference is not caused to the broadcasting service, frequencies in the bands 9 775-9 900 kHz, 11 650-11 700 kHz and 11 975-12 050 kHz may be used by stations in the fixed service communicating only within the boundary of the country in which they are located, each station using a total radiated power not exceeding 24 dBW.']), (9900000, 9995001): (False, True, False, False, False, [], [], []), (9995000, 10003001): (False, False, False, False, False, ['Standard Frequency And Time Signal (10 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10003000, 10005001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10005000, 10100001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10100000, 10150001): (True, True, False, False, False, [], ['Amateur'], []), (10150000, 11175001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (11175000, 11275001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (11275000, 11400001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (11400000, 11600001): (False, True, False, False, False, [], [], []), (11600000, 11650001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (11650000, 12050001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.147]: On condition that harmful interference is not caused to the broadcasting service, frequencies in the bands 9 775-9 900 kHz, 11 650-11 700 kHz and 11 975-12 050 kHz may be used by stations in the fixed service communicating only within the boundary of the country in which they are located, each station using a total radiated power not exceeding 24 dBW.']), (12050000, 12100001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (12100000, 12230001): (False, True, False, False, False, [], [], []), (12230000, 13200001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)']), (13200000, 13260001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (13260000, 13360001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (13360000, 13410001): (False, True, False, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (13410000, 13450001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (13450000, 13550001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)', 'Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.149A]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency band 13 450-13 550 kHz is allocated to the fixed service on a primary basis and to the mobile, except aeronautical mobile (R), service on a secondary basis. (WRC-15)']), (13550000, 13570001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (13570000, 13600001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.151]: Additional allocation: frequencies in the bands 13 570-13 600 kHz and 13 800-13 870 kHz may be used by stations in the fixed service and in the mobile except aeronautical mobile (R) service, communicating only within the boundary of the country in which they are located, on the condition that harmful interference is not caused to the broadcasting service. When using frequencies in these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (13600000, 13800001): (False, False, False, True, False, ['Broadcasting'], [], []), (13800000, 13870001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.151]: Additional allocation: frequencies in the bands 13 570-13 600 kHz and 13 800-13 870 kHz may be used by stations in the fixed service and in the mobile except aeronautical mobile (R) service, communicating only within the boundary of the country in which they are located, on the condition that harmful interference is not caused to the broadcasting service. When using frequencies in these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (13870000, 14000001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (14000000, 14250001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (14250000, 14350001): (True, False, False, False, False, ['Amateur'], [], ['[5.152]: Additional allocation: in Armenia, Azerbaijan, China, Côte d’Ivoire, the Russian Federation, Georgia, Iran (Islamic Republic of), Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 14 250-14 350 kHz is also allocated to the fixed service on a primary basis. Stations of the fixed service shall not use a radiated power exceeding 24 dBW. (WRC-03)']), (14350000, 14990001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (14990000, 15005001): (False, False, False, False, False, ['Standard Frequency And Time Signal (15 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (15005000, 15010001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (15010000, 15100001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (15100000, 15600001): (False, False, False, True, False, ['Broadcasting'], [], []), (15600000, 15800001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (15800000, 16100001): (False, True, False, False, False, [], [], ['[5.153]: In Region 3, the stations of those services to which the band 15 995-16 005 kHz is allocated may transmit standard frequency and time signals.']), (16100000, 16200001): (False, True, False, False, False, [], ['Radiolocation [5.145A]'], ['[5.145A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed service. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.145B]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency bands 9 305-9 355 kHz and 16 100-16 200 kHz are allocated to the fixed service on a primary basis. (WRC-15)']), (16200000, 16360001): (False, True, False, False, False, [], [], []), (16360000, 17410001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)']), (17410000, 17480001): (False, True, False, False, False, [], [], []), (17480000, 17550001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (17550000, 17900001): (False, False, False, True, False, ['Broadcasting'], [], []), (17900000, 17970001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (17970000, 18030001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (18030000, 18052001): (False, True, False, False, False, [], [], []), (18052000, 18068001): (False, True, False, False, False, [], ['Space Research'], []), (18068000, 18168001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.154]: Additional allocation: in Armenia, Azerbaijan, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 18 068-18 168 kHz is also allocated to the fixed service on a primary basis for use within their boundaries, with a peak envelope power not exceeding 1 kW. (WRC-03)']), (18168000, 18780001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile'], []), (18780000, 18900001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (18900000, 19020001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (19020000, 19680001): (False, True, False, False, False, [], [], []), (19680000, 19800001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).']), (19800000, 19990001): (False, True, False, False, False, [], [], []), (19990000, 19995001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (19995000, 20010001): (False, False, False, False, False, ['Standard Frequency And Time Signal (20 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (20010000, 21000001): (False, True, True, False, False, [], [], []), (21000000, 21450001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (21450000, 21850001): (False, False, False, True, False, ['Broadcasting'], [], []), (21850000, 21870001): (False, True, False, False, False, ['Fixed [5.155A]'], [], ['[5.155A]: In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Slovakia, Tajikistan, Turkmenistan and Ukraine, the use of the band 21 850-21 870 kHz by the fixed service is limited to provision of services related to aircraft flight safety. (WRC-07)', '[5.155]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Slovakia, Tajikistan, Turkmenistan and Ukraine, the band 21 850-21 870 kHz is also allocated to the aeronautical mobile (R) service on a primary basis. (WRC-07)']), (21870000, 21924001): (False, True, False, False, False, ['Fixed [5.155B]'], [], ['[5.155B]: The band 21 870-21 924 kHz is used by the fixed service for provision of services related to aircraft flight safety.']), (21924000, 22000001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (22000000, 22855001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (22855000, 23000001): (False, True, False, False, False, [], [], ['[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (23000000, 23200001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], ['[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (23200000, 23350001): (False, True, True, False, False, ['Fixed [5.156A]', 'Aeronautical Mobile (Or)'], [], ['[5.156A]: The use of the band 23 200-23 350 kHz by the fixed service is limited to provision of services related to aircraft flight safety.']), (23350000, 24000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.157]'], [], ['[5.157]: The use of the band 23 350-24 000 kHz by the maritime mobile service is limited to inter-ship radiotelegraphy.']), (24000000, 24450001): (False, True, True, False, False, ['Land Mobile'], [], []), (24450000, 24600001): (False, True, True, False, False, ['Land Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.158]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency band 24 450-24 600 kHz is allocated to the fixed and land mobile services on a primary basis. (WRC-15)']), (24600000, 24890001): (False, True, True, False, False, ['Land Mobile'], [], []), (24890000, 24990001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (24990000, 25005001): (False, False, False, False, False, ['Standard Frequency And Time Signal (25 000 Khz)'], [], []), (25005000, 25010001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (25010000, 25070001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (25070000, 25210001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (25210000, 25550001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (25550000, 25670001): (False, False, False, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (25670000, 26100001): (False, False, False, True, False, ['Broadcasting'], [], []), (26100000, 26175001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).']), (26175000, 26200001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (26200000, 26350001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.133A]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency bands 5 250-5 275 kHz and 26 200-26 350 kHz are allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)']), (26350000, 27500001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (27500000, 28000001): (False, True, True, False, False, ['Meteorological Aids'], [], []), (28000000, 29700001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (29700000, 30005001): (False, True, True, False, False, [], [], []), (30005000, 30010001): (False, True, True, False, False, ['Space Operation (Satellite Identification)', 'Space Research'], [], []), (30010000, 37500001): (False, True, True, False, False, [], [], []), (37500000, 38250001): (False, True, True, False, False, [], ['Radio Astronomy'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (38250000, 39000001): (False, True, True, False, False, [], [], []), (39000000, 39500001): (False, True, True, False, False, [], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.159]: Alternative allocation: in Armenia, Belarus, Moldova, Uzbekistan and Kyrgyzstan, the frequency band 39-39.5 MHz is allocated to the fixed and mobile services on a primary basis. (WRC-15)']), (39500000, 39986001): (False, True, True, False, False, [], [], []), (39986000, 40020001): (False, True, True, False, False, [], ['Space Research'], []), (40020000, 40980001): (False, True, True, False, False, [], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (40980000, 41015001): (False, True, True, False, False, [], ['Space Research'], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.']), (41015000, 42000001): (False, True, True, False, False, [], [], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.', '[5.161A]: Additional allocation: in Korea (Rep. of) and the United States, the frequency bands 41.015-41.665 MHz and 43.35-44 MHz are also allocated to the radiolocation service on a primary basis. Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (42000000, 42500001): (False, True, True, False, False, [], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)', '[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161B]: Alternative allocation: in Albania, Germany, Armenia, Austria, Belarus, Belgium, Bosnia and Herzegovina, Cyprus, Vatican, Croatia, Denmark, Spain, Estonia, Finland, France, Greece, Hungary, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Rep. of Macedonia, Liechtenstein, Lithuania, Luxembourg, Malta, Moldova, Monaco, Montenegro, Norway, Uzbekistan, Netherlands, Portugal, Kyrgyzstan, Slovakia, Czech Rep., Romania, United Kingdom, San Marino, Slovenia, Sweden, Switzerland, Turkey and Ukraine, the frequency band 42-42.5 MHz is allocated to the fixed and mobile services on a primary basis. (WRC-15)']), (42500000, 44000001): (False, True, True, False, False, [], [], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.', '[5.161A]: Additional allocation: in Korea (Rep. of) and the United States, the frequency bands 41.015-41.665 MHz and 43.35-44 MHz are also allocated to the radiolocation service on a primary basis. Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (44000000, 47000001): (False, True, True, False, False, [], [], ['[5.162]: Additional allocation: in Australia, the band 44-47 MHz is also allocated to the broadcasting service on a primary basis. (WRC-12)', '[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)']), (47000000, 68000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)', '[5.163]: Additional allocation: in Armenia, Belarus, the Russian Federation, Georgia, Hungary, Kazakhstan, Latvia, Moldova, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 47-48.5 MHz and 56.5-58 MHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-12)', "[5.164]: Additional allocation: in Albania, Algeria, Germany, Austria, Belgium, Bosnia and Herzegovina, Botswana, Bulgaria, Côte d'Ivoire, Croatia, Denmark, Spain, Estonia, Finland, France, Gabon, Greece, Ireland, Israel, Italy, Jordan, Lebanon, Libya, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Malta, Morocco, Mauritania, Monaco, Montenegro, Nigeria, Norway, the Netherlands, Poland, Syrian Arab Republic, Slovakia, Czech Rep., Romania, the United Kingdom, Serbia, Slovenia, Sweden, Switzerland, Swaziland, Chad, Togo, Tunisia and Turkey, the frequency band 47-68 MHz, in South Africa the frequency band 47-50 MHz, and in Latvia the frequency band 48.5-56.5 MHz, are also allocated to the land mobile service on a primary basis. However, stations of the land mobile service in the countries mentioned in connection with each frequency band referred to in this footnote shall not cause harmful interference to, or claim protection from, existing or planned broadcasting stations of countries other than those mentioned in connection with the frequency band. (WRC-15)", '[5.165]: Additional allocation: in Angola, Cameroon, Congo (Rep. of the), Madagascar, Mozambique, Niger, Somalia, Sudan, South Sudan, Tanzania and Chad, the band 47-68 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)', '[5.169]: Alternative allocation: in Botswana, Lesotho, Malawi, Namibia, the Dem. Rep. of the Congo, Rwanda, South Africa, Swaziland, Zambia and Zimbabwe, the band 50-54 MHz is allocated to the amateur service on a primary basis. In Senegal, the band 50-51 MHz is allocated to the amateur service on a primary basis. (WRC-12)', '[5.171]: Additional allocation: in Botswana, Lesotho, Malawi, Mali, Namibia, Dem. Rep. of the Congo, Rwanda, South Africa, Swaziland, Zambia and Zimbabwe, the band 54-68 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (68000000, 74800001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.175]: Alternative allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 68-73 MHz and 76-87.5 MHz are allocated to the broadcasting service on a primary basis. In Latvia and Lithuania, the bands 68-73 MHz and 76-87.5 MHz are allocated to the broadcasting and mobile, except aeronautical mobile, services on a primary basis. The services to which these bands are allocated in other countries and the broadcasting service in the countries listed above are subject to agreements with the neighbouring countries concerned. (WRC-07)', '[5.177]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 73-74 MHz is also allocated to the broadcasting service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-07)', '[5.179]: Additional allocation: in Armenia, Azerbaijan, Belarus, China, the Russian Federation, Georgia, Kazakhstan, Lithuania, Mongolia, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 74.6-74.8 MHz and 75.2-75.4 MHz are also allocated to the aeronautical radionavigation service, on a primary basis, for ground-based transmitters only. (WRC-12)']), (74800000, 75200001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], ['[5.180]: The frequency 75 MHz is assigned to marker beacons. Administrations shall refrain from assigning frequencies close to the limits of the guardband to stations of other services which, because of their power or geographical position, might cause harmful interference or otherwise place a constraint on marker beacons.Every effort should be made to improve further the characteristics of airborne receivers and to limit the power of transmitting stations close to the limits 74.8 MHz and 75.2 MHz. ', '[5.181]: Additional allocation: in Egypt, Israel and the Syrian Arab Republic, the band 74.8-75.2 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedure invoked under No. 9.21. (WRC-03)']), (75200000, 87500001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.175]: Alternative allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 68-73 MHz and 76-87.5 MHz are allocated to the broadcasting service on a primary basis. In Latvia and Lithuania, the bands 68-73 MHz and 76-87.5 MHz are allocated to the broadcasting and mobile, except aeronautical mobile, services on a primary basis. The services to which these bands are allocated in other countries and the broadcasting service in the countries listed above are subject to agreements with the neighbouring countries concerned. (WRC-07)', '[5.179]: Additional allocation: in Armenia, Azerbaijan, Belarus, China, the Russian Federation, Georgia, Kazakhstan, Lithuania, Mongolia, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 74.6-74.8 MHz and 75.2-75.4 MHz are also allocated to the aeronautical radionavigation service, on a primary basis, for ground-based transmitters only. (WRC-12)', '[5.187]: Alternative allocation: in Albania, the band 81-87.5 MHz is allocated to the broadcasting service on a primary basis and used in accordance with the decisions contained in the Final Acts of the Special Regional Conference (Geneva, 1960).']), (87500000, 100000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.190]: Additional allocation: in Monaco, the band 87.5-88 MHz is also allocated to the land mobile service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-97)']), (100000000, 108000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.192]: Additional allocation: in China and Korea (Rep. of), the band 100-108 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-97)', '[5.194]: Additional allocation: in Azerbaijan, Kyrgyzstan, Somalia and Turkmenistan, the band 104-108 MHz is also allocated to the mobile, except aeronautical mobile (R), service on a secondary basis. (WRC-07)']), (108000000, 117975001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], ['[5.197]: Additional allocation: in the Syrian Arab Republic, the band 108-111.975 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedures invoked under No. 9.21. (WRC-12)', '[5.197A]: Additional allocation: the band 108-117.975 MHz is also allocated on a primary basis to the aeronautical mobile (R) service, limited to systems operating in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 413 (Rev.WRC-07)*. The use of the band 108-112 MHz by the aeronautical mobile (R) service shall be limited to systems composed of ground-based transmitters and associated receivers that provide navigational information in support of air navigation functions in accordance with recognized international aeronautical standards. (WRC-07)']), (117975000, 137000001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.200]: In the band 117.975-137 MHz, the frequency 121.5 MHz is the aeronautical emergency frequency and, where required, the frequency 123.1 MHz is the aeronautical frequency auxiliary to 121.5 MHz. Mobile stations of the maritime mobile service may communicate on these frequencies under the conditions laid down in Article 31 for distress and safety purposes with stations of the aeronautical mobile service. (WRC-07)', '[5.201]: Additional allocation: in Armenia, Azerbaijan, Belarus, Bulgaria, Estonia, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq (Republic of), Japan, Kazakhstan, Moldova, Mongolia, Mozambique, Uzbekistan, Papua New Guinea, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the frequency band 132-136 MHz is also allocated to the aeronautical mobile (OR) service on a primary basis. In assigning frequencies to stations of the aeronautical mobile (OR) service, the administration shall take account of the frequencies assigned to stations in the aeronautical mobile (R) service. (WRC-15)', '[5.202]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Belarus, Bulgaria, the United Arab Emirates, the Russian Federation, Georgia, Iran (Islamic Republic of), Jordan, Oman, Uzbekistan, Poland, the Syrian Arab Republic, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the frequency band 136-137 MHz is also allocated to the aeronautical mobile (OR) service on a primary basis. In assigning frequencies to stations of the aeronautical mobile (OR) service, the administration shall take account of the frequencies assigned to stations in the aeronautical mobile (R) service. (WRC-15)']), (137000000, 137025001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137025000, 137175001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137175000, 137825001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137825000, 138000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (138000000, 143600001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], ['[5.210]: Additional allocation: in Italy, the Czech Rep. and the United Kingdom, the bands 138-143.6 MHz and 143.65-144 MHz are also allocated to the space research service (space-to-Earth) on a secondary basis. (WRC-07)', '[5.211]: Additional allocation: in Germany, Saudi Arabia, Austria, Bahrain, Belgium, Denmark, the United Arab Emirates, Spain, Finland, Greece, Guinea, Ireland, Israel, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lebanon, Liechtenstein, Luxembourg, Mali, Malta, Montenegro, Norway, the Netherlands, Qatar, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sweden, Switzerland, Tanzania, Tunisia and Turkey, the frequency band 138-144 MHz is also allocated to the maritime mobile and land mobile services on a primary basis. (WRC-15)', '[5.212]: Alternative allocation: in Angola, Botswana, Cameroon, the Central African Rep., Congo (Rep. of the), Gabon, Gambia, Ghana, Guinea, Iraq, Jordan, Lesotho, Liberia, Libya, Malawi, Mozambique, Namibia, Niger, Oman, Uganda, Syrian Arab Republic, the Dem. Rep. of the Congo, Rwanda, Sierra Leone, South Africa, Swaziland, Chad, Togo, Zambia and Zimbabwe, the band 138-144 MHz is allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.214]: Additional allocation: in Eritrea, Ethiopia, Kenya, The Former Yugoslav Republic of Macedonia, Montenegro, Serbia, Somalia, Sudan, South Sudan and Tanzania, the band 138-144 MHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (143600000, 143650001): (False, False, True, False, False, ['Aeronautical Mobile (Or)', 'Space Research (Space-To-Earth)'], [], ['[5.211]: Additional allocation: in Germany, Saudi Arabia, Austria, Bahrain, Belgium, Denmark, the United Arab Emirates, Spain, Finland, Greece, Guinea, Ireland, Israel, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lebanon, Liechtenstein, Luxembourg, Mali, Malta, Montenegro, Norway, the Netherlands, Qatar, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sweden, Switzerland, Tanzania, Tunisia and Turkey, the frequency band 138-144 MHz is also allocated to the maritime mobile and land mobile services on a primary basis. (WRC-15)', '[5.212]: Alternative allocation: in Angola, Botswana, Cameroon, the Central African Rep., Congo (Rep. of the), Gabon, Gambia, Ghana, Guinea, Iraq, Jordan, Lesotho, Liberia, Libya, Malawi, Mozambique, Namibia, Niger, Oman, Uganda, Syrian Arab Republic, the Dem. Rep. of the Congo, Rwanda, Sierra Leone, South Africa, Swaziland, Chad, Togo, Zambia and Zimbabwe, the band 138-144 MHz is allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.214]: Additional allocation: in Eritrea, Ethiopia, Kenya, The Former Yugoslav Republic of Macedonia, Montenegro, Serbia, Somalia, Sudan, South Sudan and Tanzania, the band 138-144 MHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (143650000, 144000001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], ['[5.210]: Additional allocation: in Italy, the Czech Rep. and the United Kingdom, the bands 138-143.6 MHz and 143.65-144 MHz are also allocated to the space research service (space-to-Earth) on a secondary basis. (WRC-07)', '[5.211]: Additional allocation: in Germany, Saudi Arabia, Austria, Bahrain, Belgium, Denmark, the United Arab Emirates, Spain, Finland, Greece, Guinea, Ireland, Israel, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lebanon, Liechtenstein, Luxembourg, Mali, Malta, Montenegro, Norway, the Netherlands, Qatar, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sweden, Switzerland, Tanzania, Tunisia and Turkey, the frequency band 138-144 MHz is also allocated to the maritime mobile and land mobile services on a primary basis. (WRC-15)', '[5.212]: Alternative allocation: in Angola, Botswana, Cameroon, the Central African Rep., Congo (Rep. of the), Gabon, Gambia, Ghana, Guinea, Iraq, Jordan, Lesotho, Liberia, Libya, Malawi, Mozambique, Namibia, Niger, Oman, Uganda, Syrian Arab Republic, the Dem. Rep. of the Congo, Rwanda, Sierra Leone, South Africa, Swaziland, Chad, Togo, Zambia and Zimbabwe, the band 138-144 MHz is allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.214]: Additional allocation: in Eritrea, Ethiopia, Kenya, The Former Yugoslav Republic of Macedonia, Montenegro, Serbia, Somalia, Sudan, South Sudan and Tanzania, the band 138-144 MHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (144000000, 146000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.216]: Additional allocation: in China, the band 144-146 MHz is also allocated to the aeronautical mobile (OR) service on a secondary basis.']), (146000000, 148000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], []), (148000000, 149900001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Earth-To-Space) [5.209]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.218]: Additional allocation: the band 148-149.9 MHz is also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. The bandwidth of any individual transmission shall not exceed ± 25 kHz.', '[5.219]: The use of the band 148-149.9 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. The mobile-satellite service shall not constrain the development and use of the fixed, mobile and space operation services in the band 148-149.9 MHz.', "[5.221]: Stations of the mobile-satellite service in the frequency band 148-149.9 MHz shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations in the following countries: Albania, Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Bangladesh, Barbados, Belarus, Belgium, Benin, Bosnia and Herzegovina, Botswana, Brunei Darussalam, Bulgaria, Cameroon, China, Cyprus, Congo (Rep. of the), Korea (Rep. of), Côte d'Ivoire, Croatia, Cuba, Denmark, Djibouti, Egypt, the United Arab Emirates, Eritrea, Spain, Estonia, Ethiopia, the Russian Federation, Finland, France, Gabon, Georgia, Ghana, Greece, Guinea, Guinea Bissau, Hungary, India, Iran (Islamic Republic of), Ireland, Iceland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Libya, Liechtenstein, Lithuania, Luxembourg, Malaysia, Mali, Malta, Mauritania, Moldova, Mongolia, Montenegro, Mozambique, Namibia, Norway, New Zealand, Oman, Uganda, Uzbekistan, Pakistan, Panama, Papua New Guinea, Paraguay, the Netherlands, the Philippines, Poland, Portugal, Qatar, the Syrian Arab Republic, Kyrgyzstan, Dem. People’s Rep. of Korea, Slovakia, Romania, the United Kingdom, Senegal, Serbia, Sierra Leone, Singapore, Slovenia, Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Swaziland, Tanzania, Chad, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, Ukraine, Viet Nam, Yemen, Zambia and Zimbabwe. (WRC-15)"]), (149900000, 150050001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209][5.220]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.220]: The use of the frequency bands 149.9-150.05 MHz and 399.9-400.05 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-15)']), (150050000, 153000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (153000000, 154000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], ['Meteorological Aids'], []), (154000000, 156488001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.225A]: Additional allocation: in Algeria, Armenia, Azerbaijan, Belarus, China, the Russian Federation, France, Iran (Islamic Republic of), Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan, Ukraine and Viet Nam, the frequency band 154-156 MHz is also allocated to the radiolocation service on a primary basis. The usage of the frequency band 154-156 MHz by the radiolocation service shall be limited to space-object detection systems operating from terrestrial locations. The operation of stations in the radiolocation service in the frequency band 154-156 MHz shall be subject to agreement obtained under No. 9.21. For the identification of potentially affected administrations in Region 1, the instantaneous field-strength value of 12 dB(μV/m) for 10% of the time produced at 10 m above ground level in the 25 kHz reference frequency band at the border of the territory of any other administration shall be used. For the identification of potentially affected administrations in Region 3, the interference-to-noise ratio (I/N) value of −6 dB (N = −161 dBW/4 kHz), or −10 dB for applications with greater protection requirements, such as public protection and disaster relief (PPDR (N = −161 dBW/4 kHz)), for 1% of the time produced at 60 m above ground level at the border of the territory of any other administration shall be used. In the frequency bands 156.7625-156.8375 MHz, 156.5125-156.5375 MHz, 161.9625-161.9875 MHz, 162.0125-162.0375 MHz, out-of-band e.i.r.p. of space surveillance radars shall not exceed −16 dBW. Frequency assignments to the radiolocation service under this allocation in Ukraine shall not be used without the agreement of Moldova. (WRC-12)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156488000, 156563001): (False, False, True, False, False, ['Maritime Mobile (Distress And Calling Via Dsc)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.227]: Additional allocation: the bands 156.4875-156.5125 MHz and 156.5375-156.5625 MHz are also allocated to the fixed and land mobile services on a primary basis. The use of these bands by the fixed and land mobile services shall not cause harmful interference to nor claim protection from the maritime mobile VHF radiocommunication service. (WRC-07)']), (156563000, 156763001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156763000, 156787001): (False, False, True, False, False, ['Maritime Mobile'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228]: The use of the frequency bands 156.7625-156.7875 MHz and 156.8125-156.8375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system (AIS) emissions of long-range AIS broadcast messages (Message 27, see the most recent version of Recommendation ITU-R M.1371). With the exception of AIS emissions, emissions in these frequency bands by systems operating in the maritime mobile service for communications shall not exceed 1 W. (WRC-12)']), (156787000, 156813001): (False, False, True, False, False, ['Maritime Mobile (Distress And Calling)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156813000, 156838001): (False, False, True, False, False, ['Maritime Mobile'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228]: The use of the frequency bands 156.7625-156.7875 MHz and 156.8125-156.8375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system (AIS) emissions of long-range AIS broadcast messages (Message 27, see the most recent version of Recommendation ITU-R M.1371). With the exception of AIS emissions, emissions in these frequency bands by systems operating in the maritime mobile service for communications shall not exceed 1 W. (WRC-12)']), (156838000, 161938001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161938000, 161963001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Maritime Mobile-Satellite (Earth-To-Space) [5.228Aa]'], ['[5.228AA]: The use of the frequency bands 161.9375-161.9625 MHz and 161.9875-162.0125 MHz by the maritime mobile-satellite (Earth-to-space) service is limited to the systems which operate in accordance with Appendix 18. (WRC-15)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161963000, 161988001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.228F]'], ['[5.228F]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system emissions from stations operating in the maritime mobile service. (WRC-12)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228A]: The frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz may be used by aircraft stations for the purpose of search and rescue operations and other safety-related communications. (WRC-12)', '[5.228B]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the fixed and land mobile services shall not cause harmful interference to, or claim protection from, the maritime mobile service. (WRC-12)']), (161988000, 162013001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Maritime Mobile-Satellite (Earth-To-Space) [5.228Aa]'], ['[5.228AA]: The use of the frequency bands 161.9375-161.9625 MHz and 161.9875-162.0125 MHz by the maritime mobile-satellite (Earth-to-space) service is limited to the systems which operate in accordance with Appendix 18. (WRC-15)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.229]: Alternative allocation: in Morocco, the band 162-174 MHz is allocated to the broadcasting service on a primary basis. The use of this band shall be subject to agreement with administrations having services, operating or planned, in accordance with the Table which are likely to be affected. Stations in existence on 1 January 1981, with their technical characteristics as of that date, are not affected by such agreement.']), (162013000, 162037001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.228F]'], ['[5.228F]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system emissions from stations operating in the maritime mobile service. (WRC-12)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228A]: The frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz may be used by aircraft stations for the purpose of search and rescue operations and other safety-related communications. (WRC-12)', '[5.228B]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the fixed and land mobile services shall not cause harmful interference to, or claim protection from, the maritime mobile service. (WRC-12)', '[5.229]: Alternative allocation: in Morocco, the band 162-174 MHz is allocated to the broadcasting service on a primary basis. The use of this band shall be subject to agreement with administrations having services, operating or planned, in accordance with the Table which are likely to be affected. Stations in existence on 1 January 1981, with their technical characteristics as of that date, are not affected by such agreement.']), (162037000, 174000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.229]: Alternative allocation: in Morocco, the band 162-174 MHz is allocated to the broadcasting service on a primary basis. The use of this band shall be subject to agreement with administrations having services, operating or planned, in accordance with the Table which are likely to be affected. Stations in existence on 1 January 1981, with their technical characteristics as of that date, are not affected by such agreement.']), (174000000, 223000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.235]: Additional allocation: in Germany, Austria, Belgium, Denmark, Spain, Finland, France, Israel, Italy, Liechtenstein, Malta, Monaco, Norway, the Netherlands, the United Kingdom, Sweden and Switzerland, the band 174-223 MHz is also allocated to the land mobile service on a primary basis. However, the stations of the land mobile service shall not cause harmful interference to, or claim protection from, broadcasting stations, existing or planned, in countries other than those listed in this footnote.', '[5.237]: Additional allocation: in Congo (Rep. of the), Egypt, Eritrea, Ethiopia, Gambia, Guinea, Libya, Mali, Sierra Leone, Somalia and Chad, the band 174-223 MHz is also allocated to the fixed and mobile services on a secondary basis. (WRC-12)', '[5.243]: Additional allocation: in Somalia, the band 216-225 MHz is also allocated to the aeronautical radionavigation service on a primary basis, subject to not causing harmful interference to existing or planned broadcasting services in other countries.']), (223000000, 230000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.243]: Additional allocation: in Somalia, the band 216-225 MHz is also allocated to the aeronautical radionavigation service on a primary basis, subject to not causing harmful interference to existing or planned broadcasting services in other countries.', '[5.246]: Alternative allocation: in Spain, France, Israel and Monaco, the band 223-230 MHz is allocated to the broadcasting and land mobile services on a primary basis (see No. 5.33) on the basis that, in the preparation of frequency plans, the broadcasting service shall have prior choice of frequencies; and allocated to the fixed and mobile, except land mobile, services on a secondary basis. However, the stations of the land mobile service shall not cause harmful interference to, or claim protection from, existing or planned broadcasting stations in Morocco and Algeria.', '[5.247]: Additional allocation: in Saudi Arabia, Bahrain, the United Arab Emirates, Jordan, Oman, Qatar and Syrian Arab Republic, the band 223-235 MHz is also allocated to the aeronautical radionavigation service on a primary basis.']), (230000000, 235000001): (False, True, True, False, False, [], [], ['[5.247]: Additional allocation: in Saudi Arabia, Bahrain, the United Arab Emirates, Jordan, Oman, Qatar and Syrian Arab Republic, the band 223-235 MHz is also allocated to the aeronautical radionavigation service on a primary basis.', '[5.251]: Additional allocation: in Nigeria, the band 230-235 MHz is also allocated to the aeronautical radionavigation service on a primary basis, subject to agreement obtained under No. 9.21.', '[5.252]: Alternative allocation: in Botswana, Lesotho, Malawi, Mozambique, Namibia, South Africa, Swaziland, Zambia and Zimbabwe, the bands 230-238 MHz and 246-254 MHz are allocated to the broadcasting service on a primary basis, subject to agreement obtained under No. 9.21.']), (235000000, 267000001): (False, True, True, False, False, [], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.252]: Alternative allocation: in Botswana, Lesotho, Malawi, Mozambique, Namibia, South Africa, Swaziland, Zambia and Zimbabwe, the bands 230-238 MHz and 246-254 MHz are allocated to the broadcasting service on a primary basis, subject to agreement obtained under No. 9.21.', '[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.256]: The frequency 243 MHz is the frequency in this band for use by survival craft stations and equipment used for survival purposes. (WRC-07)', '[5.256A]: Additional allocation: in China, the Russian Federation and Kazakhstan, the frequency band 258-261 MHz is also allocated to the space research service (Earth-to-space) and space operation service (Earth-to-space) on a primary basis. Stations in the space research service (Earth-to-space) and space operation service (Earth-to-space) shall not cause harmful interference to, or claim protection from, or constrain the use and development of, the mobile service systems and mobile-satellite service systems operating in the frequency band. Stations in space research service (Earth-to-space) and space operation service (Earth-to-space) shall not constrain the future development of fixed service systems of other countries. (WRC-15)']), (267000000, 272000001): (False, True, True, False, False, [], ['Space Operation (Space-To-Earth)'], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.257]: The band 267-272 MHz may be used by administrations for space telemetry in their countries on a primary basis, subject to agreement obtained under No. 9.21.']), (272000000, 273000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)'], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (273000000, 312000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (312000000, 315000001): (False, True, True, False, False, [], ['Mobile-Satellite (Earth-To-Space) [5.254][5.255]'], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.255]: The bands 312-315 MHz (Earth-to-space) and 387-390 MHz (space-to-Earth) in the mobile-satellite service may also be used by non-geostationary-satellite systems. Such use is subject to coordination under No. 9.11A.']), (315000000, 322000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (322000000, 328600001): (False, True, True, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (328600000, 335400001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.258]'], [], ['[5.258]: The use of the band 328.6-335.4 MHz by the aeronautical radionavigation service is limited to Instrument Landing Systems (glide path).', '[5.259]: Additional allocation: in Egypt and the Syrian Arab Republic, the band 328.6-335.4 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedure invoked under No. 9.21. (WRC-12)']), (335400000, 387000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (387000000, 390000001): (False, True, True, False, False, [], ['Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.254][5.255]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.255]: The bands 312-315 MHz (Earth-to-space) and 387-390 MHz (space-to-Earth) in the mobile-satellite service may also be used by non-geostationary-satellite systems. Such use is subject to coordination under No. 9.11A.']), (390000000, 399900001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (399900000, 400050001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209][5.220]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.220]: The use of the frequency bands 149.9-150.05 MHz and 399.9-400.05 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-15)']), (400050000, 400150001): (False, False, False, False, True, ['Standard Frequency And Time Signal- Satellite (400.1 Mhz)'], [], ['[5.261]: Emissions shall be confined in a band of ± 25 kHz about the standard frequency 400.1 MHz.', '[5.262]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Botswana, Colombia, Cuba, Egypt, the United Arab Emirates, Ecuador, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Liberia, Malaysia, Moldova, Oman, Uzbekistan, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Kyrgyzstan, Singapore, Somalia, Tajikistan, Chad, Turkmenistan and Ukraine, the band 400.05-401 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (400150000, 401000001): (False, False, False, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth) [5.263]'], ['Space Operation (Space-To-Earth)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.263]: The band 400.15-401 MHz is also allocated to the space research service in the space-to-space direction for communications with manned space vehicles. In this application, the space research service will not be regarded as a safety service.', '[5.262]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Botswana, Colombia, Cuba, Egypt, the United Arab Emirates, Ecuador, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Liberia, Malaysia, Moldova, Oman, Uzbekistan, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Kyrgyzstan, Singapore, Somalia, Tajikistan, Chad, Turkmenistan and Ukraine, the band 400.05-401 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.264]: The use of the band 400.15-401 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. The power flux-density limit indicated in Annex 1 of Appendix 5 shall apply until such time as a competent world radiocommunication conference revises it.']), (401000000, 402000001): (False, True, True, False, False, ['Meteorological Aids', 'Space Operation (Space-To-Earth)', 'Earth Exploration-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)'], ['Mobile Except Aeronautical Mobile'], []), (402000000, 403000001): (False, True, True, False, False, ['Meteorological Aids', 'Earth Exploration-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)'], ['Mobile Except Aeronautical Mobile'], []), (403000000, 406000001): (False, True, True, False, False, ['Meteorological Aids'], ['Mobile Except Aeronautical Mobile'], ['[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)']), (406000000, 406100001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space)'], [], ['[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)', '[5.266]: The use of the band 406-406.1 MHz by the mobile-satellite service is limited to low power satellite emergency position-indicating radiobeacons (see also Article 31). (WRC-07)', '[5.267]: Any emission capable of causing harmful interference to the authorized uses of the band 406-406.1 MHz is prohibited.']), (406100000, 410000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)']), (410000000, 420000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Space) [5.268]'], [], ['[5.268]: Use of the frequency band 410-420 MHz by the space research service is limited to space-to-space communication links with an orbiting, manned space vehicle. The power flux-density at the surface of the Earth produced by emissions from transmitting stations of the space research service (space-to-space) in the frequency band 410-420 MHz shall not exceed −153 dB(W/m2) for 0° £ d £ 5°, −153 + 0.077 (d − 5) dB(W/m2) for 5° £ d £ 70° and −148 dB(W/m2) for 70° £ d £ 90°, where d is the angle of arrival of the radio-frequency wave and the reference bandwidth is 4 kHz. In this frequency band, stations of the space research service (space-to-space) shall not claim protection from, nor constrain the use and development of, stations of the fixed and mobile services. No. 4.10 does not apply. (WRC-15)']), (420000000, 430000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.269]: Different category of service: in Australia, the United States, India, Japan and the United Kingdom, the allocation of the bands 420-430 MHz and 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.270]: Additional allocation: in Australia, the United States, Jamaica and the Philippines, the bands 420-430 MHz and 440-450 MHz are also allocated to the amateur service on a secondary basis.', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)']), (430000000, 432000001): (True, False, False, False, False, ['Amateur', 'Radiolocation'], [], ['[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.274]: Alternative allocation: in Denmark, Norway, Sweden and Chad, the bands 430-432 MHz and 438-440 MHz are allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)', '[5.275]: Additional allocation: in Croatia, Estonia, Finland, Libya, The Former Yugoslav Republic of Macedonia, Montenegro and Serbia, the frequency bands 430-432 MHz and 438-440 MHz are also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.277]: Additional allocation: in Angola, Armenia, Azerbaijan, Belarus, Cameroon, Congo (Rep. of the), Djibouti, the Russian Federation, Georgia, Hungary, Israel, Kazakhstan, Mali, Mongolia, Uzbekistan, Poland, the Dem. Rep. of the Congo, Kyrgyzstan, Slovakia, Romania, Rwanda, Tajikistan, Chad, Turkmenistan and Ukraine, the band 430-440 MHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (432000000, 438000001): (True, False, False, False, False, ['Amateur', 'Radiolocation'], ['Earth Exploration-Satellite (Active) [5.279A]'], ['[5.279A]: The use of the frequency band 432-438 MHz by sensors in the Earth exploration-satellite service (active) shall be in accordance with Recommendation ITU-R RS.1260-1. Additionally, the Earth exploration-satellite service (active) in the frequency band 432-438 MHz shall not cause harmful interference to the aeronautical radionavigation service in China. The provisions of this footnote in no way diminish the obligation of the Earth exploration-satellite service (active) to operate as a secondary service in accordance with Nos. 5.29 and 5.30. (WRC-15)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.277]: Additional allocation: in Angola, Armenia, Azerbaijan, Belarus, Cameroon, Congo (Rep. of the), Djibouti, the Russian Federation, Georgia, Hungary, Israel, Kazakhstan, Mali, Mongolia, Uzbekistan, Poland, the Dem. Rep. of the Congo, Kyrgyzstan, Slovakia, Romania, Rwanda, Tajikistan, Chad, Turkmenistan and Ukraine, the band 430-440 MHz is also allocated to the fixed service on a primary basis. (WRC-12)', '[5.280]: In Germany, Austria, Bosnia and Herzegovina, Croatia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Montenegro, Portugal, Serbia, Slovenia and Switzerland, the band 433.05-434.79 MHz (centre frequency 433.92 MHz) is designated for industrial, scientific and medical (ISM) applications. Radiocommunication services of these countries operating within this band must accept harmful interference which may be caused by these applications. ISM equipment operating in this band is subject to the provisions of No. 15.13. (WRC-07)', '[5.281]: Additional allocation: in the French overseas departments and communities in Region 2 and India, the band 433.75-434.25 MHz is also allocated to the space operation service (Earth-to-space) on a primary basis. In France and in Brazil, the band is allocated to the same service on a secondary basis.', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.']), (438000000, 440000001): (True, False, False, False, False, ['Amateur', 'Radiolocation'], [], ['[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.274]: Alternative allocation: in Denmark, Norway, Sweden and Chad, the bands 430-432 MHz and 438-440 MHz are allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)', '[5.275]: Additional allocation: in Croatia, Estonia, Finland, Libya, The Former Yugoslav Republic of Macedonia, Montenegro and Serbia, the frequency bands 430-432 MHz and 438-440 MHz are also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.277]: Additional allocation: in Angola, Armenia, Azerbaijan, Belarus, Cameroon, Congo (Rep. of the), Djibouti, the Russian Federation, Georgia, Hungary, Israel, Kazakhstan, Mali, Mongolia, Uzbekistan, Poland, the Dem. Rep. of the Congo, Kyrgyzstan, Slovakia, Romania, Rwanda, Tajikistan, Chad, Turkmenistan and Ukraine, the band 430-440 MHz is also allocated to the fixed service on a primary basis. (WRC-12)', '[5.283]: Additional allocation: in Austria, the band 438-440 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis.']), (440000000, 450000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.269]: Different category of service: in Australia, the United States, India, Japan and the United Kingdom, the allocation of the bands 420-430 MHz and 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.270]: Additional allocation: in Australia, the United States, Jamaica and the Philippines, the bands 420-430 MHz and 440-450 MHz are also allocated to the amateur service on a secondary basis.', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.284]: Additional allocation: in Canada, the band 440-450 MHz is also allocated to the amateur service on a secondary basis.', '[5.285]: Different category of service: in Canada, the allocation of the band 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.286]: The band 449.75-450.25 MHz may be used for the space operation service (Earth-to-space) and the space research service (Earth-to-space), subject to agreement obtained under No. 9.21.']), (450000000, 455000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286]: The band 449.75-450.25 MHz may be used for the space operation service (Earth-to-space) and the space research service (Earth-to-space), subject to agreement obtained under No. 9.21.', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286D]: Additional allocation: in Canada, the United States and Panama, the band 454-455 MHz is also allocated to the mobile-satellite service (Earth-to-space) on a primary basis. (WRC-07)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (455000000, 456000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (456000000, 459000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.287]: Use of the frequency bands 457.5125-457.5875 MHz and 467.5125-467.5875 MHz by the maritime mobile service is limited to on-board communication stations. The characteristics of the equipment and the channelling arrangement shall be in accordance with Recommendation ITU-R M.1174-3. The use of these frequency bands in territorial waters is subject to the national regulations of the administration concerned. (WRC-15)', '[5.288]: In the territorial waters of the United States and the Philippines, the preferred frequencies for use by on-board communication stations shall be 457.525 MHz, 457.550 MHz, 457.575 MHz and 457.600 MHz paired, respectively, with 467.750 MHz, 467.775 MHz, 467.800 MHz and 467.825 MHz. The characteristics of the equipment used shall conform to those specified in Recommendation ITU-R M.1174-3. (WRC-15)']), (459000000, 460000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (460000000, 470000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], ['Meteorological-Satellite (Space-To-Earth)'], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.287]: Use of the frequency bands 457.5125-457.5875 MHz and 467.5125-467.5875 MHz by the maritime mobile service is limited to on-board communication stations. The characteristics of the equipment and the channelling arrangement shall be in accordance with Recommendation ITU-R M.1174-3. The use of these frequency bands in territorial waters is subject to the national regulations of the administration concerned. (WRC-15)', '[5.288]: In the territorial waters of the United States and the Philippines, the preferred frequencies for use by on-board communication stations shall be 457.525 MHz, 457.550 MHz, 457.575 MHz and 457.600 MHz paired, respectively, with 467.750 MHz, 467.775 MHz, 467.800 MHz and 467.825 MHz. The characteristics of the equipment used shall conform to those specified in Recommendation ITU-R M.1174-3. (WRC-15)', '[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.290]: Different category of service: in Afghanistan, Azerbaijan, Belarus, China, the Russian Federation, Japan, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 460-470 MHz to the meteorological-satellite service (space-to-Earth) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-12)']), (470000000, 694000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.291A]: Additional allocation: in Germany, Austria, Denmark, Estonia, Liechtenstein, the Czech Rep., Serbia and Switzerland, the frequency band 470-494 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-15)', "[5.294]: Additional allocation: in Saudi Arabia, Cameroon, Côte d'Ivoire, Egypt, Ethiopia, Israel, Libya, the Syrian Arab Republic, Chad and Yemen, the frequency band 470-582 MHz is also allocated to the fixed service on a secondary basis. (WRC-15)", "[5.296]: Additional allocation: in Albania, Germany, Angola, Saudi Arabia, Austria, Bahrain, Belgium, Benin, Bosnia and Herzegovina, Botswana, Bulgaria, Burkina Faso, Burundi, Cameroon, Vatican, Congo (Rep. of the), Côte d'Ivoire, Croatia, Denmark, Djibouti, Egypt, United Arab Emirates, Spain, Estonia, Finland, France, Gabon, Georgia, Ghana, Hungary, Iraq, Ireland, Iceland, Israel, Italy, Jordan, Kenya, Kuwait, Lesotho, Latvia, The Former Yugoslav Republic of Macedonia, Lebanon, Libya, Liechtenstein, Lithuania, Luxembourg, Malawi, Mali, Malta, Morocco, Mauritius, Mauritania, Moldova, Monaco, Mozambique, Namibia, Niger, Nigeria, Norway, Oman, Uganda, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Slovakia, the Czech Republic, the United Kingdom, Rwanda, San Marino, Serbia, Sudan, South Africa, Sweden, Switzerland, Swaziland, Tanzania, Chad, Togo, Tunisia, Turkey, Ukraine, Zambia and Zimbabwe, the frequency band 470-694 MHz is also allocated on a secondary basis to the land mobile service, intended for applications ancillary to broadcasting and programme-making. Stations of the land mobile service in the countries listed in this footnote shall not cause harmful interference to existing or planned stations operating in accordance with the Table in countries other than those listed in this footnote. (WRC-15)", '[5.300]: Additional allocation: in Saudi Arabia, Cameroon, Egypt, United Arab Emirates, Israel, Jordan, Libya, Oman, Qatar, the Syrian Arab Republic and Sudan, the frequency band 582-790 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a secondary basis. (WRC-15)', '[5.304]: Additional allocation: in the African Broadcasting Area (see Nos. 5.10 to 5.13), the band 606-614 MHz is also allocated to the radio astronomy service on a primary basis.', '[5.306]: Additional allocation: in Region 1, except in the African Broadcasting Area (see Nos. 5.10 to 5.13), and in Region 3, the band 608-614 MHz is also allocated to the radio astronomy service on a secondary basis.', '[5.311A]: For the frequency band 620-790 MHz, see also Resolution 549 (WRC-07). (WRC-07)', '[5.312]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the frequency band 645-862 MHz, in Bulgaria the frequency bands 646-686 MHz, 726-758 MHz, 766-814 MHz and 822-862 MHz, and in Poland the frequency band 860-862 MHz until 31 December 2017, are also allocated to the aeronautical radionavigation service on a primary basis. (WRC-15)']), (694000000, 790000001): (False, False, True, True, False, ['Mobile Except Aeronautical Mobile [5.312A][5.317A]', 'Broadcasting'], [], ['[5.312A]: In Region 1, the use of the frequency band 694-790 MHz by the mobile, except aeronautical mobile, service is subject to the provisions of Resolution 760 (WRC-15). See also Resolution 224 (Rev.WRC-15). (WRC-15)', '[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.300]: Additional allocation: in Saudi Arabia, Cameroon, Egypt, United Arab Emirates, Israel, Jordan, Libya, Oman, Qatar, the Syrian Arab Republic and Sudan, the frequency band 582-790 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a secondary basis. (WRC-15)', '[5.311A]: For the frequency band 620-790 MHz, see also Resolution 549 (WRC-07). (WRC-07)', '[5.312]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the frequency band 645-862 MHz, in Bulgaria the frequency bands 646-686 MHz, 726-758 MHz, 766-814 MHz and 822-862 MHz, and in Poland the frequency band 860-862 MHz until 31 December 2017, are also allocated to the aeronautical radionavigation service on a primary basis. (WRC-15)']), (790000000, 862000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile [5.316B][5.317A]', 'Broadcasting'], [], ['[5.316B]: In Region 1, the allocation to the mobile, except aeronautical mobile, service in the frequency band 790-862 MHz is subject to agreement obtained under No. 9.21 with respect to the aeronautical radionavigation service in countries mentioned in No. 5.312. For countries party to the GE06 Agreement, the use of stations of the mobile service is also subject to the successful application of the procedures of that Agreement. Resolutions 224 (Rev.WRC-15) and 749 (Rev.WRC-15) shall apply, as appropriate. (WRC-15)', '[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.312]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the frequency band 645-862 MHz, in Bulgaria the frequency bands 646-686 MHz, 726-758 MHz, 766-814 MHz and 822-862 MHz, and in Poland the frequency band 860-862 MHz until 31 December 2017, are also allocated to the aeronautical radionavigation service on a primary basis. (WRC-15)', '[5.319]: Additional allocation: in Belarus, the Russian Federation and Ukraine, the bands 806-840 MHz (Earth-to-space) and 856-890 MHz (space-to-Earth) are also allocated to the mobile-satellite, except aeronautical mobile-satellite (R), service. The use of these bands by this service shall not cause harmful interference to, or claim protection from, services in other countries operating in accordance with the Table of Frequency Allocations and is subject to special agreements between the administrations concerned.']), (862000000, 890000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile [5.317A]', 'Broadcasting [5.322]'], [], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.322]: In Region 1, in the band 862-960 MHz, stations of the broadcasting service shall be operated only in the African Broadcasting Area (see Nos. 5.10 to 5.13) excluding Algeria, Burundi, Egypt, Spain, Lesotho, Libya, Morocco, Malawi, Namibia, Nigeria, South Africa, Tanzania, Zimbabwe and Zambia, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.319]: Additional allocation: in Belarus, the Russian Federation and Ukraine, the bands 806-840 MHz (Earth-to-space) and 856-890 MHz (space-to-Earth) are also allocated to the mobile-satellite, except aeronautical mobile-satellite (R), service. The use of these bands by this service shall not cause harmful interference to, or claim protection from, services in other countries operating in accordance with the Table of Frequency Allocations and is subject to special agreements between the administrations concerned.', '[5.323]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 862-960 MHz, in Bulgaria the bands 862-890.2 MHz and 900-935.2 MHz, in Poland the band 862-876 MHz until 31 December 2017, and in Romania the bands 862-880 MHz and 915-925 MHz, are also allocated to the aeronautical radionavigation service on a primary basis. Such use is subject to agreement obtained under No. 9.21 with administrations concerned and limited to ground-based radiobeacons in operation on 27 October 1997 until the end of their lifetime. (WRC-12)']), (890000000, 942000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile [5.317A]', 'Broadcasting [5.322]'], ['Radiolocation'], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.322]: In Region 1, in the band 862-960 MHz, stations of the broadcasting service shall be operated only in the African Broadcasting Area (see Nos. 5.10 to 5.13) excluding Algeria, Burundi, Egypt, Spain, Lesotho, Libya, Morocco, Malawi, Namibia, Nigeria, South Africa, Tanzania, Zimbabwe and Zambia, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.323]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 862-960 MHz, in Bulgaria the bands 862-890.2 MHz and 900-935.2 MHz, in Poland the band 862-876 MHz until 31 December 2017, and in Romania the bands 862-880 MHz and 915-925 MHz, are also allocated to the aeronautical radionavigation service on a primary basis. Such use is subject to agreement obtained under No. 9.21 with administrations concerned and limited to ground-based radiobeacons in operation on 27 October 1997 until the end of their lifetime. (WRC-12)']), (942000000, 960000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile [5.317A]', 'Broadcasting [5.322]'], [], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.322]: In Region 1, in the band 862-960 MHz, stations of the broadcasting service shall be operated only in the African Broadcasting Area (see Nos. 5.10 to 5.13) excluding Algeria, Burundi, Egypt, Spain, Lesotho, Libya, Morocco, Malawi, Namibia, Nigeria, South Africa, Tanzania, Zimbabwe and Zambia, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.323]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 862-960 MHz, in Bulgaria the bands 862-890.2 MHz and 900-935.2 MHz, in Poland the band 862-876 MHz until 31 December 2017, and in Romania the bands 862-880 MHz and 915-925 MHz, are also allocated to the aeronautical radionavigation service on a primary basis. Such use is subject to agreement obtained under No. 9.21 with administrations concerned and limited to ground-based radiobeacons in operation on 27 October 1997 until the end of their lifetime. (WRC-12)']), (960000000, 1164000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.327A]', 'Aeronautical Radionavigation [5.328]'], [], ['[5.327A]: The use of the frequency band 960-1 164 MHz by the aeronautical mobile (R) service is limited to systems that operate in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 417 (Rev.WRC-15). (WRC-15)', '[5.328]: The use of the band 960-1 215 MHz by the aeronautical radionavigation service is reserved on a worldwide basis for the operation and development of airborne electronic aids to air navigation and any directly associated ground-based facilities. (WRC-2000)', '[5.328AA]: The frequency band 1 087.7-1 092.3 MHz is also allocated to the aeronautical mobile-satellite (R) service (Earth-to-space) on a primary basis, limited to the space station reception of Automatic Dependent Surveillance-Broadcast (ADS-B) emissions from aircraft transmitters that operate in accordance with recognized international aeronautical standards. Stations operating in the aeronautical mobile-satellite (R) service shall not claim protection from stations operating in the aeronautical radionavigation service. Resolution 425 (WRC-15) shall apply. (WRC-15)']), (1164000000, 1215000001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.328]', 'Radionavigation-Satellite (Space-To-Earth) [5.328B]', 'Radionavigation-Satellite (Space-To-Space) [5.328B]'], [], ['[5.328]: The use of the band 960-1 215 MHz by the aeronautical radionavigation service is reserved on a worldwide basis for the operation and development of airborne electronic aids to air navigation and any directly associated ground-based facilities. (WRC-2000)', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.328A]: Stations in the radionavigation-satellite service in the band 1 164-1 215 MHz shall operate in accordance with the provisions of Resolution 609 (Rev.WRC-07) and shall not claim protection from stations in the aeronautical radionavigation service in the band 960-1 215 MHz. No. 5.43A does not apply. The provisions of No. 21.18 shall apply. (WRC-07)']), (1215000000, 1240000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation-Satellite (Space-To-Earth) [5.328B][5.329][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.328B][5.329][5.329A]', 'Space Research (Active)'], [], ['[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329]: Use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to, and no protection is claimed from, the radionavigation service authorized under No. 5.331. Furthermore, the use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to the radiolocation service. No. 5.43 shall not apply in respect of the radiolocation service. Resolution 608 (WRC-03)* shall apply. (WRC-03)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.330]: Additional allocation: in Angola, Saudi Arabia, Bahrain, Bangladesh, Cameroon, China, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Nepal, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the band 1 215-1 300 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.331]: Additional allocation: in Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Belarus, Belgium, Benin, Bosnia and Herzegovina, Brazil, Burkina Faso, Burundi, Cameroon, China, Korea (Rep. of), Croatia, Denmark, Egypt, the United Arab Emirates, Estonia, the Russian Federation, Finland, France, Ghana, Greece, Guinea, Equatorial Guinea, Hungary, India, Indonesia, Iran (Islamic Republic of), Iraq, Ireland, Israel, Jordan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Mauritania, Montenegro, Nigeria, Norway, Oman, Pakistan, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sudan, South Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Thailand, Togo, Turkey, Venezuela and Viet Nam, the band 1 215-1 300 MHz is also allocated to the radionavigation service on a primary basis. In Canada and the United States, the band 1 240-1 300 MHz is also allocated to the radionavigation service, and use of the radionavigation service shall be limited to the aeronautical radionavigation service. (WRC-12)', '[5.332]: In the band 1 215-1 260 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service, the radionavigation-satellite service and other services allocated on a primary basis. (WRC-2000)']), (1240000000, 1300000001): (True, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation-Satellite (Space-To-Earth) [5.328B][5.329][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.328B][5.329][5.329A]', 'Space Research (Active)'], ['Amateur'], ['[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329]: Use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to, and no protection is claimed from, the radionavigation service authorized under No. 5.331. Furthermore, the use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to the radiolocation service. No. 5.43 shall not apply in respect of the radiolocation service. Resolution 608 (WRC-03)* shall apply. (WRC-03)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.330]: Additional allocation: in Angola, Saudi Arabia, Bahrain, Bangladesh, Cameroon, China, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Nepal, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the band 1 215-1 300 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.331]: Additional allocation: in Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Belarus, Belgium, Benin, Bosnia and Herzegovina, Brazil, Burkina Faso, Burundi, Cameroon, China, Korea (Rep. of), Croatia, Denmark, Egypt, the United Arab Emirates, Estonia, the Russian Federation, Finland, France, Ghana, Greece, Guinea, Equatorial Guinea, Hungary, India, Indonesia, Iran (Islamic Republic of), Iraq, Ireland, Israel, Jordan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Mauritania, Montenegro, Nigeria, Norway, Oman, Pakistan, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sudan, South Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Thailand, Togo, Turkey, Venezuela and Viet Nam, the band 1 215-1 300 MHz is also allocated to the radionavigation service on a primary basis. In Canada and the United States, the band 1 240-1 300 MHz is also allocated to the radionavigation service, and use of the radionavigation service shall be limited to the aeronautical radionavigation service. (WRC-12)', '[5.332]: In the band 1 215-1 260 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service, the radionavigation-satellite service and other services allocated on a primary basis. (WRC-2000)', '[5.335]: In Canada and the United States in the band 1 240-1 300 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause interference to, claim protection from, or otherwise impose constraints on operation or development of the aeronautical radionavigation service. (WRC-97)', '[5.335A]: In the band 1 260-1 300 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service and other services allocated by footnotes on a primary basis. (WRC-2000)']), (1300000000, 1350000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.337]', 'Radionavigation-Satellite (Earth-To-Space)'], [], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.337A]: The use of the band 1 300-1 350 MHz by earth stations in the radionavigation-satellite service and by stations in the radiolocation service shall not cause harmful interference to, nor constrain the operation and development of, the aeronautical-radionavigation service. (WRC-2000)']), (1350000000, 1400000001): (False, True, True, False, False, ['Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.338]: In Kyrgyzstan, Slovakia and Turkmenistan, existing installations of the radionavigation service may continue to operate in the band 1 350-1 400 MHz. (WRC-12)', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.']), (1400000000, 1427000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1427000000, 1429000001): (False, True, True, False, False, ['Space Operation (Earth-To-Space)', 'Mobile Except Aeronautical Mobile [5.341A][5.341B][5.341C]'], [], ['[5.341A]: In Region 1, the frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any other application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of IMT stations is subject to agreement obtained under No. 9.21 with respect to the aeronautical mobile service used for aeronautical telemetry in accordance with No. 5.342. (WRC-15)', '[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.341C]: The frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). The use of these frequency bands by the above administrations for the implementation of IMT in the frequency bands 1 429-1 452 MHz and 1 492-1 518 MHz is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of these frequency bands by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1429000000, 1452000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.341A]'], [], ['[5.341A]: In Region 1, the frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any other application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of IMT stations is subject to agreement obtained under No. 9.21 with respect to the aeronautical mobile service used for aeronautical telemetry in accordance with No. 5.342. (WRC-15)', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.342]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Uzbekistan, Kyrgyzstan and Ukraine, the frequency band 1 429-1 535 MHz is also allocated to the aeronautical mobile service on a primary basis, exclusively for the purposes of aeronautical telemetry within the national territory. As of 1 April 2007, the use of the frequency band 1 452-1 492 MHz is subject to agreement between the administrations concerned. (WRC-15)']), (1452000000, 1492000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile [5.346]', 'Broadcasting', 'Broadcasting-Satellite [5.208B]'], [], ["[5.346]: In Algeria, Angola, Saudi Arabia, Bahrain, Benin, Botswana, Burkina Faso, Burundi, Cameroon, Central African Republic, Congo (Rep. of the), Côte d'Ivoire, Djibouti, Egypt, United Arab Emirates, Gabon, Gambia, Ghana, Guinea, Iraq, Jordan, Kenya, Kuwait, Lesotho, Lebanon, Liberia, Madagascar, Malawi, Mali, Morocco, Mauritius, Mauritania, Mozambique, Namibia, Niger, Nigeria, Oman, Uganda, Palestine**, Qatar, Dem. Rep. of the Congo, Rwanda, Senegal, Seychelles, Sudan, South Sudan, South Africa, Swaziland, Tanzania, Chad, Togo, Tunisia, Zambia, and Zimbabwe, the frequency band 1 452-1 492 MHz is identified for use by administrations listed above wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any other application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained under No. 9.21 with respect to the aeronautical mobile service used for aeronautical telemetry in accordance with No. 5.342. See also Resolution 761 (WRC-15). (WRC-15)", '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.342]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Uzbekistan, Kyrgyzstan and Ukraine, the frequency band 1 429-1 535 MHz is also allocated to the aeronautical mobile service on a primary basis, exclusively for the purposes of aeronautical telemetry within the national territory. As of 1 April 2007, the use of the frequency band 1 452-1 492 MHz is subject to agreement between the administrations concerned. (WRC-15)', '[5.345]: Use of the band 1 452-1 492 MHz by the broadcasting-satellite service, and by the broadcasting service, is limited to digital audio broadcasting and is subject to the provisions of Resolution 528 (WARC-92)*.']), (1492000000, 1518000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.341A]'], [], ['[5.341A]: In Region 1, the frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any other application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of IMT stations is subject to agreement obtained under No. 9.21 with respect to the aeronautical mobile service used for aeronautical telemetry in accordance with No. 5.342. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.342]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Uzbekistan, Kyrgyzstan and Ukraine, the frequency band 1 429-1 535 MHz is also allocated to the aeronautical mobile service on a primary basis, exclusively for the purposes of aeronautical telemetry within the national territory. As of 1 April 2007, the use of the frequency band 1 452-1 492 MHz is subject to agreement between the administrations concerned. (WRC-15)']), (1518000000, 1525000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Mobile-Satellite (Space-To-Earth) [5.348][5.348A][5.348B][5.351A]'], [], ['[5.348]: The use of the band 1 518-1 525 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 518-1 525 MHz stations in the mobile-satellite service shall not claim protection from the stations in the fixed service. No. 5.43A does not apply. (WRC-03)', '[5.348A]: In the band 1 518-1 525 MHz, the coordination threshold in terms of the power flux-density levels at the surface of the Earth in application of No. 9.11A for space stations in the mobile-satellite (space-to-Earth) service, with respect to the land mobile service use for specialized mobile radios or used in conjunction with public switched telecommunication networks (PSTN) operating within the territory of Japan, shall be –150 dB(W/m2) in any 4 kHz band for all angles of arrival, instead of those given in Table 5-2 of Appendix 5. In the band 1 518-1 525 MHz stations in the mobile-satellite service shall not claim protection from stations in the mobile service in the territory of Japan. No. 5.43A does not apply. (WRC-03)', '[5.348B]: In the band 1 518-1 525 MHz, stations in the mobile-satellite service shall not claim protection from aeronautical mobile telemetry stations in the mobile service in the territory of the United States (see Nos. 5.343 and 5.344) and in the countries listed in No. 5.342. No. 5.43A does not apply. (WRC-03)', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.342]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Uzbekistan, Kyrgyzstan and Ukraine, the frequency band 1 429-1 535 MHz is also allocated to the aeronautical mobile service on a primary basis, exclusively for the purposes of aeronautical telemetry within the national territory. As of 1 April 2007, the use of the frequency band 1 452-1 492 MHz is subject to agreement between the administrations concerned. (WRC-15)']), (1525000000, 1530000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208B][5.351A]'], ['Earth Exploration-Satellite', 'Mobile Except Aeronautical Mobile [5.349]'], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.349]: Different category of service: in Saudi Arabia, Azerbaijan, Bahrain, Cameroon, Egypt, France, Iran (Islamic Republic of), Iraq, Israel, Kazakhstan, Kuwait, The Former Yugoslav Republic of Macedonia, Lebanon, Morocco, Qatar, Syrian Arab Republic, Kyrgyzstan, Turkmenistan and Yemen, the allocation of the band 1 525-1 530 MHz to the mobile, except aeronautical mobile, service is on a primary basis (see No. 5.33). (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.342]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Uzbekistan, Kyrgyzstan and Ukraine, the frequency band 1 429-1 535 MHz is also allocated to the aeronautical mobile service on a primary basis, exclusively for the purposes of aeronautical telemetry within the national territory. As of 1 April 2007, the use of the frequency band 1 452-1 492 MHz is subject to agreement between the administrations concerned. (WRC-15)', '[5.350]: Additional allocation: in Azerbaijan, Kyrgyzstan and Turkmenistan, the band 1 525-1 530 MHz is also allocated to the aeronautical mobile service on a primary basis. (WRC-2000)', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.352A]: In the frequency band 1 525-1 530 MHz, stations in the mobile-satellite service, except stations in the maritime mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed service in Algeria, Saudi Arabia, Egypt, France and French overseas communities of Region 3, Guinea, India, Israel, Italy, Jordan, Kuwait, Mali, Morocco, Mauritania, Nigeria, Oman, Pakistan, the Philippines, Qatar, Syrian Arab Republic, Viet Nam and Yemen notified prior to 1 April 1998. (WRC-15)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.']), (1530000000, 1535000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208B][5.351A][5.353A]'], ['Earth Exploration-Satellite', 'Mobile Except Aeronautical Mobile'], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.342]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Uzbekistan, Kyrgyzstan and Ukraine, the frequency band 1 429-1 535 MHz is also allocated to the aeronautical mobile service on a primary basis, exclusively for the purposes of aeronautical telemetry within the national territory. As of 1 April 2007, the use of the frequency band 1 452-1 492 MHz is subject to agreement between the administrations concerned. (WRC-15)', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.']), (1535000000, 1559000001): (False, False, False, False, False, ['Mobile-Satellite (Space-To-Earth) [5.208B][5.351A]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.356]: The use of the band 1 544-1 545 MHz by the mobile-satellite service (space-to-Earth) is limited to distress and safety communications (see Article 31).', '[5.357]: Transmissions in the band 1 545-1 555 MHz from terrestrial aeronautical stations directly to aircraft stations, or between aircraft stations, in the aeronautical mobile (R) service are also authorized when such transmissions are used to extend or supplement the satellite-to-aircraft links.', '[5.357A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the frequency bands 1 545-1 555 MHz and 1 646.5-1 656.5 MHz, priority shall be given to accommodating the spectrum requirements of the aeronautical mobile-satellite (R) service providing transmission of messages with priority 1 to 6 in Article 44. Aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44 shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (Rev.WRC-12)* shall apply.) (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)']), (1559000000, 1610000001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Radionavigation-Satellite (Space-To-Earth) [5.208B][5.328B][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.208B][5.328B][5.329A]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1610000000, 1610600001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Aeronautical Radionavigation'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.369]: Different category of service: in Angola, Australia, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Israel, Lebanon, Liberia, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, the Dem. Rep. of the Congo, Sudan, South Sudan, Togo and Zambia, the allocation of the band 1 610-1 626.5 MHz to the radiodetermination-satellite service (Earth-to-space) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21 from countries not listed in this provision. (WRC-12)', '[5.371]: Additional allocation: in Region 1, the band 1 610-1 626.5 MHz (Earth-to-space) is also allocated to the radiodetermination-satellite service on a secondary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1610600000, 1613800001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Radio Astronomy', 'Aeronautical Radionavigation'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.369]: Different category of service: in Angola, Australia, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Israel, Lebanon, Liberia, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, the Dem. Rep. of the Congo, Sudan, South Sudan, Togo and Zambia, the allocation of the band 1 610-1 626.5 MHz to the radiodetermination-satellite service (Earth-to-space) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21 from countries not listed in this provision. (WRC-12)', '[5.371]: Additional allocation: in Region 1, the band 1 610-1 626.5 MHz (Earth-to-space) is also allocated to the radiodetermination-satellite service on a secondary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1613800000, 1626500001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Aeronautical Radionavigation'], ['Mobile-Satellite (Space-To-Earth) [5.208B]'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.365]: The use of the band 1 613.8-1 626.5 MHz by the mobile-satellite service (space-to-Earth) is subject to coordination under No. 9.11A.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.369]: Different category of service: in Angola, Australia, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Israel, Lebanon, Liberia, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, the Dem. Rep. of the Congo, Sudan, South Sudan, Togo and Zambia, the allocation of the band 1 610-1 626.5 MHz to the radiodetermination-satellite service (Earth-to-space) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21 from countries not listed in this provision. (WRC-12)', '[5.371]: Additional allocation: in Region 1, the band 1 610-1 626.5 MHz (Earth-to-space) is also allocated to the radiodetermination-satellite service on a secondary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1626500000, 1660000001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.357A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the frequency bands 1 545-1 555 MHz and 1 646.5-1 656.5 MHz, priority shall be given to accommodating the spectrum requirements of the aeronautical mobile-satellite (R) service providing transmission of messages with priority 1 to 6 in Article 44. Aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44 shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (Rev.WRC-12)* shall apply.) (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)', '[5.374]: Mobile earth stations in the mobile-satellite service operating in the bands 1 631.5-1 634.5 MHz and 1 656.5-1 660 MHz shall not cause harmful interference to stations in the fixed service operating in the countries listed in No. 5.359. (WRC-97)', '[5.375]: The use of the band 1 645.5-1 646.5 MHz by the mobile-satellite service (Earth-to-space) and for inter-satellite links is limited to distress and safety communications (see Article 31).', '[5.376]: Transmissions in the band 1 646.5-1 656.5 MHz from aircraft stations in the aeronautical mobile (R) service directly to terrestrial aeronautical stations, or between aircraft stations, are also authorized when such transmissions are used to extend or supplement the aircraft-to-satellite links.']), (1660000000, 1660500001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Radio Astronomy'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)', '[5.376A]: Mobile earth stations operating in the band 1 660-1 660.5 MHz shall not cause harmful interference to stations in the radio astronomy service. (WRC-97)']), (1660500000, 1668000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379]: Additional allocation: in Bangladesh, India, Indonesia, Nigeria and Pakistan, the band 1 660.5-1 668.4 MHz is also allocated to the meteorological aids service on a secondary basis.', '[5.379A]: Administrations are urged to give all practicable protection in the band 1 660.5-1 668.4 MHz for future research in radio astronomy, particularly by eliminating air-to-ground transmissions in the meteorological aids service in the band 1 664.4-1 668.4 MHz as soon as practicable.']), (1668000000, 1668400001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A][5.379B][5.379C]', 'Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.379C]: In order to protect the radio astronomy service in the band 1 668-1 670 MHz, the aggregate power flux-density values produced by mobile earth stations in a network of the mobile-satellite service operating in this band shall not exceed –181 dB(W/m2) in 10 MHz and -194 dB(W/m2) in any 20 kHz at any radio astronomy station recorded in the Master International Frequency Register, for more than 2% of integration periods of 2 000 s. (WRC-03)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379]: Additional allocation: in Bangladesh, India, Indonesia, Nigeria and Pakistan, the band 1 660.5-1 668.4 MHz is also allocated to the meteorological aids service on a secondary basis.', '[5.379A]: Administrations are urged to give all practicable protection in the band 1 660.5-1 668.4 MHz for future research in radio astronomy, particularly by eliminating air-to-ground transmissions in the meteorological aids service in the band 1 664.4-1 668.4 MHz as soon as practicable.']), (1668400000, 1670000001): (False, True, True, False, False, ['Meteorological Aids', 'Mobile Except Aeronautical Mobile', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.379B][5.379C]', 'Radio Astronomy'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.379C]: In order to protect the radio astronomy service in the band 1 668-1 670 MHz, the aggregate power flux-density values produced by mobile earth stations in a network of the mobile-satellite service operating in this band shall not exceed –181 dB(W/m2) in 10 MHz and -194 dB(W/m2) in any 20 kHz at any radio astronomy station recorded in the Master International Frequency Register, for more than 2% of integration periods of 2 000 s. (WRC-03)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379D]: For sharing of the band 1 668.4-1 675 MHz between the mobile-satellite service and the fixed and mobile services, Resolution 744 (Rev.WRC-07) shall apply. (WRC-07)', '[5.379E]: In the band 1 668.4-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to stations in the meteorological aids service in China, Iran (Islamic Republic of), Japan and Uzbekistan. In the band 1 668.4-1 675 MHz, administrations are urged not to implement new systems in the meteorological aids service and are encouraged to migrate existing meteorological aids service operations to other bands as soon as practicable. (WRC-03)']), (1670000000, 1675000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.379B]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379D]: For sharing of the band 1 668.4-1 675 MHz between the mobile-satellite service and the fixed and mobile services, Resolution 744 (Rev.WRC-07) shall apply. (WRC-07)', '[5.379E]: In the band 1 668.4-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to stations in the meteorological aids service in China, Iran (Islamic Republic of), Japan and Uzbekistan. In the band 1 668.4-1 675 MHz, administrations are urged not to implement new systems in the meteorological aids service and are encouraged to migrate existing meteorological aids service operations to other bands as soon as practicable. (WRC-03)', '[5.380A]: In the band 1 670-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to, nor constrain the development of, existing earth stations in the meteorological-satellite service notified before 1 January 2004. Any new assignment to these earth stations in this band shall also be protected from harmful interference from stations in the mobile-satellite service. (WRC-07)']), (1675000000, 1690000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1690000000, 1700000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile'], ['[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.382]: Different category of service: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, the Russian Federation, Guinea, Iraq, Israel, Jordan, Kazakhstan, Kuwait, the Former Yugoslav Republic of Macedonia, Lebanon, Mauritania, Moldova, Mongolia, Oman, Uzbekistan, Poland, Qatar, the Syrian Arab Republic, Kyrgyzstan, Somalia, Tajikistan, Turkmenistan, Ukraine and Yemen, the allocation of the frequency band 1 690-1 700 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33), and in the Dem. People’s Rep. of Korea, the allocation of the frequency band 1 690-1 700 MHz to the fixed service is on a primary basis (see No. 5.33) and to the mobile, except aeronautical mobile, service on a secondary basis. (WRC-15)']), (1700000000, 1710000001): (False, True, True, False, False, ['Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1710000000, 1930000001): (False, True, True, False, False, ['Mobile [5.384A][5.388A][5.388B]'], [], ['[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.385]: Additional allocation: the band 1 718.8-1 722.2 MHz is also allocated to the radio astronomy service on a secondary basis for spectral line observations. (WRC-2000)', '[5.386]: Additional allocation: the frequency band 1 750-1 850 MHz is also allocated to the space operation (Earth-to-space) and space research (Earth-to-space) services in Region 2 (except in Mexico), in Australia, Guam, India, Indonesia and Japan on a primary basis, subject to agreement obtained under No. 9.21, having particular regard to troposcatter systems. (WRC-15)', '[5.387]: Additional allocation: in Belarus, Georgia, Kazakhstan, Kyrgyzstan, Romania, Tajikistan and Turkmenistan, the band 1 770-1 790 MHz is also allocated to the meteorological-satellite service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1930000000, 1970000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1970000000, 1980000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1980000000, 2010000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389A]: The use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389B]: The use of the band 1 980-1 990 MHz by the mobile-satellite service shall not cause harmful interference to or constrain the development of the fixed and mobile services in Argentina, Brazil, Canada, Chile, Ecuador, the United States, Honduras, Jamaica, Mexico, Peru, Suriname, Trinidad and Tobago, Uruguay and Venezuela.', '[5.389F]: In Algeria, Benin, Cape Verde, Egypt, Iran (Islamic Republic of), Mali, Syrian Arab Republic and Tunisia, the use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service shall neither cause harmful interference to the fixed and mobile services, nor hamper the development of those services prior to 1 January 2005, nor shall the former service request protection from the latter services. (WRC-2000)']), (2010000000, 2025000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2025000000, 2110000001): (False, True, True, False, False, ['Space Operation (Earth-To-Space)', 'Space Operation (Space-To-Space)', 'Earth Exploration-Satellite (Earth-To-Space)', 'Earth Exploration-Satellite (Space-To-Space)', 'Mobile [5.391]', 'Space Research (Earth-To-Space)', 'Space Research (Space-To-Space)'], [], ['[5.391]: In making assignments to the mobile service in the frequency bands 2 025-2 110 MHz and 2 200-2 290 MHz, administrations shall not introduce high-density mobile systems, as described in Recommendation ITU-R SA.1154-0, and shall take that Recommendation into account for the introduction of any other type of mobile system. (WRC-15)', '[5.392]: Administrations are urged to take all practicable measures to ensure that space-to-space transmissions between two or more non-geostationary satellites, in the space research, space operations and Earth exploration-satellite services in the bands 2 025-2 110 MHz and 2 200-2 290 MHz, shall not impose any constraints on Earth-to-space, space-to-Earth and other space-to-space transmissions of those services and in those bands between geostationary and non-geostationary satellites.']), (2110000000, 2120000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]', 'Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2120000000, 2160000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2160000000, 2170000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2170000000, 2200000001): (False, True, True, False, False, ['Mobile-Satellite (Space-To-Earth) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389A]: The use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389F]: In Algeria, Benin, Cape Verde, Egypt, Iran (Islamic Republic of), Mali, Syrian Arab Republic and Tunisia, the use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service shall neither cause harmful interference to the fixed and mobile services, nor hamper the development of those services prior to 1 January 2005, nor shall the former service request protection from the latter services. (WRC-2000)']), (2200000000, 2290000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Space Operation (Space-To-Space)', 'Earth Exploration-Satellite (Space-To-Earth)', 'Earth Exploration-Satellite (Space-To-Space)', 'Mobile [5.391]', 'Space Research (Space-To-Earth)', 'Space Research (Space-To-Space)'], [], ['[5.391]: In making assignments to the mobile service in the frequency bands 2 025-2 110 MHz and 2 200-2 290 MHz, administrations shall not introduce high-density mobile systems, as described in Recommendation ITU-R SA.1154-0, and shall take that Recommendation into account for the introduction of any other type of mobile system. (WRC-15)', '[5.392]: Administrations are urged to take all practicable measures to ensure that space-to-space transmissions between two or more non-geostationary satellites, in the space research, space operations and Earth exploration-satellite services in the bands 2 025-2 110 MHz and 2 200-2 290 MHz, shall not impose any constraints on Earth-to-space, space-to-Earth and other space-to-space transmissions of those services and in those bands between geostationary and non-geostationary satellites.']), (2290000000, 2300000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], []), (2300000000, 2450000001): (True, True, True, False, False, ['Mobile [5.384A]'], ['Amateur', 'Radiolocation'], ['[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.395]: In France and Turkey, the use of the band 2 310-2 360 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service. (WRC-03)']), (2450000000, 2483500001): (False, True, True, False, False, [], ['Radiolocation'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (2483500000, 2500000001): (False, True, True, False, True, ['Mobile-Satellite (Space-To-Earth) [5.351A]', 'Radiodetermination- Satellite (Space-To-Earth) [5.398]'], ['Radiolocation [5.398A]'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.398]: In respect of the radiodetermination-satellite service in the band 2 483.5-2 500 MHz, the provisions of No. 4.10 do not apply.', '[5.398A]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan and Ukraine, the band 2 483.5-2 500 MHz is allocated on a primary basis to the radiolocation service. The radiolocation stations in these countries shall not cause harmful interference to, or claim protection from, stations of the fixed, mobile and mobile-satellite services operating in accordance with the Radio Regulations in the frequency band 2 483.5-2 500 MHz. (WRC-12)', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.399]: Except for cases referred to in No. 5.401, stations of the radiodetermination-satellite service operating in the frequency band 2 483.5-2 500 MHz for which notification information is received by the Bureau after 17 February 2012, and the service area of which includes Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan and Ukraine, shall not cause harmful interference to, and shall not claim protection from stations of the radiolocation service operating in these countries in accordance with No. 5.398A. (WRC-12)', '[5.401]: In Angola, Australia, Bangladesh, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Lebanon, Liberia, Libya, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, Dem. Rep. of the Congo, Sudan, Swaziland, Togo and Zambia, the frequency band 2 483.5-2 500 MHz was already allocated on a primary basis to the radiodetermination-satellite service before WRC-12, subject to agreement obtained under No. 9.21 from countries not listed in this provision. Systems in the radiodetermination-satellite service for which complete coordination information has been received by the Radiocommunication Bureau before 18 February 2012 will retain their regulatory status, as of the date of receipt of the coordination request information. (WRC-15)', '[5.402]: The use of the band 2 483.5-2 500 MHz by the mobile-satellite and the radiodetermination-satellite services is subject to the coordination under No. 9.11A. Administrations are urged to take all practicable steps to prevent harmful interference to the radio astronomy service from emissions in the 2 483.5-2 500 MHz band, especially those caused by second-harmonic radiation that would fall into the 4 990-5 000 MHz band allocated to the radio astronomy service worldwide.']), (2500000000, 2520000001): (False, True, True, False, False, ['Fixed [5.410]', 'Mobile Except Aeronautical Mobile [5.384A]'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.412]: Alternative allocation: in Kyrgyzstan and Turkmenistan, the band 2 500-2 690 MHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2520000000, 2655000001): (False, True, True, False, False, ['Fixed [5.410]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.413][5.416]'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.', '[5.412]: Alternative allocation: in Kyrgyzstan and Turkmenistan, the band 2 500-2 690 MHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)', '[5.418B]: Use of the band 2 630-2 655 MHz by non-geostationary-satellite systems in the broadcasting-satellite service (sound), pursuant to No. 5.418, for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000, is subject to the application of the provisions of No. 9.12. (WRC-03)', '[5.418C]: Use of the band 2 630-2 655 MHz by geostationary-satellite networks for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000 is subject to the application of the provisions of No. 9.13 with respect to non-geostationary-satellite systems in the broadcasting-satellite service (sound), pursuant to No. 5.418 and No. 22.2 does not apply. (WRC-03)']), (2655000000, 2670000001): (False, True, True, False, False, ['Fixed [5.410]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.208B][5.413][5.416]'], ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.412]: Alternative allocation: in Kyrgyzstan and Turkmenistan, the band 2 500-2 690 MHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2670000000, 2690000001): (False, True, True, False, False, ['Fixed [5.410]', 'Mobile Except Aeronautical Mobile [5.384A]'], ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.412]: Alternative allocation: in Kyrgyzstan and Turkmenistan, the band 2 500-2 690 MHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2690000000, 2700000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', "[5.422]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Brunei Darussalam, Congo (Rep. of the), Côte d'Ivoire, Cuba, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Gabon, Georgia, Guinea, Guinea-Bissau, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Mauritania, Mongolia, Montenegro, Nigeria, Oman, Pakistan, the Philippines, Qatar, Syrian Arab Republic, Kyrgyzstan, the Dem. Rep. of the Congo, Romania, Somalia, Tajikistan, Tunisia, Turkmenistan, Ukraine and Yemen, the band 2 690-2 700 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. Such use is limited to equipment in operation by 1 January 1985. (WRC-12)"]), (2700000000, 2900000001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.337]'], ['Radiolocation'], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.423]: In the band 2 700-2 900 MHz, ground-based radars used for meteorological purposes are authorized to operate on a basis of equality with stations of the aeronautical radionavigation service.', '[5.424]: Additional allocation: in Canada, the band 2 850-2 900 MHz is also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars.']), (2900000000, 3100000001): (False, False, False, False, False, ['Radiolocation [5.424A]', 'Radionavigation [5.426]'], [], ['[5.424A]: In the band 2 900-3 100 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the radionavigation service. (WRC-03)', '[5.426]: The use of the band 2 900-3 100 MHz by the aeronautical radionavigation service is limited to ground-based radars.', '[5.425]: In the band 2 900-3 100 MHz, the use of the shipborne interrogator-transponder (SIT) system shall be confined to the sub-band 2 930 -2 950 MHz.', '[5.427]: In the bands 2 900-3 100 MHz and 9 300-9 500 MHz, the response from radar transponders shall not be capable of being confused with the response from radar beacons (racons) and shall not cause interference to ship or aeronautical radars in the radionavigation service, having regard, however, to No. 4.9.']), (3100000000, 3300000001): (False, False, False, False, False, ['Radiolocation'], ['Earth Exploration-Satellite (Active)', 'Space Research (Active)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.428]: Additional allocation: in Azerbaijan, Kyrgyzstan and Turkmenistan, the frequency band 3 100-3 300 MHz is also allocated to the radionavigation service on a primary basis. (WRC-15)']), (3300000000, 3400000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', "[5.429]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Benin, Brunei Darussalam, Cambodia, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d'Ivoire, Egypt, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Sudan and Yemen, the frequency band 3 300-3 400 MHz is also allocated to the fixed and mobile services on a primary basis. The countries bordering the Mediterranean shall not claim protection for their fixed and mobile services from the radiolocation service. (WRC-15)", '[5.429A]: Additional allocation: in Angola, Benin, Botswana, Burkina Faso, Burundi, Ghana, Guinea, Guinea-Bissau, Lesotho, Liberia, Malawi, Mauritania, Mozambique, Namibia, Niger, Nigeria, Rwanda, Sudan, South Sudan, South Africa, Swaziland, Tanzania, Chad, Togo, Zambia and Zimbabwe, the frequency band 3 300-3 400 MHz is allocated to the mobile, except aeronautical mobile, service on a primary basis. Stations in the mobile service operating in the frequency band 3 300-3 400 MHz shall not cause harmful interference to, or claim protection from, stations operating in the radiolocation service. (WRC-15)', '[5.429B]: In the following countries of Region 1 south of 30° parallel north: Angola, Benin, Botswana, Burkina Faso, Burundi, Cameroon, Congo (Rep. of the), Côte d’Ivoire, Egypt, Ghana, Guinea, Guinea-Bissau, Kenya, Lesotho, Liberia, Malawi, Mauritania, Mozambique, Namibia, Niger, Nigeria, Uganda, the Dem. Rep. of the Congo, Rwanda, Sudan, South Sudan, South Africa, Swaziland, Tanzania, Chad, Togo, Zambia and Zimbabwe, the frequency band 3 300-3 400 MHz is identified for the implementation of International Mobile Telecommunications (IMT). The use of this frequency band shall be in accordance with Resolution 223 (Rev.WRC-15). The use of the frequency band 3 300-3 400 MHz by IMT stations in the mobile service shall not cause harmful interference to, or claim protection from, systems in the radiolocation service, and administrations wishing to implement IMT shall obtain the agreement of neighbouring countries to protect operations within the radiolocation service. This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.430]: Additional allocation: in Azerbaijan, Kyrgyzstan and Turkmenistan, the frequency band 3 300-3 400 MHz is also allocated to the radionavigation service on a primary basis. (WRC-15)']), (3400000000, 3600000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile [5.430A]'], ['Radiolocation'], ['[5.430A]: The allocation of the frequency band 3 400-3 600 MHz to the mobile, except aeronautical mobile, service is subject to agreement obtained under No. 9.21. This frequency band is identified for International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The provisions of Nos. 9.17 and 9.18 shall also apply in the coordination phase. Before an administration brings into use a (base or mobile) station of the mobile service in this frequency band, it shall ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 × 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station) and with the assistance of the Bureau if so requested. In case of disagreement, calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service in the frequency band 3 400-3 600 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-15)', '[5.431]: Additional allocation: in Germany and Israel, the frequency band 3 400-3 475 MHz is also allocated to the amateur service on a secondary basis. (WRC-15)']), (3600000000, 4200000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], [], []), (4200000000, 4400000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.436]', 'Aeronautical Radionavigation [5.438]'], [], ['[5.436]: Use of the frequency band 4 200-4 400 MHz by stations in the aeronautical mobile (R) service is reserved exclusively for wireless avionics intra-communication systems that operate in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 424 (WRC-15). (WRC-15)', '[5.438]: Use of the frequency band 4 200-4 400 MHz by the aeronautical radionavigation service is reserved exclusively for radio altimeters installed on board aircraft and for the associated transponders on the ground. (WRC-15)', '[5.437]: Passive sensing in the Earth exploration-satellite and space research services may be authorized in the frequency band 4 200-4 400 MHz on a secondary basis. (WRC-15)', '[5.439]: Additional allocation: in Iran (Islamic Republic of), the band 4 200-4 400 MHz is also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.440]: The standard frequency and time signal-satellite service may be authorized to use the frequency 4 202 MHz for space-to-Earth transmissions and the frequency 6 427 MHz for Earth-to-space transmissions. Such transmissions shall be confined within the limits of ± 2 MHz of these frequencies, subject to agreement obtained under No. 9.21.']), (4400000000, 4500000001): (False, True, True, False, False, ['Mobile [5.440A]'], [], ['[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)']), (4500000000, 4800000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile [5.440A]'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)']), (4800000000, 4990000001): (False, True, True, False, False, ['Mobile [5.440A][5.441A][5.441B][5.442]'], ['Radio Astronomy'], ['[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)', '[5.441A]: In Uruguay, the frequency band 4 800-4 900 MHz, or portions thereof, is identified for the implementation of International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained with neighbouring countries, and IMT stations shall not claim protection from stations of other applications of the mobile service. Such use shall be in accordance with Resolution 223 (Rev.WRC-15). (WRC-15)', '[5.441B]: In Cambodia, Lao P.D.R. and Viet Nam, the frequency band 4 800-4 990 MHz, or portions thereof, is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained under No. 9.21 with concerned administrations, and IMT stations shall not claim protection from stations of other applications of the mobile service. In addition, before an administration brings into use an IMT station in the mobile service, it shall ensure that the power flux-density produced by this station does not exceed −155 dB(W/(m2 · 1 MHz)) produced up to 19 km above sea level at 20 km from the coast, defined as the low-water mark, as officially recognized by the coastal State. This criterion is subject to review at WRC-19. See Resolution 223 (Rev.WRC-15). This identification shall be effective after WRC-19. (WRC-15)', '[5.442]: In the frequency bands 4 825-4 835 MHz and 4 950-4 990 MHz, the allocation to the mobile service is restricted to the mobile, except aeronautical mobile, service. In Region 2 (except Brazil, Cuba, Guatemala, Mexico, Paraguay, Uruguay and Venezuela), and in Australia, the frequency band 4 825-4 835 MHz is also allocated to the aeronautical mobile service, limited to aeronautical mobile telemetry for flight testing by aircraft stations. Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to the fixed service. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.', '[5.443]: Different category of service: in Argentina, Australia and Canada, the allocation of the bands 4 825-4 835 MHz and 4 950-4 990 MHz to the radio astronomy service is on a primary basis (see No. 5.33).']), (4990000000, 5000000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], ['Space Research (Passive)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (5000000000, 5010000001): (False, False, False, False, False, ['Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation', 'Radionavigation-Satellite (Earth-To-Space)'], [], ['[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)']), (5010000000, 5030000001): (False, False, False, False, False, ['Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation', 'Radionavigation-Satellite (Space-To-Earth)', 'Radionavigation-Satellite (Space-To-Space)'], [], ['[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.443B]: In order not to cause harmful interference to the microwave landing system operating above 5 030 MHz, the aggregate power flux-density produced at the Earth’s surface in the frequency band 5 030-5 150 MHz by all the space stations within any radionavigation-satellite service system (space-to-Earth) operating in the frequency band 5 010-5 030 MHz shall not exceed −124.5 dB(W/m2) in a 150 kHz band. In order not to cause harmful interference to the radio astronomy service in the frequency band 4 990-5 000 MHz, radionavigation-satellite service systems operating in the frequency band 5 010-5 030 MHz shall comply with the limits in the frequency band 4 990-5 000 MHz defined in Resolution 741 (Rev.WRC-15). (WRC-15)']), (5030000000, 5091000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.443C]', 'Aeronautical Mobile-Satellite (R) [5.443D]', 'Aeronautical Radionavigation'], [], ['[5.443C]: The use of the frequency band 5 030-5 091 MHz by the aeronautical mobile (R) service is limited to internationally standardized aeronautical systems. Unwanted emissions from the aeronautical mobile (R) service in the frequency band 5 030-5 091 MHz shall be limited to protect RNSS system downlinks in the adjacent 5 010-5 030 MHz band. Until such time that an appropriate value is established in a relevant ITU-R Recommendation, the e.i.r.p. density limit of −75 dBW/MHz in the frequency band 5 010-5 030 MHz for any AM(R)S station unwanted emission should be used. (WRC-12)', '[5.443D]: In the frequency band 5 030-5 091 MHz, the aeronautical mobile-satellite (R) service is subject to coordination under No. 9.11A. The use of this frequency band by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.444]: The frequency band 5 030-5 150 MHz is to be used for the operation of the international standard system (microwave landing system) for precision approach and landing. In the frequency band 5 030-5 091 MHz, the requirements of this system shall have priority over other uses of this frequency band. For the use of the frequency band 5 091-5 150 MHz, No. 5.444A and Resolution 114 (Rev.WRC-15) apply. (WRC-15)']), (5091000000, 5150000001): (False, False, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.444A]', 'Aeronautical Mobile [5.444B]', 'Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation'], [], ['[5.444A]: The use of the allocation to the fixed-satellite service (Earth-to-space) in the frequency band 5 091-5 150 MHz is limited to feeder links of non-geostationary satellite systems in the mobile-satellite service and is subject to coordination under No. 9.11A. The use of the frequency band 5 091-5 150 MHz by feeder links of non-geostationary satellite systems in the mobile-satellite service shall be subject to application of Resolution 114 (Rev.WRC-15). Moreover, to ensure that the aeronautical radionavigation service is protected from harmful interference, coordination is required for feeder-link earth stations of the non-geostationary satellite systems in the mobile-satellite service which are separated by less than 450 km from the territory of an administration operating ground stations in the aeronautical radionavigation service. (WRC-15)', '[5.444B]: The use of the frequency band 5 091-5 150 MHz by the aeronautical mobile service is limited to:– systems operating in the aeronautical mobile (R) service and in accordance with international aeronautical standards, limited to surface applications at airports. Such use shall be in accordance with Resolution 748 (Rev.WRC-15); – aeronautical telemetry transmissions from aircraft stations (see No. 1.83) in accordance with Resolution 418 (Rev.WRC-15). (WRC-15) ', '[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.444]: The frequency band 5 030-5 150 MHz is to be used for the operation of the international standard system (microwave landing system) for precision approach and landing. In the frequency band 5 030-5 091 MHz, the requirements of this system shall have priority over other uses of this frequency band. For the use of the frequency band 5 091-5 150 MHz, No. 5.444A and Resolution 114 (Rev.WRC-15) apply. (WRC-15)']), (5150000000, 5250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.447A]', '(,5.446A,5.446B)', 'Aeronautical Radionavigation'], [], ['[5.447A]: The allocation to the fixed-satellite service (Earth-to-space) in the band 5 150-5 250 MHz is limited to feeder links of non-geostationary-satellite systems in the mobile-satellite service and is subject to coordination under No. 9.11A.', '[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.446B]: In the band 5 150-5 250 MHz, stations in the mobile service shall not claim protection from earth stations in the fixed-satellite service. No. 5.43A does not apply to the mobile service with respect to fixed-satellite service earth stations. (WRC-03)', '[5.446]: Additional allocation: in the countries listed in No. 5.369, the frequency band 5 150-5 216 MHz is also allocated to the radiodetermination-satellite service (space-to-Earth) on a primary basis, subject to agreement obtained under No. 9.21. In Region 2 (except in Mexico), the frequency band is also allocated to the radiodetermination-satellite service (space-to-Earth) on a primary basis. In Regions 1 and 3, except those countries listed in No. 5.369 and Bangladesh, the frequency band is also allocated to the radiodetermination-satellite service (space-to-Earth) on a secondary basis. The use by the radiodetermination-satellite service is limited to feeder links in conjunction with the radiodetermination-satellite service operating in the frequency bands 1 610-1 626.5 MHz and/or 2 483.5-2 500 MHz. The total power flux-density at the Earth’s surface shall in no case exceed −159 dB(W/m2) in any 4 kHz band for all angles of arrival. (WRC-15)', '[5.446C]: Additional allocation: in Region 1 (except in Algeria, Saudi Arabia, Bahrain, Egypt, United Arab Emirates, Jordan, Kuwait, Lebanon, Morocco, Oman, Qatar, Syrian Arab Republic, Sudan, South Sudan and Tunisia) and in Brazil, the band 5 150-5 250 MHz is also allocated to the aeronautical mobile service on a primary basis, limited to aeronautical telemetry transmissions from aircraft stations (see No. 1.83), in accordance with Resolution 418 (Rev.WRC-12)*. These stations shall not claim protection from other stations operating in accordance with Article 5. No. 5.43A does not apply. (WRC-12)', "[5.447]: Additional allocation: in Côte d'Ivoire, Egypt, Israel, Lebanon, the Syrian Arab Republic and Tunisia, the band 5 150-5 250 MHz is also allocated to the mobile service, on a primary basis, subject to agreement obtained under No. 9.21. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)", '[5.447B]: Additional allocation: the band 5 150-5 216 MHz is also allocated to the fixed-satellite service (space-to-Earth) on a primary basis. This allocation is limited to feeder links of non-geostationary-satellite systems in the mobile-satellite service and is subject to provisions of No. 9.11A. The power flux-density at the Earth’s surface produced by space stations of the fixed-satellite service operating in the space-to-Earth direction in the band 5 150-5 216 MHz shall in no case exceed –164 dB(W/m2) in any 4 kHz band for all angles of arrival.', '[5.447C]: Administrations responsible for fixed-satellite service networks in the band 5 150-5 250 MHz operated under Nos. 5.447A and 5.447B shall coordinate on an equal basis in accordance with No. 9.11A with administrations responsible for non-geostationary-satellite networks operated under No. 5.446 and brought into use prior to 17 November 1995. Satellite networks operated under No. 5.446 brought into use after 17 November 1995 shall not claim protection from, and shall not cause harmful interference to, stations of the fixed-satellite service operated under Nos. 5.447A and 5.447B.']), (5250000000, 5255000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', '(,5.446A,5.447F)', 'Radiolocation', 'Space Research [5.447D]'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.447F]: In the frequency band 5 250-5 350 MHz, stations in the mobile service shall not claim protection from the radiolocation service, the Earth exploration-satellite service (active) and the space research service (active). These services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendations ITU-R M.1638-0 and ITU-R RS.1632-0. (WRC-15)', '[5.447D]: The allocation of the band 5 250-5 255 MHz to the space research service on a primary basis is limited to active spaceborne sensors. Other uses of the band by the space research service are on a secondary basis. (WRC-97)', '[5.447E]: Additional allocation: The frequency band 5 250-5 350 MHz is also allocated to the fixed service on a primary basis in the following countries in Region 3: Australia, Korea (Rep. of), India, Indonesia, Iran (Islamic Republic of), Japan, Malaysia, Papua New Guinea, the Philippines, Dem. People’s Rep. of Korea, Sri Lanka, Thailand and Viet Nam. The use of this frequency band by the fixed service is intended for the implementation of fixed wireless access systems and shall comply with Recommendation ITU-R F.1613-0. In addition, the fixed service shall not claim protection from the radiodetermination, Earth exploration-satellite (active) and space research (active) services, but the provisions of No. 5.43A do not apply to the fixed service with respect to the Earth exploration-satellite (active) and space research (active) services. After implementation of fixed wireless access systems in the fixed service with protection for the existing radiodetermination systems, no more stringent constraints should be imposed on the fixed wireless access systems by future radiodetermination implementations. (WRC-15)', '[5.448]: Additional allocation: in Azerbaijan, Kyrgyzstan, Romania and Turkmenistan, the band 5 250-5 350 MHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.448A]: The Earth exploration-satellite (active) and space research (active) services in the frequency band 5 250-5 350 MHz shall not claim protection from the radiolocation service. No. 5.43A does not apply. (WRC-03)']), (5255000000, 5350000001): (False, False, True, False, False, ['Earth Exploration-Satellite (Active)', 'Mobile Except Aeronautical Mobile [5.446A][5.447F]', 'Radiolocation', 'Space Research (Active)'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.447F]: In the frequency band 5 250-5 350 MHz, stations in the mobile service shall not claim protection from the radiolocation service, the Earth exploration-satellite service (active) and the space research service (active). These services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendations ITU-R M.1638-0 and ITU-R RS.1632-0. (WRC-15)', '[5.447E]: Additional allocation: The frequency band 5 250-5 350 MHz is also allocated to the fixed service on a primary basis in the following countries in Region 3: Australia, Korea (Rep. of), India, Indonesia, Iran (Islamic Republic of), Japan, Malaysia, Papua New Guinea, the Philippines, Dem. People’s Rep. of Korea, Sri Lanka, Thailand and Viet Nam. The use of this frequency band by the fixed service is intended for the implementation of fixed wireless access systems and shall comply with Recommendation ITU-R F.1613-0. In addition, the fixed service shall not claim protection from the radiodetermination, Earth exploration-satellite (active) and space research (active) services, but the provisions of No. 5.43A do not apply to the fixed service with respect to the Earth exploration-satellite (active) and space research (active) services. After implementation of fixed wireless access systems in the fixed service with protection for the existing radiodetermination systems, no more stringent constraints should be imposed on the fixed wireless access systems by future radiodetermination implementations. (WRC-15)', '[5.448]: Additional allocation: in Azerbaijan, Kyrgyzstan, Romania and Turkmenistan, the band 5 250-5 350 MHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.448A]: The Earth exploration-satellite (active) and space research (active) services in the frequency band 5 250-5 350 MHz shall not claim protection from the radiolocation service. No. 5.43A does not apply. (WRC-03)']), (5350000000, 5460000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.448B]', 'Radiolocation [5.448D]', 'Aeronautical Radionavigation [5.449]', '(,5.448C)'], [], ['[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)', '[5.448D]: In the frequency band 5 350-5 470 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the aeronautical radionavigation service operating in accordance with No. 5.449. (WRC-03)', '[5.449]: The use of the band 5 350-5 470 MHz by the aeronautical radionavigation service is limited to airborne radars and associated airborne beacons.', '[5.448C]: The space research service (active) operating in the band 5 350-5 460 MHz shall not cause harmful interference to nor claim protection from other services to which this band is allocated. (WRC-03)']), (5460000000, 5470000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation [5.448D]', 'Radionavigation [5.449]', 'Space Research (Active)'], [], ['[5.448D]: In the frequency band 5 350-5 470 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the aeronautical radionavigation service operating in accordance with No. 5.449. (WRC-03)', '[5.449]: The use of the band 5 350-5 470 MHz by the aeronautical radionavigation service is limited to airborne radars and associated airborne beacons.', '[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)']), (5470000000, 5570000001): (False, False, True, False, False, ['Earth Exploration-Satellite (Active)', 'Mobile Except Aeronautical Mobile [5.446A][5.450A]', 'Radiolocation [5.450B]', 'Maritime Radionavigation', ''], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.450B]: In the frequency band 5 470-5 650 MHz, stations in the radiolocation service, except ground-based radars used for meteorological purposes in the band 5 600-5 650 MHz, shall not cause harmful interference to, nor claim protection from, radar systems in the maritime radionavigation service. (WRC-03)', '[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)', '[5.450]: Additional allocation: in Austria, Azerbaijan, Iran (Islamic Republic of), Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 5 470-5 650 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.']), (5570000000, 5650000001): (False, False, True, False, False, ['Mobile Except Aeronautical Mobile [5.446A][5.450A]', '(,5.450B)', 'Maritime Radionavigation'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.450B]: In the frequency band 5 470-5 650 MHz, stations in the radiolocation service, except ground-based radars used for meteorological purposes in the band 5 600-5 650 MHz, shall not cause harmful interference to, nor claim protection from, radar systems in the maritime radionavigation service. (WRC-03)', '[5.450]: Additional allocation: in Austria, Azerbaijan, Iran (Islamic Republic of), Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 5 470-5 650 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.452]: Between 5 600 MHz and 5 650 MHz, ground-based radars used for meteorological purposes are authorized to operate on a basis of equality with stations of the maritime radionavigation service.']), (5650000000, 5725000001): (True, False, True, False, False, ['Mobile Except Aeronautical Mobile [5.446A][5.450A]', 'Radiolocation'], ['Amateur', 'Space Research (Deep Space)'], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.454]: Different category of service: in Azerbaijan, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 5 670-5 725 MHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5725000000, 5830000001): (True, False, False, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radiolocation'], ['Amateur'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5830000000, 5850000001): (True, False, False, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radiolocation'], ['Amateur', 'Amateur-Satellite (Space-To-Earth)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5850000000, 5925000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (5925000000, 6700000001): (False, True, True, False, False, ['Fixed [5.457]', 'Fixed-Satellite (Earth-To-Space) [5.457A][5.457B]', 'Mobile [5.457C]'], [], ["[5.457]: In Australia, Burkina Faso, Cote d'Ivoire, Mali and Nigeria, the allocation to the fixed service in the bands 6 440-6 520 MHz (HAPS-to-ground direction) and 6 560-6 640 MHz (ground-to-HAPS direction) may also be used by gateway links for high-altitude platform stations (HAPS) within the territory of these countries. Such use is limited to operation in HAPS gateway links and shall not cause harmful interference to, and shall not claim protection from, existing services, and shall be in compliance with Resolution 150 (WRC-12). Existing services shall not be constrained in future development by HAPS gateway links. The use of HAPS gateway links in these bands requires explicit agreement with other administrations whose territories are located within 1 000 kilometres from the border of an administration intending to use the HAPS gateway links. (WRC-12)", '[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.457C]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Mexico, Paraguay, Uruguay and Venezuela), the frequency band 5 925-6 700 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, or claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this frequency band by other mobile service applications or by other services to which this frequency band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.440]: The standard frequency and time signal-satellite service may be authorized to use the frequency 4 202 MHz for space-to-Earth transmissions and the frequency 6 427 MHz for Earth-to-space transmissions. Such transmissions shall be confined within the limits of ± 2 MHz of these frequencies, subject to agreement obtained under No. 9.21.', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.']), (6700000000, 7075000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.441]', 'Fixed-Satellite (Space-To-Earth) [5.441]'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.458A]: In making assignments in the band 6 700-7 075 MHz to space stations of the fixed-satellite service, administrations are urged to take all practicable steps to protect spectral line observations of the radio astronomy service in the band 6 650-6 675.2 MHz from harmful interference from unwanted emissions.', '[5.458B]: The space-to-Earth allocation to the fixed-satellite service in the band 6 700-7 075 MHz is limited to feeder links for non-geostationary satellite systems of the mobile-satellite service and is subject to coordination under No. 9.11A. The use of the band 6 700-7 075 MHz (space-to-Earth) by feeder links for non-geostationary satellite systems in the mobile-satellite service is not subject to No. 22.2.']), (7075000000, 7145000001): (False, True, True, False, False, [], [], ['[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7145000000, 7190000001): (False, True, True, False, False, ['Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7190000000, 7235000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space) [5.460A][5.460B]', 'Space Research (Earth-To-Space) [5.460]'], [], ['[5.460A]: The use of the frequency band 7 190-7 250 MHz (Earth-to-space) by the Earth exploration-satellite service shall be limited to tracking, telemetry and command for the operation of spacecraft. Space stations operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 250 MHz shall not claim protection from existing and future stations in the fixed and mobile services, and No. 5.43A does not apply. No. 9.17 applies. Additionally, to ensure protection of the existing and future deployment of fixed and mobile services, the location of earth stations supporting spacecraft in the Earth exploration-satellite service in non-geostationary orbits or geostationary orbit shall maintain a separation distance of at least 10 km and 50 km, respectively, from the respective border(s) of neighbouring countries, unless a shorter distance is otherwise agreed between the corresponding administrations. (WRC-15)', '[5.460B]: Space stations on the geostationary orbit operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 235 MHz shall not claim protection from existing and future stations of the space research service, and No. 5.43A does not apply. (WRC-15)', '[5.460]: No emissions from space research service (Earth-to-space) systems intended for deep space shall be effected in the frequency band 7 190-7 235 MHz. Geostationary satellites in the space research service operating in the frequency band 7 190-7 235 MHz shall not claim protection from existing and future stations of the fixed and mobile services and No. 5.43A does not apply. (WRC-15)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7235000000, 7250000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space) [5.460A]'], [], ['[5.460A]: The use of the frequency band 7 190-7 250 MHz (Earth-to-space) by the Earth exploration-satellite service shall be limited to tracking, telemetry and command for the operation of spacecraft. Space stations operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 250 MHz shall not claim protection from existing and future stations in the fixed and mobile services, and No. 5.43A does not apply. No. 9.17 applies. Additionally, to ensure protection of the existing and future deployment of fixed and mobile services, the location of earth stations supporting spacecraft in the Earth exploration-satellite service in non-geostationary orbits or geostationary orbit shall maintain a separation distance of at least 10 km and 50 km, respectively, from the respective border(s) of neighbouring countries, unless a shorter distance is otherwise agreed between the corresponding administrations. (WRC-15)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.']), (7250000000, 7300000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (7300000000, 7375000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (7375000000, 7450000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)']), (7450000000, 7550000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)', '[5.461A]: The use of the band 7 450-7 550 MHz by the meteorological-satellite service (space-to-Earth) is limited to geostationary-satellite systems. Non-geostationary meteorological-satellite systems in this band notified before 30 November 1997 may continue to operate on a primary basis until the end of their lifetime. (WRC-97)']), (7550000000, 7750000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)']), (7750000000, 7900000001): (False, True, True, False, False, ['Meteorological-Satellite (Space-To-Earth) [5.461B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.461B]: The use of the band 7 750-7 900 MHz by the meteorological-satellite service (space-to-Earth) is limited to non-geostationary satellite systems. (WRC-12)']), (7900000000, 8025000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (8025000000, 8175000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8175000000, 8215000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8215000000, 8400000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8400000000, 8500000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth) [5.465][5.466]'], [], ['[5.465]: In the space research service, the use of the band 8 400-8 450 MHz is limited to deep space.', '[5.466]: Different category of service: in Singapore and Sri Lanka, the allocation of the band 8 400-8 500 MHz to the space research service is on a secondary basis (see No. 5.32). (WRC-12)']), (8500000000, 8550000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)']), (8550000000, 8650000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)', '[5.469A]: In the band 8 550-8 650 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, or constrain the use and development of, stations of the radiolocation service. (WRC-97)']), (8650000000, 8750000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)']), (8750000000, 8850000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.470]'], [], ['[5.470]: The use of the band 8 750-8 850 MHz by the aeronautical radionavigation service is limited to airborne Doppler navigation aids on a centre frequency of 8 800 MHz.', '[5.471]: Additional allocation: in Algeria, Germany, Bahrain, Belgium, China, Egypt, the United Arab Emirates, France, Greece, Indonesia, Iran (Islamic Republic of), Libya, the Netherlands, Qatar and Sudan, the frequency bands 8 825-8 850 MHz and 9 000-9 200 MHz are also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars only. (WRC-15)']), (8850000000, 9000000001): (False, False, False, False, False, ['Radiolocation', 'Maritime Radionavigation [5.472]'], [], ['[5.472]: In the bands 8 850-9 000 MHz and 9 200-9 225 MHz, the maritime radionavigation service is limited to shore-based radars.', '[5.473]: Additional allocation: in Armenia, Austria, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Mongolia, Uzbekistan, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the bands 8 850-9 000 MHz and 9 200-9 300 MHz are also allocated to the radionavigation service on a primary basis. (WRC-07)']), (9000000000, 9200000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.337]'], [], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.471]: Additional allocation: in Algeria, Germany, Bahrain, Belgium, China, Egypt, the United Arab Emirates, France, Greece, Indonesia, Iran (Islamic Republic of), Libya, the Netherlands, Qatar and Sudan, the frequency bands 8 825-8 850 MHz and 9 000-9 200 MHz are also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars only. (WRC-15)', '[5.473A]: In the band 9 000-9 200 MHz, stations operating in the radiolocation service shall not cause harmful interference to, nor claim protection from, systems identified in No. 5.337 operating in the aeronautical radionavigation service, or radar systems in the maritime radionavigation service operating in this band on a primary basis in the countries listed in No. 5.471. (WRC-07)']), (9200000000, 9300000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation', 'Maritime Radionavigation [5.472]'], [], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.472]: In the bands 8 850-9 000 MHz and 9 200-9 225 MHz, the maritime radionavigation service is limited to shore-based radars.', '[5.473]: Additional allocation: in Armenia, Austria, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Mongolia, Uzbekistan, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the bands 8 850-9 000 MHz and 9 200-9 300 MHz are also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.474]: In the band 9 200-9 500 MHz, search and rescue transponders (SART) may be used, having due regard to the appropriate ITU-R Recommendation (see also Article 31).', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)']), (9300000000, 9500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation', 'Space Research (Active)'], [], ['[5.427]: In the bands 2 900-3 100 MHz and 9 300-9 500 MHz, the response from radar transponders shall not be capable of being confused with the response from radar beacons (racons) and shall not cause interference to ship or aeronautical radars in the radionavigation service, having regard, however, to No. 4.9.', '[5.474]: In the band 9 200-9 500 MHz, search and rescue transponders (SART) may be used, having due regard to the appropriate ITU-R Recommendation (see also Article 31).', '[5.475]: The use of the band 9 300-9 500 MHz by the aeronautical radionavigation service is limited to airborne weather radars and ground-based radars. In addition, ground-based radar beacons in the aeronautical radionavigation service are permitted in the band 9 300-9 320 MHz on condition that harmful interference is not caused to the maritime radionavigation service. (WRC-07)', '[5.475A]: The use of the band 9 300-9 500 MHz by the Earth exploration-satellite service (active) and the space research service (active) is limited to systems requiring necessary bandwidth greater than 300 MHz that cannot be fully accommodated within the 9 500-9 800 MHz band. (WRC-07)', '[5.475B]: In the band 9 300-9 500 MHz, stations operating in the radiolocation service shall not cause harmful interference to, nor claim protection from, radars operating in the radionavigation service in conformity with the Radio Regulations. Ground-based radars used for meteorological purposes have priority over other radiolocation uses. (WRC-07)', '[5.476A]: In the band 9 300-9 800 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from, stations of the radionavigation and radiolocation services. (WRC-07)']), (9500000000, 9800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation', 'Space Research (Active)'], [], ['[5.476A]: In the band 9 300-9 800 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from, stations of the radionavigation and radiolocation services. (WRC-07)']), (9800000000, 9900000001): (False, True, False, False, False, ['Radiolocation'], ['Earth Exploration-Satellite (Active)', 'Space Research (Active)'], ['[5.477]: Different category of service: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Japan, Jordan, Kuwait, Lebanon, Liberia, Malaysia, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Trinidad and Tobago, and Yemen, the allocation of the frequency band 9 800-10 000 MHz to the fixed service is on a primary basis (see No. 5.33). (WRC-15)', '[5.478]: Additional allocation: in Azerbaijan, Mongolia, Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 9 800-10 000 MHz is also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.478A]: The use of the band 9 800-9 900 MHz by the Earth exploration-satellite service (active) and the space research service (active) is limited to systems requiring necessary bandwidth greater than 500 MHz that cannot be fully accommodated within the 9 300-9 800 MHz band. (WRC-07)', '[5.478B]: In the band 9 800-9 900 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from stations of the fixed service to which this band is allocated on a secondary basis. (WRC-07)']), (9900000000, 10000000001): (False, True, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation'], [], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)', '[5.477]: Different category of service: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Japan, Jordan, Kuwait, Lebanon, Liberia, Malaysia, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Trinidad and Tobago, and Yemen, the allocation of the frequency band 9 800-10 000 MHz to the fixed service is on a primary basis (see No. 5.33). (WRC-15)', '[5.478]: Additional allocation: in Azerbaijan, Mongolia, Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 9 800-10 000 MHz is also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.479]: The band 9 975-10 025 MHz is also allocated to the meteorological-satellite service on a secondary basis for use by weather radars.']), (10000000000, 10400000001): (True, True, True, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation'], ['Amateur'], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)', '[5.479]: The band 9 975-10 025 MHz is also allocated to the meteorological-satellite service on a secondary basis for use by weather radars.']), (10400000000, 10450000001): (True, True, True, False, False, ['Radiolocation'], ['Amateur'], []), (10450000000, 10500000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite'], ["[5.481]: Additional allocation: in Algeria, Germany, Angola, Brazil, China, Côte d'Ivoire, El Salvador, Ecuador, Spain, Guatemala, Hungary, Japan, Kenya, Morocco, Nigeria, Oman, Uzbekistan, Pakistan, Paraguay, Peru, the Dem. People’s Rep. of Korea, Romania and Uruguay, the frequency band 10.45-10.5 GHz is also allocated to the fixed and mobile services on a primary basis. In Costa Rica, the frequency band 10.45-10.5 GHz is also allocated to the fixed service on a primary basis. (WRC-15)"]), (10500000000, 10550000001): (False, True, True, False, False, [], ['Radiolocation'], []), (10550000000, 10600000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], []), (10600000000, 10680000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy', 'Space Research (Passive)'], ['Radiolocation'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.482]: In the band 10.6-10.68 GHz, the power delivered to the antenna of stations of the fixed and mobile, except aeronautical mobile, services shall not exceed −3 dBW. This limit may be exceeded, subject to agreement obtained under No. 9.21. However, in Algeria, Saudi Arabia, Armenia, Azerbaijan, Bahrain, Bangladesh, Belarus, Egypt, United Arab Emirates, Georgia, India, Indonesia, Iran (Islamic Republic of), Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Morocco, Mauritania, Moldova, Nigeria, Oman, Uzbekistan, Pakistan, Philippines, Qatar, Syrian Arab Republic, Kyrgyzstan, Singapore, Tajikistan, Tunisia, Turkmenistan and Viet Nam, this restriction on the fixed and mobile, except aeronautical mobile, services is not applicable. (WRC-07)', '[5.482A]: For sharing of the band 10.6-10.68 GHz between the Earth exploration-satellite (passive) service and the fixed and mobile, except aeronautical mobile, services, Resolution 751 (WRC-07) applies. (WRC-07)']), (10680000000, 10700000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.483]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, China, Colombia, Korea (Rep. of), Costa Rica, Egypt, the United Arab Emirates, Georgia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Lebanon, Mongolia, Qatar, Kyrgyzstan, the Dem. People’s Rep. of Korea, Tajikistan, Turkmenistan and Yemen, the band 10.68-10.7 GHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. Such use is limited to equipment in operation by 1 January 1985. (WRC-12)']), (10700000000, 10950000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Fixed-Satellite (Earth-To-Space) [5.484]', 'Mobile Except Aeronautical Mobile'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484]: In Region 1, the use of the band 10.7-11.7 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service.']), (10950000000, 11200000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Fixed-Satellite (Earth-To-Space) [5.484]', 'Mobile Except Aeronautical Mobile'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.484]: In Region 1, the use of the band 10.7-11.7 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service.']), (11200000000, 11450000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Fixed-Satellite (Earth-To-Space) [5.484]', 'Mobile Except Aeronautical Mobile'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484]: In Region 1, the use of the band 10.7-11.7 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service.']), (11450000000, 11700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Fixed-Satellite (Earth-To-Space) [5.484]', 'Mobile Except Aeronautical Mobile'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.484]: In Region 1, the use of the band 10.7-11.7 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service.']), (11700000000, 12500000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile', 'Broadcasting', 'Broadcasting-Satellite [5.492]'], [], ['[5.492]: Assignments to stations of the broadcasting-satellite service which are in conformity with the appropriate regional Plan or included in the Regions 1 and 3 List in Appendix 30 may also be used for transmissions in the fixed-satellite service (space-to-Earth), provided that such transmissions do not cause more interference, or require more protection from interference, than the broadcasting-satellite service transmissions operating in conformity with the Plan or the List, as appropriate. (WRC-2000)', '[5.487]: In the band 11.7-12.5 GHz in Regions 1 and 3, the fixed, fixed-satellite, mobile, except aeronautical mobile, and broadcasting services, in accordance with their respective allocations, shall not cause harmful interference to, or claim protection from, broadcasting-satellite stations operating in accordance with the Regions 1 and 3 Plan in Appendix 30. (WRC-03)', '[5.487A]: Additional allocation: in Region 1, the band 11.7-12.5 GHz, in Region 2, the band 12.2-12.7 GHz and, in Region 3, the band 11.7-12.2 GHz, are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis, limited to non-geostationary systems and subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the broadcasting-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-03)']), (12500000000, 12750000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Fixed-Satellite (Earth-To-Space)'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.494]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Cameroon, the Central African Rep., Congo (Rep. of the), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, Guinea, Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Madagascar, Mali, Morocco, Mongolia, Nigeria, Oman, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 12.5-12.75 GHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)', '[5.495]: Additional allocation: in France, Greece, Monaco, Montenegro, Uganda, Romania and Tunisia, the frequency band 12.5-12.75 GHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a secondary basis. (WRC-15)', '[5.496]: Additional allocation: in Austria, Azerbaijan, Kyrgyzstan and Turkmenistan, the band 12.5-12.75 GHz is also allocated to the fixed service and the mobile, except aeronautical mobile, service on a primary basis. However, stations in these services shall not cause harmful interference to fixed-satellite service earth stations of countries in Region 1 other than those listed in this footnote. Coordination of these earth stations is not required with stations of the fixed and mobile services of the countries listed in this footnote. The power flux-density limit at the Earth’s surface given in Table 21-4 of Article 21, for the fixed-satellite service shall apply on the territory of the countries listed in this footnote. (WRC-2000)']), (12750000000, 13250000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.441]'], ['Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (13250000000, 13400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Aeronautical Radionavigation [5.497]', 'Space Research (Active)'], [], ['[5.497]: The use of the band 13.25-13.4 GHz by the aeronautical radionavigation service is limited to Doppler navigation aids.', '[5.498A]: The Earth exploration-satellite (active) and space research (active) services operating in the band 13.25-13.4 GHz shall not cause harmful interference to, or constrain the use and development of, the aeronautical radionavigation service. (WRC-97)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)']), (13400000000, 13650000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Fixed-Satellite (Space-To-Earth) [5.499A][5.499B]', 'Radiolocation', 'Space Research [5.499C][5.499D]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.499A]: The use of the frequency band 13.4-13.65 GHz by the fixed-satellite service (space-to-Earth) is limited to geostationary-satellite systems and is subject to agreement obtained under No. 9.21 with respect to satellite systems operating in the space research service (space-to-space) to relay data from space stations in the geostationary-satellite orbit to associated space stations in non-geostationary satellite orbits for which advance publication information has been received by the Bureau by 27 November 2015. (WRC-15)', '[5.499B]: Administrations shall not preclude the deployment and operation of transmitting earth stations in the standard frequency and time signal-satellite service (Earth-to-space) allocated on a secondary basis in the frequency band 13.4-13.65 GHz due to the primary allocation to FSS (space-to-Earth). (WRC-15)', '[5.499C]: The allocation of the frequency band 13.4-13.65 GHz to the space research service on a primary basis is limited to:– satellite systems operating in the space research service (space-to-space) to relay data from space stations in the geostationary-satellite orbit to associated space stations in non-geostationary satellite orbits for which advance publication information has been received by the Bureau by 27 November 2015, – active spaceborne sensors, – satellite systems operating in the space research service (space-to-Earth) to relay data from space stations in the geostationary-satellite orbit to associated earth stations. Other uses of the frequency band by the space research service are on a secondary basis. (WRC-15) ', '[5.499D]: In the frequency band 13.4-13.65 GHz, satellite systems in the space research service (space-to-Earth) and/or the space research service (space-to-space) shall not cause harmful interference to, nor claim protection from, stations in the fixed, mobile, radiolocation and Earth exploration-satellite (active) services. (WRC-15)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.499E]: In the frequency band 13.4-13.65 GHz, geostationary-satellite networks in the fixed-satellite service (space-to-Earth) shall not claim protection from space stations in the Earth exploration-satellite service (active) operating in accordance with these Regulations, and No. 5.43A does not apply. The provisions of No. 22.2 do not apply to the Earth exploration-satellite service (active) with respect to the fixed-satellite service (space-to-Earth) in this frequency band. (WRC-15)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.501B]: In the band 13.4-13.75 GHz, the Earth exploration-satellite (active) and space research (active) services shall not cause harmful interference to, or constrain the use and development of, the radiolocation service. (WRC-97)']), (13650000000, 13750000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research [5.501A]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.501A]: The allocation of the frequency band 13.65-13.75 GHz to the space research service on a primary basis is limited to active spaceborne sensors. Other uses of the frequency band by the space research service are on a secondary basis. (WRC-15)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.501B]: In the band 13.4-13.75 GHz, the Earth exploration-satellite (active) and space research (active) services shall not cause harmful interference to, or constrain the use and development of, the radiolocation service. (WRC-97)']), (13750000000, 14000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A]', 'Radiolocation'], ['Earth Exploration-Satellite', 'Standard Frequency And Time Signal-Satellite (Earth-To-Space)', 'Space Research'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.502]: In the band 13.75-14 GHz, an earth station of a geostationary fixed-satellite service network shall have a minimum antenna diameter of 1.2 m and an earth station of a non-geostationary fixed-satellite service system shall have a minimum antenna diameter of 4.5 m. In addition, the e.i.r.p., averaged over one second, radiated by a station in the radiolocation or radionavigation services shall not exceed 59 dBW for elevation angles above 2° and 65 dBW at lower angles. Before an administration brings into use an earth station in a geostationary-satellite network in the fixed-satellite service in this band with an antenna diameter smaller than 4.5 m, it shall ensure that the power flux-density produced by this earth station does not exceed:– –115 dB(W/(m2 · 10 MHz)) for more than 1% of the time produced at 36 m above sea level at the low water mark, as officially recognized by the coastal State; – –115 dB(W/(m2 · 10 MHz)) for more than 1% of the time produced 3 m above ground at the border of the territory of an administration deploying or planning to deploy land mobile radars in this band, unless prior agreement has been obtained. For earth stations within the fixed-satellite service having an antenna diameter greater than or equal to 4.5 m, the e.i.r.p. of any emission should be at least 68 dBW and should not exceed 85 dBW. (WRC-03) ', '[5.503]: In the band 13.75-14 GHz, geostationary space stations in the space research service for which information for advance publication has been received by the Bureau prior to 31 January 1992 shall operate on an equal basis with stations in the fixed-satellite service; after that date, new geostationary space stations in the space research service will operate on a secondary basis. Until those geostationary space stations in the space research service for which information for advance publication has been received by the Bureau prior to 31 January 1992 cease to operate in this band:– in the band 13.77-13.78 GHz, the e.i.r.p. density of emissions from any earth station in the fixed-satellite service operating with a space station in geostationary-satellite orbit shall not exceed: i) 4.7D + 28 dB(W/40 kHz), where D is the fixed-satellite service earth station antenna diameter (m) for antenna diameters equal to or greater than 1.2 m and less than 4.5 m; ii) 49.2 + 20 log(D/4.5) dB(W/40 kHz), where D is the fixed-satellite service earth station antenna diameter (m) for antenna diameters equal to or greater than 4.5 m and less than 31.9 m; iii) 66.2 dB(W/40 kHz) for any fixed-satellite service earth station for antenna diameters (m) equal to or greater than 31.9 m; iv) 56.2 dB(W/4 kHz) for narrow-band (less than 40 kHz of necessary bandwidth) fixed-satellite service earth station emissions from any fixed-satellite service earth station having an antenna diameter of 4.5 m or greater; – the e.i.r.p. density of emissions from any earth station in the fixed-satellite service operating with a space station in non-geostationary-satellite orbit shall not exceed 51 dBW in the 6 MHz band from 13.772 to 13.778 GHz. Automatic power control may be used to increase the e.i.r.p. density in these frequency ranges to compensate for rain attenuation, to the extent that the power flux-density at the fixed-satellite service space station does not exceed the value resulting from use by an earth station of an e.i.r.p. meeting the above limits in clear-sky conditions. (WRC-03)']), (14000000000, 14250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Radionavigation [5.504]'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.504C][5.506A]', 'Space Research'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504]: The use of the band 14-14.3 GHz by the radionavigation service shall be such as to provide sufficient protection to space stations of the fixed-satellite service.', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.504C]: In the frequency band 14-14.25 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Côte d’Ivoire, Egypt, Guinea, India, Iran (Islamic Republic of), Kuwait, Nigeria, Oman, the Syrian Arab Republic and Tunisia by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)', '[5.505]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Botswana, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Oman, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Swaziland, Chad, Viet Nam and Yemen, the frequency band 14-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-15)']), (14250000000, 14300000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Radionavigation [5.504]'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.508A]', 'Space Research'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504]: The use of the band 14-14.3 GHz by the radionavigation service shall be such as to provide sufficient protection to space stations of the fixed-satellite service.', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.508A]: In the frequency band 14.25-14.3 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, China, Côte d’Ivoire, Egypt, France, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom and Tunisia by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)', '[5.505]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Botswana, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Oman, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Swaziland, Chad, Viet Nam and Yemen, the frequency band 14-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-15)', '[5.508]: Additional allocation: in Germany, France, Italy, Libya, The Former Yugoslav Rep. of Macedonia and the United Kingdom, the band 14.25-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (14300000000, 14400000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Radionavigation-Satellite'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14400000000, 14470000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Space Research (Space-To-Earth)'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14470000000, 14500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Radio Astronomy'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14500000000, 14750000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.509B][5.509C][5.509D][5.509E][5.509F][5.510]'], ['Space Research [5.509G]'], ['[5.509B]: The use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service is limited to geostationary-satellites. (WRC-15)', '[5.509C]: For the use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service, the fixed-satellite service earth stations shall have a minimum antenna diameter of 6 m and a maximum power spectral density of −44.5 dBW/Hz at the input of the antenna. The earth stations shall be notified at known locations on land. (WRC-15)', '[5.509D]: Before an administration brings into use an earth station in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service in the frequency bands 14.5-14.75 GHz (in countries listed in Resolution 163 (WRC-15)) and 14.5-14.8 GHz (in countries listed in Resolution 164 (WRC-15)), it shall ensure that the power flux-density produced by this earth station does not exceed −151.5 dB(W/(m2 · 4 kHz)) produced at all altitudes from 0 m to 19 000 m above sea level at 22 km seaward from all coasts, defined as the low-water mark, as officially recognized by each coastal State. (WRC-15)', '[5.509E]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), the location of earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall maintain a separation distance of at least 500 km from the border(s) of other countries unless shorter distances are explicitly agreed by those administrations. No. 9.17 does not apply. When applying this provision, administrations should consider the relevant parts of these Regulations and the latest relevant ITU-R Recommendations. (WRC-15)', '[5.509F]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall not constrain the future deployment of the fixed and mobile services. (WRC-15)', '[5.510]: Except for use in accordance with Resolution 163 (WRC-15) and Resolution 164 (WRC-15), the use of the frequency band 14.5-14.8 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. This use is reserved for countries outside Europe. Uses other than feeder links for the broadcasting-satellite service are not authorized in Regions 1 and 2 in the frequency band 14.75-14.8 GHz. (WRC-15)', '[5.509G]: The frequency band 14.5-14.8 GHz is also allocated to the space research service on a primary basis. However, such use is limited to the satellite systems operating in the space research service (Earth-to-space) to relay data to space stations in the geostationary-satellite orbit from associated earth stations. Stations in the space research service shall not cause harmful interference to, or claim protection from, stations in the fixed and mobile services and in the fixed-satellite service limited to feeder links for the broadcasting-satellite service and associated space operations functions using the guardbands under Appendix 30A and feeder links for the broadcasting-satellite service in Region 2. Other uses of this frequency band by the space research service are on a secondary basis. (WRC-15)']), (14750000000, 14800000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.510]'], ['Space Research [5.509G]'], ['[5.510]: Except for use in accordance with Resolution 163 (WRC-15) and Resolution 164 (WRC-15), the use of the frequency band 14.5-14.8 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. This use is reserved for countries outside Europe. Uses other than feeder links for the broadcasting-satellite service are not authorized in Regions 1 and 2 in the frequency band 14.75-14.8 GHz. (WRC-15)', '[5.509G]: The frequency band 14.5-14.8 GHz is also allocated to the space research service on a primary basis. However, such use is limited to the satellite systems operating in the space research service (Earth-to-space) to relay data to space stations in the geostationary-satellite orbit from associated earth stations. Stations in the space research service shall not cause harmful interference to, or claim protection from, stations in the fixed and mobile services and in the fixed-satellite service limited to feeder links for the broadcasting-satellite service and associated space operations functions using the guardbands under Appendix 30A and feeder links for the broadcasting-satellite service in Region 2. Other uses of this frequency band by the space research service are on a secondary basis. (WRC-15)']), (14800000000, 15350000001): (False, True, True, False, False, [], ['Space Research'], ['[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.']), (15350000000, 15400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.511]: Additional allocation: in Saudi Arabia, Bahrain, Cameroon, Egypt, the United Arab Emirates, Guinea, Iran (Islamic Republic of), Iraq, Israel, Kuwait, Lebanon, Oman, Pakistan, Qatar, the Syrian Arab Republic and Somalia, the band 15.35-15.4 GHz is also allocated to the fixed and mobile services on a secondary basis. (WRC-12)']), (15400000000, 15430000001): (False, False, False, False, False, ['Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)']), (15430000000, 15630000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.511A]', 'Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511A]: Use of the frequency band 15.43-15.63 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links of non-geostationary systems in the mobile-satellite service, subject to coordination under No. 9.11A. (WRC-15)', '[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)', '[5.511C]: Stations operating in the aeronautical radionavigation service shall limit the effective e.i.r.p. in accordance with Recommendation ITU-R S.1340-0. The minimum coordination distance required to protect the aeronautical radionavigation stations (No. 4.10 applies) from harmful interference from feeder-link earth stations and the maximum e.i.r.p. transmitted towards the local horizontal plane by a feeder-link earth station shall be in accordance with Recommendation ITU-R S.1340-0. (WRC-15)']), (15630000000, 15700000001): (False, False, False, False, False, ['Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)']), (15700000000, 16600000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (16600000000, 17100000001): (False, False, False, False, False, ['Radiolocation'], ['Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (17100000000, 17200000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (17200000000, 17300000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.', '[5.513A]: Spaceborne active sensors operating in the band 17.2-17.3 GHz shall not cause harmful interference to, or constrain the development of, the radiolocation and other services allocated on a primary basis. (WRC-97)']), (17300000000, 17700000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516]', 'Fixed-Satellite (Space-To-Earth) [5.516A][5.516B]'], ['Radiolocation'], ['[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516A]: In the band 17.3-17.7 GHz, earth stations of the fixed-satellite service (space-to-Earth) in Region 1 shall not claim protection from the broadcasting-satellite service feeder-link earth stations operating under Appendix 30A, nor put any limitations or restrictions on the locations of the broadcasting-satellite service feeder-link earth stations anywhere within the service area of the feeder link. (WRC-03)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.514]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Cameroon, El Salvador, the United Arab Emirates, Guatemala, India, Iran (Islamic Republic of), Iraq, Israel, Italy, Japan, Jordan, Kuwait, Libya, Lithuania, Nepal, Nicaragua, Nigeria, Oman, Uzbekistan, Pakistan, Qatar, Kyrgyzstan, Sudan and South Sudan, the frequency band 17.3-17.7 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits given in Nos. 21.3 and 21.5 shall apply. (WRC-15)']), (17700000000, 18100000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A]', 'Fixed-Satellite (Earth-To-Space) [5.516]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (18100000000, 18400000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.516B]', 'Fixed-Satellite (Earth-To-Space) [5.520]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.520]: The use of the band 18.1-18.4 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links of geostationary-satellite systems in the broadcasting-satellite service. (WRC-2000)', '[5.519]: Additional allocation: the bands 18-18.3 GHz in Region 2 and 18.1-18.4 GHz in Regions 1 and 3 are also allocated to the meteorological-satellite service (space-to-Earth) on a primary basis. Their use is limited to geostationary satellites. (WRC-07)', '[5.521]: Alternative allocation: in the United Arab Emirates and Greece, the frequency band 18.1-18.4 GHz is allocated to the fixed, fixed-satellite (space-to-Earth) and mobile services on a primary basis (see No. 5.33). The provisions of No. 5.519 also apply. (WRC-15)']), (18400000000, 18600000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.516B]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03)']), (18600000000, 18800000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed-Satellite (Space-To-Earth) [5.522B]', 'Mobile Except Aeronautical Mobile'], ['Space Research (Passive)'], ['[5.522B]: The use of the band 18.6-18.8 GHz by the fixed-satellite service is limited to geostationary systems and systems with an orbit of apogee greater than 20 000 km. (WRC-2000)', '[5.522A]: The emissions of the fixed service and the fixed-satellite service in the band 18.6-18.8 GHz are limited to the values given in Nos. 21.5A and 21.16.2, respectively. (WRC-2000)', '[5.522C]: In the band 18.6-18.8 GHz, in Algeria, Saudi Arabia, Bahrain, Egypt, the United Arab Emirates, Jordan, Lebanon, Libya, Morocco, Oman, Qatar, the Syrian Arab Republic, Tunisia and Yemen, fixed-service systems in operation at the date of entry into force of the Final Acts of WRC-2000 are not subject to the limits of No. 21.5A. (WRC-2000)']), (18800000000, 19300000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.516B][5.523A]'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523A]: The use of the bands 18.8-19.3 GHz (space-to-Earth) and 28.6-29.1 GHz (Earth-to-space) by geostationary and non-geostationary fixed-satellite service networks is subject to the application of the provisions of No. 9.11A and No. 22.2 does not apply. Administrations having geostationary-satellite networks under coordination prior to 18 November 1995 shall cooperate to the maximum extent possible to coordinate pursuant to No. 9.11A with non-geostationary-satellite networks for which notification information has been received by the Bureau prior to that date, with a view to reaching results acceptable to all the parties concerned. Non-geostationary-satellite networks shall not cause unacceptable interference to geostationary fixed-satellite service networks for which complete Appendix 4 notification information is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)']), (19300000000, 19700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.523B][5.523C][5.523D][5.523E]', 'Fixed-Satellite (Earth-To-Space) [5.523B][5.523C][5.523D][5.523E]'], [], ['[5.523B]: The use of the band 19.3-19.6 GHz (Earth-to-space) by the fixed-satellite service is limited to feeder links for non-geostationary-satellite systems in the mobile-satellite service. Such use is subject to the application of the provisions of No. 9.11A, and No. 22.2 does not apply.', '[5.523C]: No. 22.2 shall continue to apply in the bands 19.3-19.6 GHz and 29.1-29.4 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.523D]: The use of the band 19.3-19.7 GHz (space-to-Earth) by geostationary fixed-satellite service systems and by feeder links for non-geostationary-satellite systems in the mobile-satellite service is subject to the application of the provisions of No. 9.11A, but not subject to the provisions of No. 22.2. The use of this band for other non-geostationary fixed-satellite service systems, or for the cases indicated in Nos. 5.523C and 5.523E, is not subject to the provisions of No. 9.11A and shall continue to be subject to Articles 9 (except No. 9.11A) and 11 procedures, and to the provisions of No. 22.2. (WRC-97)', '[5.523E]: No. 22.2 shall continue to apply in the bands 19.6-19.7 GHz and 29.4-29.5 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau by 21 November 1997. (WRC-97)']), (19700000000, 20100000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.516B][5.527A]'], ['Mobile-Satellite (Space-To-Earth)'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)']), (20100000000, 20200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.516B][5.527A]', 'Mobile-Satellite (Space-To-Earth)'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.528]: The allocation to the mobile-satellite service is intended for use by networks which use narrow spot-beam antennas and other advanced technology at the space stations. Administrations operating systems in the mobile-satellite service in the band 19.7-20.1 GHz in Region 2 and in the band 20.1-20.2 GHz shall take all practicable steps to ensure the continued availability of these bands for administrations operating fixed and mobile systems in accordance with the provisions of No. 5.524.']), (20200000000, 21200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)'], ['[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)']), (21200000000, 21400000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], []), (21400000000, 22000000001): (False, True, True, False, False, ['Broadcasting-Satellite [5.208B]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.530A]: Unless otherwise agreed between the administrations concerned, any station in the fixed or mobile services of an administration shall not produce a power flux-density in excess of −120.4 dB(W/(m2 · MHz)) at 3 m above the ground of any point of the territory of any other administration in Regions 1 and 3 for more than 20% of the time. In conducting the calculations, administrations should use the most recent version of Recommendation ITU-R P.452 (see also the most recent version of Recommendation ITU-R BO.1898). (WRC-15)', '[5.530B]: In the band 21.4-22 GHz, in order to facilitate the development of the broadcasting-satellite service, administrations in Regions 1 and 3 are encouraged not to deploy stations in the mobile service and are encouraged to limit the deployment of stations in the fixed service to point-to-point links. (WRC-12)', '[5.530D]: See Resolution 555 (WRC-12)*. (WRC-12)']), (22000000000, 22210000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (22210000000, 22500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.532]: The use of the band 22.21-22.5 GHz by the Earth exploration-satellite (passive) and space research (passive) services shall not impose constraints upon the fixed and mobile, except aeronautical mobile, services.']), (22500000000, 22550000001): (False, True, True, False, False, [], [], []), (22550000000, 23150000001): (False, True, True, False, False, ['Inter-Satellite [5.338A]', 'Space Research (Earth-To-Space) [5.532A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.532A]: The location of earth stations in the space research service shall maintain a separation distance of at least 54 km from the respective border(s) of neighbouring countries to protect the existing and future deployment of fixed and mobile services unless a shorter distance is otherwise agreed between the corresponding administrations. Nos. 9.17 and 9.18 do not apply. (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (23150000000, 23550000001): (False, True, True, False, False, ['Inter-Satellite [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)']), (23550000000, 23600000001): (False, True, True, False, False, [], [], []), (23600000000, 24000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (24000000000, 24050000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (24050000000, 24250000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Earth Exploration-Satellite (Active)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (24250000000, 24450000001): (False, True, False, False, False, [], [], []), (24450000000, 24650000001): (False, True, False, False, False, ['Inter-Satellite'], [], []), (24650000000, 24750000001): (False, True, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.532B]', 'Inter-Satellite'], [], ['[5.532B]: Use of the band 24.65-25.25 GHz in Region 1 and the band 24.65-24.75 GHz in Region 3 by the fixed-satellite service (Earth-to-space) is limited to earth stations using a minimum antenna diameter of 4.5 m. (WRC-12)']), (24750000000, 25250000001): (False, True, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.532B]'], [], ['[5.532B]: Use of the band 24.65-25.25 GHz in Region 1 and the band 24.65-24.75 GHz in Region 3 by the fixed-satellite service (Earth-to-space) is limited to earth stations using a minimum antenna diameter of 4.5 m. (WRC-12)']), (25250000000, 25500000001): (False, True, True, False, False, ['Inter-Satellite [5.536]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.']), (25500000000, 27000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To Earth) [5.536B]', 'Inter-Satellite [5.536]', 'Space Research (Space-To-Earth) [5.536C]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.536B]: In Saudi Arabia, Austria, Bahrain, Belgium, Brazil, China, Korea (Rep. of), Denmark, Egypt, United Arab Emirates, Estonia, Finland, Hungary, India, Iran (Islamic Republic of), Ireland, Israel, Italy, Jordan, Kenya, Kuwait, Lebanon, Libya, Lithuania, Moldova, Norway, Oman, Uganda, Pakistan, the Philippines, Poland, Portugal, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the Czech Rep., Romania, the United Kingdom, Singapore, Sweden, Tanzania, Turkey, Viet Nam and Zimbabwe, earth stations operating in the Earth exploration-satellite service in the frequency band 25.5-27 GHz shall not claim protection from, or constrain the use and deployment of, stations of the fixed and mobile services. (WRC-15)', '[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.', '[5.536C]: In Algeria, Saudi Arabia, Bahrain, Botswana, Brazil, Cameroon, Comoros, Cuba, Djibouti, Egypt, United Arab Emirates, Estonia, Finland, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Lithuania, Malaysia, Morocco, Nigeria, Oman, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Tanzania, Tunisia, Uruguay, Zambia and Zimbabwe, earth stations operating in the space research service in the band 25.5-27 GHz shall not claim protection from, or constrain the use and deployment of, stations of the fixed and mobile services. (WRC-12)', '[5.536A]: Administrations operating earth stations in the Earth exploration-satellite service or the space research service shall not claim protection from stations in the fixed and mobile services operated by other administrations. In addition, earth stations in the Earth exploration-satellite service or in the space research service should be operated taking into account the most recent version of Recommendation ITU-R SA.1862. (WRC-12)']), (27000000000, 27500000001): (False, True, True, False, False, ['Inter-Satellite [5.536]'], [], ['[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.']), (27500000000, 28500000001): (False, True, True, False, False, ['Fixed [5.537A]', 'Fixed-Satellite (Earth-To-Space) [5.484A][5.516B][5][.539]'], [], ['[5.537A]: In Bhutan, Cameroon, Korea (Rep. of), the Russian Federation, India, Indonesia, Iran (Islamic Republic of), Iraq, Japan, Kazakhstan, Malaysia, Maldives, Mongolia, Myanmar, Uzbekistan, Pakistan, the Philippines, Kyrgyzstan, the Dem. People’s Rep. of Korea, Sudan, Sri Lanka, Thailand and Viet Nam, the allocation to the fixed service in the band 27.9-28.2 GHz may also be used by high altitude platform stations (HAPS) within the territory of these countries. Such use of 300 MHz of the fixed-service allocation by HAPS in the above countries is further limited to operation in the HAPS-to-ground direction and shall not cause harmful interference to, nor claim protection from, other types of fixed-service systems or other co-primary services. Furthermore, the development of these other services shall not be constrained by HAPS. See Resolution 145 (Rev.WRC-12). (WRC-12)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.538]: Additional allocation: the bands 27.500-27.501 GHz and 29.999-30.000 GHz are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis for the beacon transmissions intended for up-link power control. Such space-to-Earth transmissions shall not exceed an equivalent isotropically radiated power (e.i.r.p.) of +10 dBW in the direction of adjacent satellites on the geostationary-satellite orbit. (WRC-07)', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (28500000000, 29100000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.516B][5.523A][5.539]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523A]: The use of the bands 18.8-19.3 GHz (space-to-Earth) and 28.6-29.1 GHz (Earth-to-space) by geostationary and non-geostationary fixed-satellite service networks is subject to the application of the provisions of No. 9.11A and No. 22.2 does not apply. Administrations having geostationary-satellite networks under coordination prior to 18 November 1995 shall cooperate to the maximum extent possible to coordinate pursuant to No. 9.11A with non-geostationary-satellite networks for which notification information has been received by the Bureau prior to that date, with a view to reaching results acceptable to all the parties concerned. Non-geostationary-satellite networks shall not cause unacceptable interference to geostationary fixed-satellite service networks for which complete Appendix 4 notification information is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29100000000, 29500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516B][5.523C][5.523E][5.535A][5.539][5.541A]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523C]: No. 22.2 shall continue to apply in the bands 19.3-19.6 GHz and 29.1-29.4 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.523E]: No. 22.2 shall continue to apply in the bands 19.6-19.7 GHz and 29.4-29.5 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau by 21 November 1997. (WRC-97)', '[5.535A]: The use of the band 29.1-29.5 GHz (Earth-to-space) by the fixed-satellite service is limited to geostationary-satellite systems and feeder links to non-geostationary-satellite systems in the mobile-satellite service. Such use is subject to the application of the provisions of No. 9.11A, but not subject to the provisions of No. 22.2, except as indicated in Nos. 5.523C and 5.523E where such use is not subject to the provisions of No. 9.11A and shall continue to be subject to Articles 9 (except No. 9.11A) and 11 procedures, and to the provisions of No. 22.2. (WRC-97)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541A]: Feeder links of non-geostationary networks in the mobile-satellite service and geostationary networks in the fixed-satellite service operating in the band 29.1-29.5 GHz (Earth-to-space) shall employ uplink adaptive power control or other methods of fade compensation, such that the earth station transmissions shall be conducted at the power level required to meet the desired link performance while reducing the level of mutual interference between both networks. These methods shall apply to networks for which Appendix 4 coordination information is considered as having been received by the Bureau after 17 May 1996 and until they are changed by a future competent world radiocommunication conference. Administrations submitting Appendix 4 information for coordination before this date are encouraged to utilize these techniques to the extent practicable. (WRC-2000)', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29500000000, 29900000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.484B][5.516B][5.527A][5.539]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]', 'Mobile-Satellite (Earth-To-Space)'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (29900000000, 30000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.484B][5.516B][5.527A][5.539]', 'Mobile-Satellite (Earth-To-Space)'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541][5.543]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.543]: The band 29.95-30 GHz may be used for space-to-space links in the Earth exploration-satellite service for telemetry, tracking, and control purposes, on a secondary basis.', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.538]: Additional allocation: the bands 27.500-27.501 GHz and 29.999-30.000 GHz are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis for the beacon transmissions intended for up-link power control. Such space-to-Earth transmissions shall not exceed an equivalent isotropically radiated power (e.i.r.p.) of +10 dBW in the direction of adjacent satellites on the geostationary-satellite orbit. (WRC-07)', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (30000000000, 31000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A]', 'Mobile-Satellite (Earth-To-Space)'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (31000000000, 31300000001): (False, True, True, False, False, ['Fixed [5.338A][5.543A]'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)', 'Space Research [5.544][5.545]'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.543A]: In Bhutan, Cameroon, Korea (Rep. of), the Russian Federation, India, Indonesia, Iran (Islamic Republic of), Iraq, Japan, Kazakhstan, Malaysia, Maldives, Mongolia, Myanmar, Uzbekistan, Pakistan, the Philippines, Kyrgyzstan, the Dem. People’s Rep. of Korea, Sudan, Sri Lanka, Thailand and Viet Nam, the allocation to the fixed service in the frequency band 31-31.3 GHz may also be used by systems using high altitude platform stations (HAPS) in the ground-to-HAPS direction. The use of the frequency band 31-31.3 GHz by systems using HAPS is limited to the territory of the countries listed above and shall not cause harmful interference to, nor claim protection from, other types of fixed-service systems, systems in the mobile service and systems operated under No. 5.545. Furthermore, the development of these services shall not be constrained by HAPS. Systems using HAPS in the frequency band 31-31.3 GHz shall not cause harmful interference to the radio astronomy service having a primary allocation in the frequency band 31.3-31.8 GHz, taking into account the protection criterion as given in the most recent version of Recommendation ITU-R RA.769. In order to ensure the protection of satellite passive services, the level of unwanted power density into a HAPS ground station antenna in the frequency band 31.3-31.8 GHz shall be limited to −106 dB(W/MHz) under clear-sky conditions, and may be increased up to −100 dB(W/MHz) under rainy conditions to mitigate fading due to rain, provided the effective impact on the passive satellite does not exceed the impact under clear-sky conditions. See Resolution 145 (Rev.WRC-12). (WRC-15)', '[5.544]: In the band 31-31.3 GHz the power flux-density limits specified in Article 21, Table 21-4 shall apply to the space research service.', '[5.545]: Different category of service: in Armenia, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 31-31.3 GHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (31300000000, 31500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (31500000000, 31800000001): (False, True, True, False, True, ['Earth Exploration- Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.546]: Different category of service: in Saudi Arabia, Armenia, Azerbaijan, Belarus, Egypt, the United Arab Emirates, Spain, Estonia, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Israel, Jordan, Lebanon, Moldova, Mongolia, Oman, Uzbekistan, Poland, the Syrian Arab Republic, Kyrgyzstan, Romania, the United Kingdom, South Africa, Tajikistan, Turkmenistan and Turkey, the allocation of the band 31.5-31.8 GHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33). (WRC-12)']), (31800000000, 32000000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547B]: Alternative allocation: in the United States, the band 31.8-32 GHz is allocated to the radionavigation and space research (deep space) (space-to-Earth) services on a primary basis. (WRC-97)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (32000000000, 32300000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547C]: Alternative allocation: in the United States, the band 32-32.3 GHz is allocated to the radionavigation and space research (deep space) (space-to-Earth) services on a primary basis. (WRC-03)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (32300000000, 33000000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Inter-Satellite', 'Radionavigation'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547D]: Alternative allocation: in the United States, the band 32.3-33 GHz is allocated to the inter-satellite and radionavigation services on a primary basis. (WRC-97)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (33000000000, 33400000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547E]: Alternative allocation: in the United States, the band 33-33.4 GHz is allocated to the radionavigation service on a primary basis. (WRC-97)']), (33400000000, 34200000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (34200000000, 34700000001): (False, False, False, False, False, ['Radiolocation', 'Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (34700000000, 35200000001): (False, False, False, False, False, ['Radiolocation'], ['Space Research [5.550]'], ['[5.550]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 34.7-35.2 GHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (35200000000, 35500000001): (False, False, False, False, False, ['Meteorological Aids', 'Radiolocation'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (35500000000, 36000000001): (False, False, False, False, False, ['Meteorological Aids', 'Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.549A]: In the band 35.5-36.0 GHz, the mean power flux-density at the Earth’s surface, generated by any spaceborne sensor in the Earth exploration-satellite service (active) or space research service (active), for any angle greater than 0.8° from the beam centre shall not exceed -73.3 dB(W/m2) in this band. (WRC-03)']), (36000000000, 37000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.550A]: For sharing of the band 36-37 GHz between the Earth exploration-satellite (passive) service and the fixed and mobile services, Resolution 752 (WRC-07) shall apply. (WRC-07)']), (37000000000, 37500000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth)'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (37500000000, 38000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (38000000000, 39500000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (39500000000, 40000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Mobile-Satellite (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (40000000000, 40500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space)', 'Fixed-Satellite (Space-To-Earth) [5.516B]', 'Mobile-Satellite (Space-To-Earth)', 'Space Research (Earth-To-Space)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03)']), (40500000000, 41000000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth)', 'Broadcasting', 'Broadcasting-Satellite'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (41000000000, 42500000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Broadcasting', 'Broadcasting-Satellite'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.551F]: Different category of service: in Japan, the allocation of the band 41.5-42.5 GHz to the mobile service is on a primary basis (see No. 5.33). (WRC-97)', '[5.551H]: The equivalent power flux-density (epfd) produced in the frequency band 42.5-43.5 GHz by all space stations in any non-geostationary-satellite system in the fixed-satellite service (space-to-Earth), or in the broadcasting-satellite service operating in the frequency band 42-42.5 GHz, shall not exceed the following values at the site of any radio astronomy station for more than 2% of the time:−230 dB(W/m2) in 1 GHz and −246 dB(W/m2) in any 500 kHz of the frequency band 42.5-43.5 GHz at the site of any radio astronomy station registered as a single-dish telescope; and −209 dB(W/m2) in any 500 kHz of the frequency band 42.5-43.5 GHz at the site of any radio astronomy station registered as a very long baseline interferometry station. These epfd values shall be evaluated using the methodology given in Recommendation ITU-R S.1586-1 and the reference antenna pattern and the maximum gain of an antenna in the radio astronomy service given in Recommendation ITU-R RA.1631-0 and shall apply over the whole sky and for elevation angles higher than the minimum operating angle θmin of the radiotelescope (for which a default value of 5° should be adopted in the absence of notified information). These values shall apply at any radio astronomy station that either: – was in operation prior to 5 July 2003 and has been notified to the Bureau before 4 January 2004; or – was notified before the date of receipt of the complete Appendix 4 information for coordination or notification, as appropriate, for the space station to which the limits apply. Other radio astronomy stations notified after these dates may seek an agreement with administrations that have authorized the space stations. In Region 2, Resolution 743 (WRC-03) shall apply. The limits in this footnote may be exceeded at the site of a radio astronomy station of any country whose administration so agreed. (WRC-15) ', '[5.551I]: The power flux-density in the band 42.5-43.5 GHz produced by any geostationary space station in the fixed-satellite service (space-to-Earth), or the broadcasting-satellite service operating in the 42-42.5 GHz band, shall not exceed the following values at the site of any radio astronomy station:–137 dB(W/m2) in 1 GHz and –153 dB(W/m2) in any 500 kHz of the 42.5-43.5 GHz band at the site of any radio astronomy station registered as a single-dish telescope; and –116 dB(W/m2) in any 500 kHz of the 42.5-43.5 GHz band at the site of any radio astronomy station registered as a very long baseline interferometry station. These values shall apply at the site of any radio astronomy station that either: – was in operation prior to 5 July 2003 and has been notified to the Bureau before 4 January 2004; or – was notified before the date of receipt of the complete Appendix 4 information for coordination or notification, as appropriate, for the space station to which the limits apply. Other radio astronomy stations notified after these dates may seek an agreement with administrations that have authorized the space stations. In Region 2, Resolution 743 (WRC-03) shall apply. The limits in this footnote may be exceeded at the site of a radio astronomy station of any country whose administration so agreed. (WRC-03)']), (42500000000, 43500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (43500000000, 47000000001): (False, False, True, False, False, ['Mobile [5.553]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.553]: In the bands 43.5-47 GHz and 66-71 GHz, stations in the land mobile service may be operated subject to not causing harmful interference to the space radiocommunication services to which these bands are allocated (see No. 5.43). (WRC-2000)', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (47000000000, 47200000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (47200000000, 47500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.552A]: The allocation to the fixed service in the bands 47.2-47.5 GHz and 47.9-48.2 GHz is designated for use by high altitude platform stations. The use of the bands 47.2-47.5 GHz and 47.9-48.2 GHz is subject to the provisions of Resolution 122 (Rev.WRC-07). (WRC-07)']), (47500000000, 47900000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]', 'Fixed-Satellite (Space-To-Earth) [5.516B][5.554A]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.554A]: The use of the bands 47.5-47.9 GHz, 48.2-48.54 GHz and 49.44-50.2 GHz by the fixed-satellite service (space-to-Earth) is limited to geostationary satellites. (WRC-03)']), (47900000000, 48200000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.552A]: The allocation to the fixed service in the bands 47.2-47.5 GHz and 47.9-48.2 GHz is designated for use by high altitude platform stations. The use of the bands 47.2-47.5 GHz and 47.9-48.2 GHz is subject to the provisions of Resolution 122 (Rev.WRC-07). (WRC-07)']), (48200000000, 48540000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]', 'Fixed-Satellite (Space-To-Earth) [5.516B][5.554A][5.555B]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.554A]: The use of the bands 47.5-47.9 GHz, 48.2-48.54 GHz and 49.44-50.2 GHz by the fixed-satellite service (space-to-Earth) is limited to geostationary satellites. (WRC-03)', '[5.555B]: The power flux-density in the band 48.94-49.04 GHz produced by any geostationary space station in the fixed-satellite service (space-to-Earth) operating in the bands 48.2-48.54 GHz and 49.44-50.2 GHz shall not exceed –151.8 dB(W/m2) in any 500 kHz band at the site of any radio astronomy station. (WRC-03)']), (48540000000, 49440000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.555]: Additional allocation: the band 48.94-49.04 GHz is also allocated to the radio astronomy service on a primary basis. (WRC-2000)']), (49440000000, 50200000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A][5.552]', 'Fixed-Satellite (Space-To-Earth) [5.516B][5.554A][5.555B]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.554A]: The use of the bands 47.5-47.9 GHz, 48.2-48.54 GHz and 49.44-50.2 GHz by the fixed-satellite service (space-to-Earth) is limited to geostationary satellites. (WRC-03)', '[5.555B]: The power flux-density in the band 48.94-49.04 GHz produced by any geostationary space station in the fixed-satellite service (space-to-Earth) operating in the bands 48.2-48.54 GHz and 49.44-50.2 GHz shall not exceed –151.8 dB(W/m2) in any 500 kHz band at the site of any radio astronomy station. (WRC-03)']), (50200000000, 50400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (50400000000, 51400000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A]'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)']), (51400000000, 52600000001): (False, True, True, False, False, ['Fixed [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (52600000000, 54250000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (54250000000, 55780000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.556B]: Additional allocation: in Japan, the band 54.25-55.78 GHz is also allocated to the mobile service on a primary basis for low-density use. (WRC-97)']), (55780000000, 56900000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed [5.557A]', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.557A]: In the band 55.78-56.26 GHz, in order to protect stations in the Earth exploration-satellite service (passive), the maximum power density delivered by a transmitter to the antenna of a fixed service station is limited to –26 dB(W/MHz). (WRC-2000)', '[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (56900000000, 57000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.558A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.558A]: Use of the band 56.9-57 GHz by inter-satellite systems is limited to links between satellites in geostationary-satellite orbit and to transmissions from non-geostationary satellites in high-Earth orbit to those in low-Earth orbit. For links between satellites in the geostationary-satellite orbit, the single entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (57000000000, 58200000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (58200000000, 59000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (59000000000, 59300000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Radiolocation [5.559]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.559]: In the band 59-64 GHz, airborne radars in the radiolocation service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)']), (59300000000, 64000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]', 'Radiolocation [5.559]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.559]: In the band 59-64 GHz, airborne radars in the radiolocation service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (64000000000, 65000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile Except Aeronautical Mobile'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (65000000000, 66000000001): (False, True, True, False, False, ['Earth Exploration-Satellite', 'Inter-Satellite', 'Mobile Except Aeronautical Mobile', 'Space Research'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (66000000000, 71000000001): (False, False, True, False, False, ['Inter-Satellite', 'Mobile [5.553][5.558]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.553]: In the bands 43.5-47 GHz and 66-71 GHz, stations in the land mobile service may be operated subject to not causing harmful interference to the space radiocommunication services to which these bands are allocated (see No. 5.43). (WRC-2000)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (71000000000, 74000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], [], []), (74000000000, 76000000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth)', 'Broadcasting', 'Broadcasting-Satellite'], ['Space Research (Space-To-Earth)'], ['[5.561]: In the band 74-76 GHz, stations in the fixed, mobile and broadcasting services shall not cause harmful interference to stations of the fixed-satellite service or stations of the broadcasting-satellite service operating in accordance with the decisions of the appropriate frequency assignment planning conference for the broadcasting-satellite service. (WRC-2000)']), (76000000000, 77500000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (77500000000, 78000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite', 'Radiolocation [5.559B]'], ['Radio Astronomy', 'Space Research (Space-To-Earth)'], ['[5.559B]: The use of the frequency band 77.5-78 GHz by the radiolocation service shall be limited to short-range radar for ground-based applications, including automotive radars. The technical characteristics of these radars are provided in the most recent version of Recommendation ITU-R M.2057. The provisions of No. 4.10 do not apply. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (78000000000, 79000000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Radio Astronomy', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.560]: In the band 78-79 GHz radars located on space stations may be operated on a primary basis in the Earth exploration-satellite service and in the space research service.']), (79000000000, 81000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (81000000000, 84000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Fixed-Satellite (Earth-To-Space)', 'Mobile-Satellite (Earth-To-Space)', 'Radio Astronomy'], ['Space Research (Space-To-Earth)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.561A]: The 81-81.5 GHz band is also allocated to the amateur and amateur-satellite services on a secondary basis. (WRC-2000)']), (84000000000, 86000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Fixed-Satellite (Earth-To-Space) [5.561B]', 'Radio Astronomy'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.561B]: In Japan, use of the band 84-86 GHz, by the fixed-satellite service (Earth-to-space) is limited to feeder links in the broadcasting-satellite service using the geostationary-satellite orbit. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (86000000000, 92000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (92000000000, 94000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Radio Astronomy', 'Radiolocation'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (94000000000, 94100000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], ['Radio Astronomy'], ['[5.562]: The use of the band 94-94.1 GHz by the Earth exploration-satellite (active) and space research (active) services is limited to spaceborne cloud radars. (WRC-97)', '[5.562A]: In the bands 94-94.1 GHz and 130-134 GHz, transmissions from space stations of the Earth exploration-satellite service (active) that are directed into the main beam of a radio astronomy antenna have the potential to damage some radio astronomy receivers. Space agencies operating the transmitters and the radio astronomy stations concerned should mutually plan their operations so as to avoid such occurrences to the maximum extent possible. (WRC-2000)']), (94100000000, 95000000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (95000000000, 100000000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (100000000000, 102000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (102000000000, 105000000001): (False, True, True, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (105000000000, 109500000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (109500000000, 111800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (111800000000, 114250000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (114250000000, 116000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (116000000000, 119980000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562C]', 'Space Research (Passive)'], [], ['[5.562C]: Use of the band 116-122.25 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 km to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed –148 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (119980000000, 122250000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562C]', 'Space Research (Passive)'], [], ['[5.562C]: Use of the band 116-122.25 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 km to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed –148 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (122250000000, 123000000001): (True, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]'], ['Amateur'], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (123000000000, 130000000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)', 'Radionavigation', 'Radionavigation-Satellite'], ['Radio Astronomy [5.562D]'], ['[5.562D]: Additional allocation: In Korea (Rep. of), the frequency bands 128-130 GHz, 171-171.6 GHz, 172.2-172.8 GHz and 173.3-174 GHz are also allocated to the radio astronomy service on a primary basis. Radio astronomy stations in Korea (Rep. of) operating in the frequency bands referred to in this footnote shall not claim protection from, or constrain the use and development of, services in other countries operating in accordance with the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (130000000000, 134000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Active) [5.562E]', 'Inter-Satellite', 'Mobile [5.558]', 'Radio Astronomy'], [], ['[5.562E]: The allocation to the Earth exploration-satellite service (active) is limited to the band 133.5-134 GHz. (WRC-2000)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562A]: In the bands 94-94.1 GHz and 130-134 GHz, transmissions from space stations of the Earth exploration-satellite service (active) that are directed into the main beam of a radio astronomy antenna have the potential to damage some radio astronomy receivers. Space agencies operating the transmitters and the radio astronomy stations concerned should mutually plan their operations so as to avoid such occurrences to the maximum extent possible. (WRC-2000)']), (134000000000, 136000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], ['Radio Astronomy'], []), (136000000000, 141000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (141000000000, 148500000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (148500000000, 151500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (151500000000, 155500000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (155500000000, 158500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562F]: In the band 155.5-158.5 GHz, the allocation to the Earth exploration-satellite (passive) and space research (passive) services shall terminate on 1 January 2018. (WRC-2000)', '[5.562G]: The date of entry into force of the allocation to the fixed and mobile services in the band 155.5-158.5 GHz shall be 1 January 2018. (WRC-2000)']), (158500000000, 164000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], [], []), (164000000000, 167000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (167000000000, 174500000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Inter-Satellite', 'Mobile [5.558]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562D]: Additional allocation: In Korea (Rep. of), the frequency bands 128-130 GHz, 171-171.6 GHz, 172.2-172.8 GHz and 173.3-174 GHz are also allocated to the radio astronomy service on a primary basis. Radio astronomy stations in Korea (Rep. of) operating in the frequency bands referred to in this footnote shall not claim protection from, or constrain the use and development of, services in other countries operating in accordance with the Radio Regulations. (WRC-15)']), (174500000000, 174800000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)']), (174800000000, 182000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562H]', 'Space Research (Passive)'], [], ['[5.562H]: Use of the bands 174.8-182 GHz and 185-190 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed -144 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)']), (182000000000, 185000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (185000000000, 190000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562H]', 'Space Research (Passive)'], [], ['[5.562H]: Use of the bands 174.8-182 GHz and 185-190 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed -144 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)']), (190000000000, 191800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (191800000000, 200000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (200000000000, 209000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (209000000000, 217000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (217000000000, 226000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (226000000000, 231500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (231500000000, 232000000001): (False, True, True, False, False, [], ['Radiolocation'], []), (232000000000, 235000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Radiolocation'], []), (235000000000, 238000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed-Satellite (Space-To-Earth)', 'Space Research (Passive)'], [], ['[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)', '[5.563B]: The band 237.9-238 GHz is also allocated to the Earth exploration-satellite service (active) and the space research service (active) for spaceborne cloud radars only. (WRC-2000)']), (238000000000, 240000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Radiolocation', 'Radionavigation', 'Radionavigation-Satellite'], [], []), (240000000000, 241000000001): (False, True, True, False, False, ['Radiolocation'], [], []), (241000000000, 248000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite'], ['[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (248000000000, 250000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], ['Radio Astronomy'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (250000000000, 252000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (252000000000, 265000000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space)', 'Radio Astronomy', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (265000000000, 275000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (275000000000, 3000000000001): (False, False, False, False, False, ['(Not Allocated) [5.565]'], [], ['[5.565]: The following frequency bands in the range 275-1 000 GHz are identified for use by administrations for passive service applications:– radio astronomy service: 275-323 GHz, 327-371 GHz, 388-424 GHz, 426-442 GHz, 453-510 GHz, 623-711 GHz, 795-909 GHz and 926-945 GHz; – Earth exploration-satellite service (passive) and space research service (passive): 275-286 GHz, 296-306 GHz, 313-356 GHz, 361-365 GHz, 369-392 GHz, 397-399 GHz, 409-411 GHz, 416-434 GHz, 439-467 GHz, 477-502 GHz, 523-527 GHz, 538-581 GHz, 611-630 GHz, 634-654 GHz, 657-692 GHz, 713-718 GHz, 729-733 GHz, 750-754 GHz, 771-776 GHz, 823-846 GHz, 850-854 GHz, 857-862 GHz, 866-882 GHz, 905-928 GHz, 951-956 GHz, 968-973 GHz and 985-990 GHz.']), })
/rf_info-0.8.0.tar.gz/rf_info-0.8.0/rf_info/data/b_allocations.py
0.566978
0.721768
b_allocations.py
pypi
from rf_info.data.rangekeydict import RangeKeyDict ALLOCATIONS = RangeKeyDict({ (0, 8301): (False, False, False, False, False, ['(Not Allocated)'], [], ['[5.53]: Administrations authorizing the use of frequencies below 8.3 kHz shall ensure that no harmful interference is caused to services to which the bands above 8.3 kHz are allocated. (WRC-12)', '[5.54]: Administrations conducting scientific research using frequencies below 8.3 kHz are urged to advise other administrations that may be concerned in order that such research may be afforded all practicable protection from harmful interference. (WRC-12)']), (8300, 9001): (False, False, False, False, False, ['Meteorological Aids [5.54A][5.54B][5.54C]'], [], ['[5.54A]: Use of the 8.3-11.3 kHz frequency band by stations in the meteorological aids service is limited to passive use only. In the band 9-11.3 kHz, meteorological aids stations shall not claim protection from stations of the radionavigation service submitted for notification to the Bureau prior to 1 January 2013. For sharing between stations of the meteorological aids service and stations in the radionavigation service submitted for notification after this date, the most recent version of Recommendation ITU-R RS.1881 should be applied. (WRC-12)', '[5.54B]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Egypt, the United Arab Emirates, the Russian Federation, Iran (Islamic Republic of), Iraq, Kuwait, Lebanon, Morocco, Qatar, the Syrian Arab Republic, Sudan and Tunisia, the frequency band 8.3-9 kHz is also allocated to the radionavigation, fixed and mobile services on a primary basis. (WRC-15)', '[5.54C]: Additional allocation: in China, the frequency band 8.3-9 kHz is also allocated to the maritime radionavigation and maritime mobile services on a primary basis. (WRC-12)']), (9000, 11301): (False, False, False, False, False, ['Meteorological Aids [5.54A]', 'Radionavigation'], [], ['[5.54A]: Use of the 8.3-11.3 kHz frequency band by stations in the meteorological aids service is limited to passive use only. In the band 9-11.3 kHz, meteorological aids stations shall not claim protection from stations of the radionavigation service submitted for notification to the Bureau prior to 1 January 2013. For sharing between stations of the meteorological aids service and stations in the radionavigation service submitted for notification after this date, the most recent version of Recommendation ITU-R RS.1881 should be applied. (WRC-12)']), (11300, 14001): (False, False, False, False, False, ['Radionavigation'], [], []), (14000, 19951): (False, True, True, False, False, ['Maritime Mobile [5.57]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.55]: Additional allocation: in Armenia, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the frequency band 14-17 kHz is also allocated to the radionavigation service on a primary basis. (WRC-15)', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)']), (19950, 20051): (False, False, False, False, False, ['Standard Frequency And Time Signal (20 Khz)'], [], []), (20050, 70001): (False, True, True, False, False, ['Maritime Mobile [5.57]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)', '[5.58]: Additional allocation: in Armenia, Azerbaijan, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the band 67-70 kHz is also allocated to the radionavigation service on a primary basis. (WRC-2000)']), (70000, 72001): (False, True, False, False, False, ['Radionavigation [5.60]'], ['Maritime Mobile [5.57]'], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.59]: Different category of service: in Bangladesh and Pakistan, the allocation of the bands 70-72 kHz and 84-86 kHz to the fixed and maritime mobile services is on a primary basis (see No. 5.33). (WRC-2000)']), (72000, 84001): (False, True, True, False, False, ['Maritime Mobile [5.57]', 'Radionavigation [5.60]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.']), (84000, 86001): (False, True, False, False, False, ['Radionavigation [5.60]'], ['Maritime Mobile [5.57]'], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.59]: Different category of service: in Bangladesh and Pakistan, the allocation of the bands 70-72 kHz and 84-86 kHz to the fixed and maritime mobile services is on a primary basis (see No. 5.33). (WRC-2000)']), (86000, 90001): (False, True, True, False, False, ['Maritime Mobile [5.57]', 'Radionavigation [5.60]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.']), (90000, 110001): (False, True, False, False, False, ['Radionavigation [5.62]'], [], ['[5.62]: Administrations which operate stations in the radionavigation service in the band 90-110 kHz are urged to coordinate technical and operating characteristics in such a way as to avoid harmful interference to the services provided by these stations.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (110000, 112001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (112000, 117601): (False, True, False, False, False, ['Radionavigation [5.60]'], ['Maritime Mobile'], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.65]: Different category of service: in Bangladesh, the allocation of the bands 112-117.6 kHz and 126-129 kHz to the fixed and maritime mobile services is on a primary basis (see No. 5.33). (WRC-2000)']), (117600, 126001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (126000, 129001): (False, True, False, False, False, ['Radionavigation [5.60]'], ['Maritime Mobile'], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.65]: Different category of service: in Bangladesh, the allocation of the bands 112-117.6 kHz and 126-129 kHz to the fixed and maritime mobile services is on a primary basis (see No. 5.33). (WRC-2000)']), (129000, 130001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation [5.60]'], [], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (130000, 135701): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (135700, 137801): (True, True, True, False, False, ['Maritime Mobile', 'Radionavigation'], ['Amateur [5.67A]'], ['[5.67A]: Stations in the amateur service using frequencies in the band 135.7-137.8 kHz shall not exceed a maximum radiated power of 1 W (e.i.r.p.) and shall not cause harmful interference to stations of the radionavigation service operating in countries listed in No. 5.67. (WRC-07)', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.', '[5.67B]: The use of the band 135.7-137.8 kHz in Algeria, Egypt, Iran (Islamic Republic of), Iraq, Lebanon, Syrian Arab Republic, Sudan, South Sudan and Tunisia is limited to the fixed and maritime mobile services. The amateur service shall not be used in the above-mentioned countries in the band 135.7-137.8 kHz, and this should be taken into account by the countries authorizing such use. (WRC-12)']), (137800, 160001): (False, True, True, False, False, ['Maritime Mobile', 'Radionavigation'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (160000, 190001): (False, True, False, False, False, [], ['Aeronautical Radionavigation'], []), (190000, 200001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], []), (200000, 285001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Aeronautical Mobile'], []), (285000, 315001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Maritime Radionavigation (Radiobeacons) [5.73]'], [], ['[5.73]: The band 285-325 kHz (283.5-325 kHz in Region 1) in the maritime radionavigation service may be used to transmit supplementary navigational information using narrow-band techniques, on condition that no harmful interference is caused to radiobeacon stations operating in the radionavigation service. (WRC-97)']), (315000, 325001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Maritime Radionavigation (Radiobeacons) [5.73]'], [], ['[5.73]: The band 285-325 kHz (283.5-325 kHz in Region 1) in the maritime radionavigation service may be used to transmit supplementary navigational information using narrow-band techniques, on condition that no harmful interference is caused to radiobeacon stations operating in the radionavigation service. (WRC-97)']), (325000, 405001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Aeronautical Mobile'], []), (405000, 415001): (False, False, False, False, False, ['Radionavigation [5.76]'], ['Aeronautical Mobile'], ['[5.76]: The frequency 410 kHz is designated for radio direction-finding in the maritime radionavigation service. The other radionavigation services to which the band 405-415 kHz is allocated shall not cause harmful interference to radio direction-finding in the band 406.5-413.5 kHz.']), (415000, 472001): (False, False, True, False, False, ['Maritime Mobile [5.79]'], ['Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.78]: Different category of service: in Cuba, the United States of America and Mexico, the allocation of the band 415-435 kHz to the aeronautical radionavigation service is on a primary basis.', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (472000, 479001): (True, False, True, False, False, ['Maritime Mobile [5.79]'], ['Amateur [5.80A]', 'Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.80A]: The maximum equivalent isotropically radiated power (e.i.r.p.) of stations in the amateur service using frequencies in the band 472-479 kHz shall not exceed 1 W. Administrations may increase this limit of e.i.r.p. to 5 W in portions of their territory which are at a distance of over 800 km from the borders of Algeria, Saudi Arabia, Azerbaijan, Bahrain, Belarus, China, Comoros, Djibouti, Egypt, United Arab Emirates, the Russian Federation, Iran (Islamic Republic of), Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Morocco, Mauritania, Oman, Uzbekistan, Qatar, Syrian Arab Republic, Kyrgyzstan, Somalia, Sudan, Tunisia, Ukraine and Yemen. In this frequency band, stations in the amateur service shall not cause harmful interference to, or claim protection from, stations of the aeronautical radionavigation service. (WRC-12)', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.80B]: The use of the frequency band 472-479 kHz in Algeria, Saudi Arabia, Azerbaijan, Bahrain, Belarus, China, Comoros, Djibouti, Egypt, United Arab Emirates, the Russian Federation, Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Mauritania, Oman, Uzbekistan, Qatar, Syrian Arab Republic, Kyrgyzstan, Somalia, Sudan, Tunisia and Yemen is limited to the maritime mobile and aeronautical radionavigation services. The amateur service shall not be used in the above-mentioned countries in this frequency band, and this should be taken into account by the countries authorizing such use. (WRC-12)', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (479000, 495001): (False, False, True, False, False, ['Maritime Mobile [5.79][5.79A]'], ['Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (495000, 505001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (505000, 526501): (False, False, True, False, False, ['Maritime Mobile [5.79][5.79A][5.84]', 'Aeronautical Radionavigation'], ['Aeronautical Mobile', 'Land Mobile'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.84]: The conditions for the use of the frequency 518 kHz by the maritime mobile service are prescribed in Articles 31 and 52. (WRC-07)']), (526500, 535001): (False, False, True, True, False, ['Broadcasting'], [], ['[5.88]: Additional allocation: in China, the band 526.5-535 kHz is also allocated to the aeronautical radionavigation service on a secondary basis.']), (535000, 1606501): (False, False, False, True, False, ['Broadcasting'], [], []), (1606500, 1800001): (False, True, True, False, False, ['Radiolocation', 'Radionavigation'], [], ['[5.91]: Additional allocation: in the Philippines and Sri Lanka, the band 1 606.5-1 705 kHz is also allocated to the broadcasting service on a secondary basis. (WRC-97)']), (1800000, 2000001): (True, True, True, False, False, ['Amateur', 'Mobile Except Aeronautical Mobile', 'Radionavigation'], ['Radiolocation'], ['[5.97]: In Region 3, the Loran system operates either on 1 850 kHz or 1 950 kHz, the bands occupied being 1 825-1 875 kHz and 1 925-1 975 kHz respectively. Other services to which the band 1 800-2 000 kHz is allocated may use any frequency therein on condition that no harmful interference is caused to the Loran system operating on 1 850 kHz or 1 950 kHz.']), (2000000, 2065001): (False, True, True, False, False, [], [], []), (2065000, 2107001): (False, False, True, False, False, ['Maritime Mobile [5.105]'], [], ['[5.105]: In Region 2, except in Greenland, coast stations and ship stations using radiotelephony in the band 2 065-2 107 kHz shall be limited to class J3E emissions and to a peak envelope power not exceeding 1 kW. Preferably, the following carrier frequencies should be used: 2 065.0 kHz, 2 079.0 kHz, 2 082.5 kHz, 2 086.0 kHz, 2 093.0 kHz, 2 096.5 kHz, 2 100.0 kHz and 2 103.5 kHz. In Argentina and Uruguay, the carrier frequencies 2 068.5 kHz and 2 075.5 kHz are also used for this purpose, while the frequencies within the band 2 072-2 075.5 kHz are used as provided in No. 52.165.', '[5.106]: In Regions 2 and 3, provided no harmful interference is caused to the maritime mobile service, the frequencies between 2 065 kHz and 2 107 kHz may be used by stations of the fixed service communicating only within national borders and whose mean power does not exceed 50 W. In notifying the frequencies, the attention of the Bureau should be drawn to these provisions.']), (2107000, 2170001): (False, True, True, False, False, [], [], []), (2170000, 2173501): (False, False, True, False, False, ['Maritime Mobile'], [], []), (2173500, 2190501): (False, False, True, False, False, ['Mobile (Distress And Calling)'], [], ['[5.108]: The carrier frequency 2 182 kHz is an international distress and calling frequency for radiotelephony. The conditions for the use of the band 2 173.5-2 190.5 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (2190500, 2194001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (2194000, 2300001): (False, True, True, False, False, [], [], ['[5.112]: Alternative allocation: in Denmark and Sri Lanka, the band 2 194-2 300 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2300000, 2495001): (False, True, True, True, False, ['Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (2495000, 2501001): (False, False, False, False, False, ['Standard Frequency And Time Signal (2 500 Khz)'], [], []), (2501000, 2502001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (2502000, 2505001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], [], []), (2505000, 2850001): (False, True, True, False, False, [], [], []), (2850000, 3025001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (3025000, 3155001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (3155000, 3200001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field. ', "[5.117]: Alternative allocation: in Côte d'Ivoire, Denmark, Egypt, Liberia, Sri Lanka and Togo, the band 3 155-3 200 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)"]), (3200000, 3230001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile (R)', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field.']), (3230000, 3400001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field. ', '[5.118]: Additional allocation: in the United States, Mexico, Peru and Uruguay, the band 3 230-3 400 kHz is also allocated to the radiolocation service on a secondary basis. (WRC-03)']), (3400000, 3500001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (3500000, 3900001): (True, True, True, False, False, ['Amateur'], [], []), (3900000, 3950001): (False, False, True, True, False, ['Aeronautical Mobile', 'Broadcasting'], [], []), (3950000, 4000001): (False, True, False, True, False, ['Broadcasting'], [], ['[5.126]: In Region 3, the stations of those services to which the band 3 995-4 005 kHz is allocated may transmit standard frequency and time signals.']), (4000000, 4063000): (False, True, True, False, False, ['Maritime Mobile [5.127]'], [], ['[5.127]: The use of the band 4 000-4 063 kHz by the maritime mobile service is limited to ship stations using radiotelephony (see No. 52.220 and Appendix 17).', '[5.126]: In Region 3, the stations of those services to which the band 3 995-4 005 kHz is allocated may transmit standard frequency and time signals.']), (4062999, 4438001): (False, False, True, False, False, ['Maritime Mobile [5.79A][5.109][5.110][5.130][5.131][5.132]'], [], ['[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.130]: The conditions for the use of the carrier frequencies 4 125 kHz and 6 215 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.131]: The frequency 4 209.5 kHz is used exclusively for the transmission by coast stations of meteorological and navigational warnings and urgent information to ships by means of narrow-band direct-printing techniques. (WRC-97)', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.128]: Frequencies in the bands 4 063-4 123 kHz and 4 130-4 438 kHz may be used exceptionally by stations in the fixed service, communicating only within the boundary of the country in which they are located, with a mean power not exceeding 50 W, on condition that harmful interference is not caused to the maritime mobile service. In addition, in Afghanistan, Argentina, Armenia, Azerbaijan, Belarus, Botswana, Burkina Faso, the Central African Rep., China, the Russian Federation, Georgia, India, Kazakhstan, Mali, Niger, Pakistan, Kyrgyzstan, Tajikistan, Chad, Turkmenistan and Ukraine, in the bands 4 063-4 123 kHz, 4 130-4 133 kHz and 4 408-4 438 kHz, stations in the fixed service, with a mean power not exceeding 1 kW, can be operated on condition that they are situated at least 600 km from the coast and that harmful interference is not caused to the maritime mobile service. (WRC-12)']), (4438000, 4488001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (4488000, 4650001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (4650000, 4700001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (4700000, 4750001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (4750000, 4850001): (False, True, False, True, False, ['Broadcasting [5.113]'], ['Land Mobile'], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (4850000, 4995001): (False, True, True, True, False, ['Land Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (4995000, 5003001): (False, False, False, False, False, ['Standard Frequency And Time Signal (5 000 Khz)'], [], []), (5003000, 5005001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (5005000, 5060001): (False, True, False, True, False, ['Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (5060000, 5250001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile'], ['[5.133]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Latvia, Lithuania, Niger, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 5 130-5 250 kHz to the mobile, except aeronautical mobile, service is on a primary basis (see No. 5.33). (WRC-12)']), (5250000, 5275001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (5275000, 5351501): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (5351500, 5366501): (True, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Amateur [5.133B]'], ['[5.133B]: Stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 15 W (e.i.r.p.). However, in Region 2 in Mexico, stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 20 W (e.i.r.p.). In the following Region 2 countries: Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bolivia, Brazil, Chile, Colombia, Costa Rica, Cuba, Dominican Republic, Dominica, El Salvador, Ecuador, Grenada, Guatemala, Guyana, Haiti, Honduras, Jamaica, Nicaragua, Panama, Paraguay, Peru, Saint Lucia, Saint Kitts and Nevis, Saint Vincent and the Grenadines, Suriname, Trinidad and Tobago, Uruguay, Venezuela, as well as the overseas territories of the Netherlands in Region 2, stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 25 W (e.i.r.p.). (WRC-15)']), (5366500, 5450001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (5450000, 5480001): (False, True, True, False, False, ['Aeronautical Mobile (Or)', 'Land Mobile'], [], []), (5480000, 5680001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (5680000, 5730001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (5730000, 5900001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (5900000, 5950001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.136]: Additional allocation: frequencies in the band 5 900-5 950 kHz may be used by stations in the following services, communicating only within the boundary of the country in which they are located: fixed service (in all three Regions), land mobile service (in Region 1), mobile except aeronautical mobile (R) service (in Regions 2 and 3), on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (5950000, 6200001): (False, False, False, True, False, ['Broadcasting'], [], []), (6200000, 6525001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.130][5.132]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.130]: The conditions for the use of the carrier frequencies 4 125 kHz and 6 215 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.137]: On condition that harmful interference is not caused to the maritime mobile service, the bands 6 200-6 213.5 kHz and 6 220.5-6 525 kHz may be used exceptionally by stations in the fixed service, communicating only within the boundary of the country in which they are located, with a mean power not exceeding 50 W. At the time of notification of these frequencies, the attention of the Bureau will be drawn to the above conditions.']), (6525000, 6685001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (6685000, 6765001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (6765000, 7000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (7000000, 7100001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.140]: Additional allocation: in Angola, Iraq, Somalia and Togo, the frequency band 7 000-7 050 kHz is also allocated to the fixed service on a primary basis. (WRC-15)', '[5.141]: Alternative allocation: in Egypt, Eritrea, Ethiopia, Guinea, Libya, Madagascar and Niger, the band 7 000-7 050 kHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.141A]: Additional allocation: in Uzbekistan and Kyrgyzstan, the bands 7 000-7 100 kHz and 7 100-7 200 kHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-03)']), (7100000, 7200001): (True, False, False, False, False, ['Amateur'], [], ['[5.141A]: Additional allocation: in Uzbekistan and Kyrgyzstan, the bands 7 000-7 100 kHz and 7 100-7 200 kHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-03)', '[5.141B]: Additional allocation: in Algeria, Saudi Arabia, Australia, Bahrain, Botswana, Brunei Darussalam, China, Comoros, Korea (Rep. of), Diego Garcia, Djibouti, Egypt, United Arab Emirates, Eritrea, Guinea, Indonesia, Iran (Islamic Republic of), Japan, Jordan, Kuwait, Libya, Mali, Morocco, Mauritania, Niger, New Zealand, Oman, Papua New Guinea, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Tunisia, Viet Nam and Yemen, the frequency band 7 100-7 200 kHz is also allocated to the fixed and the mobile, except aeronautical mobile (R), services on a primary basis. (WRC-15)']), (7200000, 7300001): (False, False, False, True, False, ['Broadcasting'], [], []), (7300000, 7400001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.143]: Additional allocation: frequencies in the band 7 300-7 350 kHz may be used by stations in the fixed service and in the land mobile service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)', '[5.143A]: In Region 3, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed service on a primary basis and land mobile service on a secondary basis, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)', '[5.143B]: In Region 1, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed and land mobile services communicating only within the boundary of the country in which they are located on condition that harmful interference is not caused to the broadcasting service. The total radiated power of each station shall not exceed 24 dBW. (WRC-12)', '[5.143C]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Iran (Islamic Republic of), Jordan, Kuwait, Libya, Morocco, Mauritania, Niger, Oman, Qatar, the Syrian Arab Republic, Sudan, South Sudan, Tunisia and Yemen, the bands 7 350-7 400 kHz and 7 400-7 450 kHz are also allocated to the fixed service on a primary basis. (WRC-12)', '[5.143D]: In Region 2, frequencies in the band 7 350-7 400 kHz may be used by stations in the fixed service and in the land mobile service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)']), (7400000, 7450001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.143A]: In Region 3, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed service on a primary basis and land mobile service on a secondary basis, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)', '[5.143C]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Iran (Islamic Republic of), Jordan, Kuwait, Libya, Morocco, Mauritania, Niger, Oman, Qatar, the Syrian Arab Republic, Sudan, South Sudan, Tunisia and Yemen, the bands 7 350-7 400 kHz and 7 400-7 450 kHz are also allocated to the fixed service on a primary basis. (WRC-12)']), (7450000, 8100001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.144]: In Region 3, the stations of those services to which the band 7 995-8 005 kHz is allocated may transmit standard frequency and time signals.']), (8100000, 8195001): (False, True, True, False, False, ['Maritime Mobile'], [], []), (8195000, 8815001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (8815000, 8965001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (8965000, 9040001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (9040000, 9305001): (False, True, False, False, False, [], [], []), (9305000, 9355001): (False, True, False, False, False, [], ['Radiolocation [5.145A]'], ['[5.145A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed service. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (9355000, 9400001): (False, True, False, False, False, [], [], []), (9400000, 9500001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (9500000, 9900001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.147]: On condition that harmful interference is not caused to the broadcasting service, frequencies in the bands 9 775-9 900 kHz, 11 650-11 700 kHz and 11 975-12 050 kHz may be used by stations in the fixed service communicating only within the boundary of the country in which they are located, each station using a total radiated power not exceeding 24 dBW.']), (9900000, 9995001): (False, True, False, False, False, [], [], []), (9995000, 10003001): (False, False, False, False, False, ['Standard Frequency And Time Signal (10 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10003000, 10005001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10005000, 10100001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10100000, 10150001): (True, True, False, False, False, [], ['Amateur'], []), (10150000, 11175001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (11175000, 11275001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (11275000, 11400001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (11400000, 11600001): (False, True, False, False, False, [], [], []), (11600000, 11650001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (11650000, 12050001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.147]: On condition that harmful interference is not caused to the broadcasting service, frequencies in the bands 9 775-9 900 kHz, 11 650-11 700 kHz and 11 975-12 050 kHz may be used by stations in the fixed service communicating only within the boundary of the country in which they are located, each station using a total radiated power not exceeding 24 dBW.']), (12050000, 12100001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (12100000, 12230001): (False, True, False, False, False, [], [], []), (12230000, 13200001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)']), (13200000, 13260001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (13260000, 13360001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (13360000, 13410001): (False, True, False, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (13410000, 13450001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (13450000, 13550001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)', 'Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (13550000, 13570001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (13570000, 13600001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.151]: Additional allocation: frequencies in the bands 13 570-13 600 kHz and 13 800-13 870 kHz may be used by stations in the fixed service and in the mobile except aeronautical mobile (R) service, communicating only within the boundary of the country in which they are located, on the condition that harmful interference is not caused to the broadcasting service. When using frequencies in these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (13600000, 13800001): (False, False, False, True, False, ['Broadcasting'], [], []), (13800000, 13870001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.151]: Additional allocation: frequencies in the bands 13 570-13 600 kHz and 13 800-13 870 kHz may be used by stations in the fixed service and in the mobile except aeronautical mobile (R) service, communicating only within the boundary of the country in which they are located, on the condition that harmful interference is not caused to the broadcasting service. When using frequencies in these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (13870000, 14000001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (14000000, 14250001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (14250000, 14350001): (True, False, False, False, False, ['Amateur'], [], ['[5.152]: Additional allocation: in Armenia, Azerbaijan, China, Côte d’Ivoire, the Russian Federation, Georgia, Iran (Islamic Republic of), Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 14 250-14 350 kHz is also allocated to the fixed service on a primary basis. Stations of the fixed service shall not use a radiated power exceeding 24 dBW. (WRC-03)']), (14350000, 14990001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (14990000, 15005001): (False, False, False, False, False, ['Standard Frequency And Time Signal (15 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (15005000, 15010001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (15010000, 15100001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (15100000, 15600001): (False, False, False, True, False, ['Broadcasting'], [], []), (15600000, 15800001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (15800000, 16100001): (False, True, False, False, False, [], [], ['[5.153]: In Region 3, the stations of those services to which the band 15 995-16 005 kHz is allocated may transmit standard frequency and time signals.']), (16100000, 16200001): (False, True, False, False, False, [], ['Radiolocation [5.145A]'], ['[5.145A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed service. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (16200000, 16360001): (False, True, False, False, False, [], [], []), (16360000, 17410001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)']), (17410000, 17480001): (False, True, False, False, False, [], [], []), (17480000, 17550001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (17550000, 17900001): (False, False, False, True, False, ['Broadcasting'], [], []), (17900000, 17970001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (17970000, 18030001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (18030000, 18052001): (False, True, False, False, False, [], [], []), (18052000, 18068001): (False, True, False, False, False, [], ['Space Research'], []), (18068000, 18168001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.154]: Additional allocation: in Armenia, Azerbaijan, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 18 068-18 168 kHz is also allocated to the fixed service on a primary basis for use within their boundaries, with a peak envelope power not exceeding 1 kW. (WRC-03)']), (18168000, 18780001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile'], []), (18780000, 18900001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (18900000, 19020001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (19020000, 19680001): (False, True, False, False, False, [], [], []), (19680000, 19800001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).']), (19800000, 19990001): (False, True, False, False, False, [], [], []), (19990000, 19995001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (19995000, 20010001): (False, False, False, False, False, ['Standard Frequency And Time Signal (20 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (20010000, 21000001): (False, True, True, False, False, [], [], []), (21000000, 21450001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (21450000, 21850001): (False, False, False, True, False, ['Broadcasting'], [], []), (21850000, 21870001): (False, True, False, False, False, ['Fixed [5.155A]'], [], ['[5.155A]: In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Slovakia, Tajikistan, Turkmenistan and Ukraine, the use of the band 21 850-21 870 kHz by the fixed service is limited to provision of services related to aircraft flight safety. (WRC-07)', '[5.155]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Slovakia, Tajikistan, Turkmenistan and Ukraine, the band 21 850-21 870 kHz is also allocated to the aeronautical mobile (R) service on a primary basis. (WRC-07)']), (21870000, 21924001): (False, True, False, False, False, ['Fixed [5.155B]'], [], ['[5.155B]: The band 21 870-21 924 kHz is used by the fixed service for provision of services related to aircraft flight safety.']), (21924000, 22000001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (22000000, 22855001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (22855000, 23000001): (False, True, False, False, False, [], [], ['[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (23000000, 23200001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], ['[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (23200000, 23350001): (False, True, True, False, False, ['Fixed [5.156A]', 'Aeronautical Mobile (Or)'], [], ['[5.156A]: The use of the band 23 200-23 350 kHz by the fixed service is limited to provision of services related to aircraft flight safety.']), (23350000, 24000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.157]'], [], ['[5.157]: The use of the band 23 350-24 000 kHz by the maritime mobile service is limited to inter-ship radiotelegraphy.']), (24000000, 24450001): (False, True, True, False, False, ['Land Mobile'], [], []), (24450000, 24600001): (False, True, True, False, False, ['Land Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (24600000, 24890001): (False, True, True, False, False, ['Land Mobile'], [], []), (24890000, 24990001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (24990000, 25005001): (False, False, False, False, False, ['Standard Frequency And Time Signal (25 000 Khz)'], [], []), (25005000, 25010001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (25010000, 25070001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (25070000, 25210001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (25210000, 25550001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (25550000, 25670001): (False, False, False, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (25670000, 26100001): (False, False, False, True, False, ['Broadcasting'], [], []), (26100000, 26175001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).']), (26175000, 26200001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (26200000, 26350001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (26350000, 27500001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (27500000, 28000001): (False, True, True, False, False, ['Meteorological Aids'], [], []), (28000000, 29700001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (29700000, 30005001): (False, True, True, False, False, [], [], []), (30005000, 30010001): (False, True, True, False, False, ['Space Operation (Satellite Identification)', 'Space Research'], [], []), (30010000, 37500001): (False, True, True, False, False, [], [], []), (37500000, 38250001): (False, True, True, False, False, [], ['Radio Astronomy'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (38250000, 39500001): (False, True, True, False, False, [], [], []), (39500000, 39986001): (False, True, True, False, False, ['Radiolocation [5.132A]'], [], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (39986000, 40000001): (False, True, True, False, False, ['Radiolocation [5.132A]'], ['Space Research'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (40000000, 40020001): (False, True, True, False, False, [], ['Space Research'], []), (40020000, 40980001): (False, True, True, False, False, [], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (40980000, 41015001): (False, True, True, False, False, [], ['Space Research'], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.']), (41015000, 42000001): (False, True, True, False, False, [], [], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.', '[5.161A]: Additional allocation: in Korea (Rep. of) and the United States, the frequency bands 41.015-41.665 MHz and 43.35-44 MHz are also allocated to the radiolocation service on a primary basis. Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (42000000, 42500001): (False, True, True, False, False, [], [], ['[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.']), (42500000, 44000001): (False, True, True, False, False, [], [], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.', '[5.161A]: Additional allocation: in Korea (Rep. of) and the United States, the frequency bands 41.015-41.665 MHz and 43.35-44 MHz are also allocated to the radiolocation service on a primary basis. Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (44000000, 47000001): (False, True, True, False, False, [], [], ['[5.162]: Additional allocation: in Australia, the band 44-47 MHz is also allocated to the broadcasting service on a primary basis. (WRC-12)', '[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)']), (47000000, 50000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)']), (50000000, 54000001): (True, False, False, False, False, ['Amateur'], [], ['[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)', '[5.167]: Alternative allocation: in Bangladesh, Brunei Darussalam, India, Iran (Islamic Republic of), Pakistan and Singapore, the frequency band 50-54 MHz is allocated to the fixed, mobile and broadcasting services on a primary basis. (WRC-15)', '[5.167A]: Additional allocation: in Indonesia and Thailand, the frequency band 50-54 MHz is also allocated to the fixed, mobile and broadcasting services on a primary basis. (WRC-15)', '[5.168]: Additional allocation: in Australia, China and the Dem. People’s Rep. of Korea, the band 50-54 MHz is also allocated to the broadcasting service on a primary basis.', '[5.170]: Additional allocation: in New Zealand, the frequency band 51-54 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)']), (54000000, 68000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)']), (68000000, 74800001): (False, True, True, False, False, [], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.176]: Additional allocation: in Australia, China, Korea (Rep. of), the Philippines, the Dem. People’s Rep. of Korea and Samoa, the band 68-74 MHz is also allocated to the broadcasting service on a primary basis. (WRC-07)', '[5.179]: Additional allocation: in Armenia, Azerbaijan, Belarus, China, the Russian Federation, Georgia, Kazakhstan, Lithuania, Mongolia, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 74.6-74.8 MHz and 75.2-75.4 MHz are also allocated to the aeronautical radionavigation service, on a primary basis, for ground-based transmitters only. (WRC-12)']), (74800000, 75200001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], ['[5.180]: The frequency 75 MHz is assigned to marker beacons. Administrations shall refrain from assigning frequencies close to the limits of the guardband to stations of other services which, because of their power or geographical position, might cause harmful interference or otherwise place a constraint on marker beacons.Every effort should be made to improve further the characteristics of airborne receivers and to limit the power of transmitting stations close to the limits 74.8 MHz and 75.2 MHz. ', '[5.181]: Additional allocation: in Egypt, Israel and the Syrian Arab Republic, the band 74.8-75.2 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedure invoked under No. 9.21. (WRC-03)']), (75200000, 75400001): (False, True, True, False, False, [], [], ['[5.179]: Additional allocation: in Armenia, Azerbaijan, Belarus, China, the Russian Federation, Georgia, Kazakhstan, Lithuania, Mongolia, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 74.6-74.8 MHz and 75.2-75.4 MHz are also allocated to the aeronautical radionavigation service, on a primary basis, for ground-based transmitters only. (WRC-12)']), (75400000, 87000001): (False, True, True, False, False, [], [], ['[5.182]: Additional allocation: in Western Samoa, the band 75.4-87 MHz is also allocated to the broadcasting service on a primary basis.', '[5.183]: Additional allocation: in China, Korea (Rep. of), Japan, the Philippines and the Dem. People’s Rep. of Korea, the band 76-87 MHz is also allocated to the broadcasting service on a primary basis.', '[5.188]: Additional allocation: in Australia, the band 85-87 MHz is also allocated to the broadcasting service on a primary basis. The introduction of the broadcasting service in Australia is subject to special agreements between the administrations concerned.']), (87000000, 100000001): (False, True, True, True, False, ['Broadcasting'], [], []), (100000000, 108000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.192]: Additional allocation: in China and Korea (Rep. of), the band 100-108 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-97)', '[5.194]: Additional allocation: in Azerbaijan, Kyrgyzstan, Somalia and Turkmenistan, the band 104-108 MHz is also allocated to the mobile, except aeronautical mobile (R), service on a secondary basis. (WRC-07)']), (108000000, 117975001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], ['[5.197]: Additional allocation: in the Syrian Arab Republic, the band 108-111.975 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedures invoked under No. 9.21. (WRC-12)', '[5.197A]: Additional allocation: the band 108-117.975 MHz is also allocated on a primary basis to the aeronautical mobile (R) service, limited to systems operating in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 413 (Rev.WRC-07)*. The use of the band 108-112 MHz by the aeronautical mobile (R) service shall be limited to systems composed of ground-based transmitters and associated receivers that provide navigational information in support of air navigation functions in accordance with recognized international aeronautical standards. (WRC-07)']), (117975000, 137000001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.200]: In the band 117.975-137 MHz, the frequency 121.5 MHz is the aeronautical emergency frequency and, where required, the frequency 123.1 MHz is the aeronautical frequency auxiliary to 121.5 MHz. Mobile stations of the maritime mobile service may communicate on these frequencies under the conditions laid down in Article 31 for distress and safety purposes with stations of the aeronautical mobile service. (WRC-07)', '[5.201]: Additional allocation: in Armenia, Azerbaijan, Belarus, Bulgaria, Estonia, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq (Republic of), Japan, Kazakhstan, Moldova, Mongolia, Mozambique, Uzbekistan, Papua New Guinea, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the frequency band 132-136 MHz is also allocated to the aeronautical mobile (OR) service on a primary basis. In assigning frequencies to stations of the aeronautical mobile (OR) service, the administration shall take account of the frequencies assigned to stations in the aeronautical mobile (R) service. (WRC-15)', '[5.202]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Belarus, Bulgaria, the United Arab Emirates, the Russian Federation, Georgia, Iran (Islamic Republic of), Jordan, Oman, Uzbekistan, Poland, the Syrian Arab Republic, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the frequency band 136-137 MHz is also allocated to the aeronautical mobile (OR) service on a primary basis. In assigning frequencies to stations of the aeronautical mobile (OR) service, the administration shall take account of the frequencies assigned to stations in the aeronautical mobile (R) service. (WRC-15)']), (137000000, 137025001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137025000, 137175001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137175000, 137825001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137825000, 138000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (138000000, 143600001): (False, True, True, False, False, [], ['Space Research (Space-To-Earth)'], ['[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.213]: Additional allocation: in China, the band 138-144 MHz is also allocated to the radiolocation service on a primary basis.']), (143600000, 143650001): (False, True, True, False, False, ['Space Research (Space-To-Earth)'], [], ['[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.213]: Additional allocation: in China, the band 138-144 MHz is also allocated to the radiolocation service on a primary basis.']), (143650000, 144000001): (False, True, True, False, False, [], ['Space Research (Space-To-Earth)'], ['[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.213]: Additional allocation: in China, the band 138-144 MHz is also allocated to the radiolocation service on a primary basis.']), (144000000, 146000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.216]: Additional allocation: in China, the band 144-146 MHz is also allocated to the aeronautical mobile (OR) service on a secondary basis.']), (146000000, 148000001): (True, True, True, False, False, ['Amateur'], [], ['[5.217]: Alternative allocation: in Afghanistan, Bangladesh, Cuba, Guyana and India, the band 146-148 MHz is allocated to the fixed and mobile services on a primary basis.']), (148000000, 149900001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.218]: Additional allocation: the band 148-149.9 MHz is also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. The bandwidth of any individual transmission shall not exceed ± 25 kHz.', '[5.219]: The use of the band 148-149.9 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. The mobile-satellite service shall not constrain the development and use of the fixed, mobile and space operation services in the band 148-149.9 MHz.', "[5.221]: Stations of the mobile-satellite service in the frequency band 148-149.9 MHz shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations in the following countries: Albania, Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Bangladesh, Barbados, Belarus, Belgium, Benin, Bosnia and Herzegovina, Botswana, Brunei Darussalam, Bulgaria, Cameroon, China, Cyprus, Congo (Rep. of the), Korea (Rep. of), Côte d'Ivoire, Croatia, Cuba, Denmark, Djibouti, Egypt, the United Arab Emirates, Eritrea, Spain, Estonia, Ethiopia, the Russian Federation, Finland, France, Gabon, Georgia, Ghana, Greece, Guinea, Guinea Bissau, Hungary, India, Iran (Islamic Republic of), Ireland, Iceland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Libya, Liechtenstein, Lithuania, Luxembourg, Malaysia, Mali, Malta, Mauritania, Moldova, Mongolia, Montenegro, Mozambique, Namibia, Norway, New Zealand, Oman, Uganda, Uzbekistan, Pakistan, Panama, Papua New Guinea, Paraguay, the Netherlands, the Philippines, Poland, Portugal, Qatar, the Syrian Arab Republic, Kyrgyzstan, Dem. People’s Rep. of Korea, Slovakia, Romania, the United Kingdom, Senegal, Serbia, Sierra Leone, Singapore, Slovenia, Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Swaziland, Tanzania, Chad, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, Ukraine, Viet Nam, Yemen, Zambia and Zimbabwe. (WRC-15)"]), (149900000, 150050001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209][5.220]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.220]: The use of the frequency bands 149.9-150.05 MHz and 399.9-400.05 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-15)']), (150050000, 154000001): (False, True, True, False, False, [], [], ['[5.225]: Additional allocation: in Australia and India, the band 150.05-153 MHz is also allocated to the radio astronomy service on a primary basis.']), (154000000, 156488001): (False, True, True, False, False, [], [], ['[5.225A]: Additional allocation: in Algeria, Armenia, Azerbaijan, Belarus, China, the Russian Federation, France, Iran (Islamic Republic of), Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan, Ukraine and Viet Nam, the frequency band 154-156 MHz is also allocated to the radiolocation service on a primary basis. The usage of the frequency band 154-156 MHz by the radiolocation service shall be limited to space-object detection systems operating from terrestrial locations. The operation of stations in the radiolocation service in the frequency band 154-156 MHz shall be subject to agreement obtained under No. 9.21. For the identification of potentially affected administrations in Region 1, the instantaneous field-strength value of 12 dB(μV/m) for 10% of the time produced at 10 m above ground level in the 25 kHz reference frequency band at the border of the territory of any other administration shall be used. For the identification of potentially affected administrations in Region 3, the interference-to-noise ratio (I/N) value of −6 dB (N = −161 dBW/4 kHz), or −10 dB for applications with greater protection requirements, such as public protection and disaster relief (PPDR (N = −161 dBW/4 kHz)), for 1% of the time produced at 60 m above ground level at the border of the territory of any other administration shall be used. In the frequency bands 156.7625-156.8375 MHz, 156.5125-156.5375 MHz, 161.9625-161.9875 MHz, 162.0125-162.0375 MHz, out-of-band e.i.r.p. of space surveillance radars shall not exceed −16 dBW. Frequency assignments to the radiolocation service under this allocation in Ukraine shall not be used without the agreement of Moldova. (WRC-12)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156488000, 156563001): (False, False, True, False, False, ['Maritime Mobile (Distress And Calling Via Dsc)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.227]: Additional allocation: the bands 156.4875-156.5125 MHz and 156.5375-156.5625 MHz are also allocated to the fixed and land mobile services on a primary basis. The use of these bands by the fixed and land mobile services shall not cause harmful interference to nor claim protection from the maritime mobile VHF radiocommunication service. (WRC-07)']), (156563000, 156763001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156763000, 156787001): (False, False, True, False, False, ['Maritime Mobile'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228]: The use of the frequency bands 156.7625-156.7875 MHz and 156.8125-156.8375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system (AIS) emissions of long-range AIS broadcast messages (Message 27, see the most recent version of Recommendation ITU-R M.1371). With the exception of AIS emissions, emissions in these frequency bands by systems operating in the maritime mobile service for communications shall not exceed 1 W. (WRC-12)']), (156787000, 156813001): (False, False, True, False, False, ['Maritime Mobile (Distress And Calling)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156813000, 156838001): (False, False, True, False, False, ['Maritime Mobile'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228]: The use of the frequency bands 156.7625-156.7875 MHz and 156.8125-156.8375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system (AIS) emissions of long-range AIS broadcast messages (Message 27, see the most recent version of Recommendation ITU-R M.1371). With the exception of AIS emissions, emissions in these frequency bands by systems operating in the maritime mobile service for communications shall not exceed 1 W. (WRC-12)']), (156838000, 161938001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161938000, 161963001): (False, True, True, False, False, [], ['Maritime Mobile-Satellite (Earth-To-Space) [5.228Aa]'], ['[5.228AA]: The use of the frequency bands 161.9375-161.9625 MHz and 161.9875-162.0125 MHz by the maritime mobile-satellite (Earth-to-space) service is limited to the systems which operate in accordance with Appendix 18. (WRC-15)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161963000, 161988001): (False, False, True, False, False, ['Maritime Mobile'], ['Aeronautical Mobile (Or) [5.228E]', 'Mobile-Satellite (Earth-To-Space) [5.228F]'], ['[5.228E]: The use of the automatic identification system in the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the aeronautical mobile (OR) service is limited to aircraft stations for the purpose of search and rescue operations and other safety-related communications. (WRC-12)', '[5.228F]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system emissions from stations operating in the maritime mobile service. (WRC-12)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161988000, 162013001): (False, True, True, False, False, [], ['Maritime Mobile-Satellite (Earth-To-Space) [5.228Aa]'], ['[5.228AA]: The use of the frequency bands 161.9375-161.9625 MHz and 161.9875-162.0125 MHz by the maritime mobile-satellite (Earth-to-space) service is limited to the systems which operate in accordance with Appendix 18. (WRC-15)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (162013000, 162037001): (False, False, True, False, False, ['Maritime Mobile'], ['Aeronautical Mobile (Or) [5.228E]', 'Mobile-Satellite (Earth-To-Space) [5.228F]'], ['[5.228E]: The use of the automatic identification system in the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the aeronautical mobile (OR) service is limited to aircraft stations for the purpose of search and rescue operations and other safety-related communications. (WRC-12)', '[5.228F]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system emissions from stations operating in the maritime mobile service. (WRC-12)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (162037000, 174000001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.230]: Additional allocation: in China, the band 163-167 MHz is also allocated to the space operation service (space-to-Earth) on a primary basis, subject to agreement obtained under No. 9.21.', '[5.231]: Additional allocation: in Afghanistan and China, the band 167-174 MHz is also allocated to the broadcasting service on a primary basis. The introduction of the broadcasting service into this band shall be subject to agreement with the neighbouring countries in Region 3 whose services are likely to be affected. (WRC-12)']), (174000000, 223000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.233]: Additional allocation: in China, the band 174-184 MHz is also allocated to the space research (space-to-Earth) and the space operation (space-to-Earth) services on a primary basis, subject to agreement obtained under No. 9.21. These services shall not cause harmful interference to, or claim protection from, existing or planned broadcasting stations.', '[5.238]: Additional allocation: in Bangladesh, India, Pakistan and the Philippines, the band 200-216 MHz is also allocated to the aeronautical radionavigation service on a primary basis.', '[5.240]: Additional allocation: in China and India, the band 216-223 MHz is also allocated to the aeronautical radionavigation service on a primary basis and to the radiolocation service on a secondary basis.', '[5.245]: Additional allocation: in Japan, the band 222-223 MHz is also allocated to the aeronautical radionavigation service on a primary basis and to the radiolocation service on a secondary basis.']), (223000000, 230000001): (False, True, True, True, False, ['Broadcasting', 'Aeronautical Radionavigation'], ['Radiolocation'], ['[5.250]: Additional allocation: in China, the band 225-235 MHz is also allocated to the radio astronomy service on a secondary basis.']), (230000000, 235000001): (False, True, True, False, False, ['Aeronautical Radionavigation'], [], ['[5.250]: Additional allocation: in China, the band 225-235 MHz is also allocated to the radio astronomy service on a secondary basis.']), (235000000, 267000001): (False, True, True, False, False, [], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.252]: Alternative allocation: in Botswana, Lesotho, Malawi, Mozambique, Namibia, South Africa, Swaziland, Zambia and Zimbabwe, the bands 230-238 MHz and 246-254 MHz are allocated to the broadcasting service on a primary basis, subject to agreement obtained under No. 9.21.', '[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.256]: The frequency 243 MHz is the frequency in this band for use by survival craft stations and equipment used for survival purposes. (WRC-07)', '[5.256A]: Additional allocation: in China, the Russian Federation and Kazakhstan, the frequency band 258-261 MHz is also allocated to the space research service (Earth-to-space) and space operation service (Earth-to-space) on a primary basis. Stations in the space research service (Earth-to-space) and space operation service (Earth-to-space) shall not cause harmful interference to, or claim protection from, or constrain the use and development of, the mobile service systems and mobile-satellite service systems operating in the frequency band. Stations in space research service (Earth-to-space) and space operation service (Earth-to-space) shall not constrain the future development of fixed service systems of other countries. (WRC-15)']), (267000000, 272000001): (False, True, True, False, False, [], ['Space Operation (Space-To-Earth)'], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.257]: The band 267-272 MHz may be used by administrations for space telemetry in their countries on a primary basis, subject to agreement obtained under No. 9.21.']), (272000000, 273000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)'], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (273000000, 312000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (312000000, 315000001): (False, True, True, False, False, [], ['Mobile-Satellite (Earth-To-Space) [5.254][5.255]'], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.255]: The bands 312-315 MHz (Earth-to-space) and 387-390 MHz (space-to-Earth) in the mobile-satellite service may also be used by non-geostationary-satellite systems. Such use is subject to coordination under No. 9.11A.']), (315000000, 322000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (322000000, 328600001): (False, True, True, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (328600000, 335400001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.258]'], [], ['[5.258]: The use of the band 328.6-335.4 MHz by the aeronautical radionavigation service is limited to Instrument Landing Systems (glide path).', '[5.259]: Additional allocation: in Egypt and the Syrian Arab Republic, the band 328.6-335.4 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedure invoked under No. 9.21. (WRC-12)']), (335400000, 387000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (387000000, 390000001): (False, True, True, False, False, [], ['Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.254][5.255]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.255]: The bands 312-315 MHz (Earth-to-space) and 387-390 MHz (space-to-Earth) in the mobile-satellite service may also be used by non-geostationary-satellite systems. Such use is subject to coordination under No. 9.11A.']), (390000000, 399900001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (399900000, 400050001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209][5.220]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.220]: The use of the frequency bands 149.9-150.05 MHz and 399.9-400.05 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-15)']), (400050000, 400150001): (False, False, False, False, True, ['Standard Frequency And Time Signal- Satellite (400.1 Mhz)'], [], ['[5.261]: Emissions shall be confined in a band of ± 25 kHz about the standard frequency 400.1 MHz.', '[5.262]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Botswana, Colombia, Cuba, Egypt, the United Arab Emirates, Ecuador, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Liberia, Malaysia, Moldova, Oman, Uzbekistan, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Kyrgyzstan, Singapore, Somalia, Tajikistan, Chad, Turkmenistan and Ukraine, the band 400.05-401 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (400150000, 401000001): (False, False, False, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth) [5.263]'], ['Space Operation (Space-To-Earth)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.263]: The band 400.15-401 MHz is also allocated to the space research service in the space-to-space direction for communications with manned space vehicles. In this application, the space research service will not be regarded as a safety service.', '[5.262]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Botswana, Colombia, Cuba, Egypt, the United Arab Emirates, Ecuador, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Liberia, Malaysia, Moldova, Oman, Uzbekistan, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Kyrgyzstan, Singapore, Somalia, Tajikistan, Chad, Turkmenistan and Ukraine, the band 400.05-401 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.264]: The use of the band 400.15-401 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. The power flux-density limit indicated in Annex 1 of Appendix 5 shall apply until such time as a competent world radiocommunication conference revises it.']), (401000000, 402000001): (False, True, True, False, False, ['Meteorological Aids', 'Space Operation (Space-To-Earth)', 'Earth Exploration-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)'], ['Mobile Except Aeronautical Mobile'], []), (402000000, 403000001): (False, True, True, False, False, ['Meteorological Aids', 'Earth Exploration-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)'], ['Mobile Except Aeronautical Mobile'], []), (403000000, 406000001): (False, True, True, False, False, ['Meteorological Aids'], ['Mobile Except Aeronautical Mobile'], ['[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)']), (406000000, 406100001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space)'], [], ['[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)', '[5.266]: The use of the band 406-406.1 MHz by the mobile-satellite service is limited to low power satellite emergency position-indicating radiobeacons (see also Article 31). (WRC-07)', '[5.267]: Any emission capable of causing harmful interference to the authorized uses of the band 406-406.1 MHz is prohibited.']), (406100000, 410000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)']), (410000000, 420000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Space) [5.268]'], [], ['[5.268]: Use of the frequency band 410-420 MHz by the space research service is limited to space-to-space communication links with an orbiting, manned space vehicle. The power flux-density at the surface of the Earth produced by emissions from transmitting stations of the space research service (space-to-space) in the frequency band 410-420 MHz shall not exceed −153 dB(W/m2) for 0° £ d £ 5°, −153 + 0.077 (d − 5) dB(W/m2) for 5° £ d £ 70° and −148 dB(W/m2) for 70° £ d £ 90°, where d is the angle of arrival of the radio-frequency wave and the reference bandwidth is 4 kHz. In this frequency band, stations of the space research service (space-to-space) shall not claim protection from, nor constrain the use and development of, stations of the fixed and mobile services. No. 4.10 does not apply. (WRC-15)']), (420000000, 430000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.269]: Different category of service: in Australia, the United States, India, Japan and the United Kingdom, the allocation of the bands 420-430 MHz and 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.270]: Additional allocation: in Australia, the United States, Jamaica and the Philippines, the bands 420-430 MHz and 440-450 MHz are also allocated to the amateur service on a secondary basis.', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)']), (430000000, 432000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.278]: Different category of service: in Argentina, Colombia, Costa Rica, Cuba, Guyana, Honduras, Panama and Venezuela, the allocation of the band 430-440 MHz to the amateur service is on a primary basis (see No. 5.33).', '[5.279]: Additional allocation: in Mexico, the bands 430-435 MHz and 438-440 MHz are also allocated on a primary basis to the land mobile service, subject to agreement obtained under No. 9.21.']), (432000000, 438000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Earth Exploration-Satellite (Active) [5.279A]'], ['[5.279A]: The use of the frequency band 432-438 MHz by sensors in the Earth exploration-satellite service (active) shall be in accordance with Recommendation ITU-R RS.1260-1. Additionally, the Earth exploration-satellite service (active) in the frequency band 432-438 MHz shall not cause harmful interference to the aeronautical radionavigation service in China. The provisions of this footnote in no way diminish the obligation of the Earth exploration-satellite service (active) to operate as a secondary service in accordance with Nos. 5.29 and 5.30. (WRC-15)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.278]: Different category of service: in Argentina, Colombia, Costa Rica, Cuba, Guyana, Honduras, Panama and Venezuela, the allocation of the band 430-440 MHz to the amateur service is on a primary basis (see No. 5.33).', '[5.279]: Additional allocation: in Mexico, the bands 430-435 MHz and 438-440 MHz are also allocated on a primary basis to the land mobile service, subject to agreement obtained under No. 9.21.', '[5.281]: Additional allocation: in the French overseas departments and communities in Region 2 and India, the band 433.75-434.25 MHz is also allocated to the space operation service (Earth-to-space) on a primary basis. In France and in Brazil, the band is allocated to the same service on a secondary basis.', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.']), (438000000, 440000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.278]: Different category of service: in Argentina, Colombia, Costa Rica, Cuba, Guyana, Honduras, Panama and Venezuela, the allocation of the band 430-440 MHz to the amateur service is on a primary basis (see No. 5.33).', '[5.279]: Additional allocation: in Mexico, the bands 430-435 MHz and 438-440 MHz are also allocated on a primary basis to the land mobile service, subject to agreement obtained under No. 9.21.']), (440000000, 450000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.269]: Different category of service: in Australia, the United States, India, Japan and the United Kingdom, the allocation of the bands 420-430 MHz and 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.270]: Additional allocation: in Australia, the United States, Jamaica and the Philippines, the bands 420-430 MHz and 440-450 MHz are also allocated to the amateur service on a secondary basis.', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.284]: Additional allocation: in Canada, the band 440-450 MHz is also allocated to the amateur service on a secondary basis.', '[5.285]: Different category of service: in Canada, the allocation of the band 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.286]: The band 449.75-450.25 MHz may be used for the space operation service (Earth-to-space) and the space research service (Earth-to-space), subject to agreement obtained under No. 9.21.']), (450000000, 455000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286]: The band 449.75-450.25 MHz may be used for the space operation service (Earth-to-space) and the space research service (Earth-to-space), subject to agreement obtained under No. 9.21.', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286D]: Additional allocation: in Canada, the United States and Panama, the band 454-455 MHz is also allocated to the mobile-satellite service (Earth-to-space) on a primary basis. (WRC-07)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (455000000, 456000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (456000000, 459000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.287]: Use of the frequency bands 457.5125-457.5875 MHz and 467.5125-467.5875 MHz by the maritime mobile service is limited to on-board communication stations. The characteristics of the equipment and the channelling arrangement shall be in accordance with Recommendation ITU-R M.1174-3. The use of these frequency bands in territorial waters is subject to the national regulations of the administration concerned. (WRC-15)', '[5.288]: In the territorial waters of the United States and the Philippines, the preferred frequencies for use by on-board communication stations shall be 457.525 MHz, 457.550 MHz, 457.575 MHz and 457.600 MHz paired, respectively, with 467.750 MHz, 467.775 MHz, 467.800 MHz and 467.825 MHz. The characteristics of the equipment used shall conform to those specified in Recommendation ITU-R M.1174-3. (WRC-15)']), (459000000, 460000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (460000000, 470000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], ['Meteorological-Satellite (Space-To-Earth)'], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.287]: Use of the frequency bands 457.5125-457.5875 MHz and 467.5125-467.5875 MHz by the maritime mobile service is limited to on-board communication stations. The characteristics of the equipment and the channelling arrangement shall be in accordance with Recommendation ITU-R M.1174-3. The use of these frequency bands in territorial waters is subject to the national regulations of the administration concerned. (WRC-15)', '[5.288]: In the territorial waters of the United States and the Philippines, the preferred frequencies for use by on-board communication stations shall be 457.525 MHz, 457.550 MHz, 457.575 MHz and 457.600 MHz paired, respectively, with 467.750 MHz, 467.775 MHz, 467.800 MHz and 467.825 MHz. The characteristics of the equipment used shall conform to those specified in Recommendation ITU-R M.1174-3. (WRC-15)', '[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.290]: Different category of service: in Afghanistan, Azerbaijan, Belarus, China, the Russian Federation, Japan, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 460-470 MHz to the meteorological-satellite service (space-to-Earth) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-12)']), (470000000, 585000001): (False, True, True, True, False, ['Mobile [5.296A]', 'Broadcasting'], [], ['[5.296A]: In Micronesia, the Solomon Islands, Tuvalu and Vanuatu, the frequency band 470-698 MHz, or portions thereof, and in Bangladesh, Maldives and New Zealand, the frequency band 610-698 MHz, or portions thereof, are identified for use by these administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolution 224 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. The mobile allocation in this frequency band shall not be used for IMT systems unless subject to agreement obtained under No. 9.21 and shall not cause harmful interference to, or claim protection from, the broadcasting service of neighbouring countries. Nos. 5.43 and 5.43A apply. (WRC-15)', '[5.291]: Additional allocation: in China, the band 470-485 MHz is also allocated to the space research (space-to-Earth) and the space operation (space-to-Earth) services on a primary basis subject to agreement obtained under No. 9.21 and subject to not causing harmful interference to existing and planned broadcasting stations.', '[5.298]: Additional allocation: in India, the band 549.75-550.25 MHz is also allocated to the space operation service (space-to-Earth) on a secondary basis.']), (585000000, 610000001): (False, True, True, True, False, ['Mobile [5.296A]', 'Broadcasting', 'Radionavigation'], [], ['[5.296A]: In Micronesia, the Solomon Islands, Tuvalu and Vanuatu, the frequency band 470-698 MHz, or portions thereof, and in Bangladesh, Maldives and New Zealand, the frequency band 610-698 MHz, or portions thereof, are identified for use by these administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolution 224 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. The mobile allocation in this frequency band shall not be used for IMT systems unless subject to agreement obtained under No. 9.21 and shall not cause harmful interference to, or claim protection from, the broadcasting service of neighbouring countries. Nos. 5.43 and 5.43A apply. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.305]: Additional allocation: in China, the band 606-614 MHz is also allocated to the radio astronomy service on a primary basis.', '[5.306]: Additional allocation: in Region 1, except in the African Broadcasting Area (see Nos. 5.10 to 5.13), and in Region 3, the band 608-614 MHz is also allocated to the radio astronomy service on a secondary basis.', '[5.307]: Additional allocation: in India, the band 608-614 MHz is also allocated to the radio astronomy service on a primary basis.']), (610000000, 890000001): (False, True, True, True, False, ['Mobile [5.296A][5.313A][5.317A]', 'Broadcasting'], [], ['[5.296A]: In Micronesia, the Solomon Islands, Tuvalu and Vanuatu, the frequency band 470-698 MHz, or portions thereof, and in Bangladesh, Maldives and New Zealand, the frequency band 610-698 MHz, or portions thereof, are identified for use by these administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolution 224 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. The mobile allocation in this frequency band shall not be used for IMT systems unless subject to agreement obtained under No. 9.21 and shall not cause harmful interference to, or claim protection from, the broadcasting service of neighbouring countries. Nos. 5.43 and 5.43A apply. (WRC-15)', '[5.313A]: The frequency band, or portions of the frequency band 698-790 MHz, in Australia, Bangladesh, Brunei Darussalam, Cambodia, China, Korea (Rep. of), Fiji, India, Indonesia, Japan, Kiribati, Lao P.D.R., Malaysia, Myanmar (Union of), New Zealand, Pakistan, Papua New Guinea, the Philippines, Solomon Islands, Samoa, Singapore, Thailand, Tonga, Tuvalu, Vanuatu and Viet Nam, are identified for use by these administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. In China, the use of IMT in this frequency band will not start until 2015. (WRC-15)', '[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.305]: Additional allocation: in China, the band 606-614 MHz is also allocated to the radio astronomy service on a primary basis.', '[5.306]: Additional allocation: in Region 1, except in the African Broadcasting Area (see Nos. 5.10 to 5.13), and in Region 3, the band 608-614 MHz is also allocated to the radio astronomy service on a secondary basis.', '[5.307]: Additional allocation: in India, the band 608-614 MHz is also allocated to the radio astronomy service on a primary basis.', '[5.311A]: For the frequency band 620-790 MHz, see also Resolution 549 (WRC-07). (WRC-07)', '[5.320]: Additional allocation: in Region 3, the bands 806-890 MHz and 942-960 MHz are also allocated to the mobile-satellite, except aeronautical mobile-satellite (R), service on a primary basis, subject to agreement obtained under No. 9.21. The use of this service is limited to operation within national boundaries. In seeking such agreement, appropriate protection shall be afforded to services operating in accordance with the Table, to ensure that no harmful interference is caused to such services.']), (890000000, 942000001): (False, True, True, True, False, ['Mobile [5.317A]', 'Broadcasting'], ['Radiolocation'], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.327]: Different category of service: in Australia, the allocation of the band 915-928 MHz to the radiolocation service is on a primary basis (see No. 5.33).']), (942000000, 960000001): (False, True, True, True, False, ['Mobile [5.317A]', 'Broadcasting'], [], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.320]: Additional allocation: in Region 3, the bands 806-890 MHz and 942-960 MHz are also allocated to the mobile-satellite, except aeronautical mobile-satellite (R), service on a primary basis, subject to agreement obtained under No. 9.21. The use of this service is limited to operation within national boundaries. In seeking such agreement, appropriate protection shall be afforded to services operating in accordance with the Table, to ensure that no harmful interference is caused to such services.']), (960000000, 1164000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.327A]', 'Aeronautical Radionavigation [5.328]'], [], ['[5.327A]: The use of the frequency band 960-1 164 MHz by the aeronautical mobile (R) service is limited to systems that operate in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 417 (Rev.WRC-15). (WRC-15)', '[5.328]: The use of the band 960-1 215 MHz by the aeronautical radionavigation service is reserved on a worldwide basis for the operation and development of airborne electronic aids to air navigation and any directly associated ground-based facilities. (WRC-2000)', '[5.328AA]: The frequency band 1 087.7-1 092.3 MHz is also allocated to the aeronautical mobile-satellite (R) service (Earth-to-space) on a primary basis, limited to the space station reception of Automatic Dependent Surveillance-Broadcast (ADS-B) emissions from aircraft transmitters that operate in accordance with recognized international aeronautical standards. Stations operating in the aeronautical mobile-satellite (R) service shall not claim protection from stations operating in the aeronautical radionavigation service. Resolution 425 (WRC-15) shall apply. (WRC-15)']), (1164000000, 1215000001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.328]', 'Radionavigation-Satellite (Space-To-Earth) [5.328B]', 'Radionavigation-Satellite (Space-To-Space) [5.328B]'], [], ['[5.328]: The use of the band 960-1 215 MHz by the aeronautical radionavigation service is reserved on a worldwide basis for the operation and development of airborne electronic aids to air navigation and any directly associated ground-based facilities. (WRC-2000)', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.328A]: Stations in the radionavigation-satellite service in the band 1 164-1 215 MHz shall operate in accordance with the provisions of Resolution 609 (Rev.WRC-07) and shall not claim protection from stations in the aeronautical radionavigation service in the band 960-1 215 MHz. No. 5.43A does not apply. The provisions of No. 21.18 shall apply. (WRC-07)']), (1215000000, 1240000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation-Satellite (Space-To-Earth) [5.328B][5.329][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.328B][5.329][5.329A]', 'Space Research (Active)'], [], ['[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329]: Use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to, and no protection is claimed from, the radionavigation service authorized under No. 5.331. Furthermore, the use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to the radiolocation service. No. 5.43 shall not apply in respect of the radiolocation service. Resolution 608 (WRC-03)* shall apply. (WRC-03)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.330]: Additional allocation: in Angola, Saudi Arabia, Bahrain, Bangladesh, Cameroon, China, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Nepal, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the band 1 215-1 300 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.331]: Additional allocation: in Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Belarus, Belgium, Benin, Bosnia and Herzegovina, Brazil, Burkina Faso, Burundi, Cameroon, China, Korea (Rep. of), Croatia, Denmark, Egypt, the United Arab Emirates, Estonia, the Russian Federation, Finland, France, Ghana, Greece, Guinea, Equatorial Guinea, Hungary, India, Indonesia, Iran (Islamic Republic of), Iraq, Ireland, Israel, Jordan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Mauritania, Montenegro, Nigeria, Norway, Oman, Pakistan, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sudan, South Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Thailand, Togo, Turkey, Venezuela and Viet Nam, the band 1 215-1 300 MHz is also allocated to the radionavigation service on a primary basis. In Canada and the United States, the band 1 240-1 300 MHz is also allocated to the radionavigation service, and use of the radionavigation service shall be limited to the aeronautical radionavigation service. (WRC-12)', '[5.332]: In the band 1 215-1 260 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service, the radionavigation-satellite service and other services allocated on a primary basis. (WRC-2000)']), (1240000000, 1300000001): (True, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation-Satellite (Space-To-Earth) [5.328B][5.329][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.328B][5.329][5.329A]', 'Space Research (Active)'], ['Amateur'], ['[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329]: Use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to, and no protection is claimed from, the radionavigation service authorized under No. 5.331. Furthermore, the use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to the radiolocation service. No. 5.43 shall not apply in respect of the radiolocation service. Resolution 608 (WRC-03)* shall apply. (WRC-03)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.330]: Additional allocation: in Angola, Saudi Arabia, Bahrain, Bangladesh, Cameroon, China, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Nepal, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the band 1 215-1 300 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.331]: Additional allocation: in Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Belarus, Belgium, Benin, Bosnia and Herzegovina, Brazil, Burkina Faso, Burundi, Cameroon, China, Korea (Rep. of), Croatia, Denmark, Egypt, the United Arab Emirates, Estonia, the Russian Federation, Finland, France, Ghana, Greece, Guinea, Equatorial Guinea, Hungary, India, Indonesia, Iran (Islamic Republic of), Iraq, Ireland, Israel, Jordan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Mauritania, Montenegro, Nigeria, Norway, Oman, Pakistan, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sudan, South Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Thailand, Togo, Turkey, Venezuela and Viet Nam, the band 1 215-1 300 MHz is also allocated to the radionavigation service on a primary basis. In Canada and the United States, the band 1 240-1 300 MHz is also allocated to the radionavigation service, and use of the radionavigation service shall be limited to the aeronautical radionavigation service. (WRC-12)', '[5.332]: In the band 1 215-1 260 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service, the radionavigation-satellite service and other services allocated on a primary basis. (WRC-2000)', '[5.335]: In Canada and the United States in the band 1 240-1 300 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause interference to, claim protection from, or otherwise impose constraints on operation or development of the aeronautical radionavigation service. (WRC-97)', '[5.335A]: In the band 1 260-1 300 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service and other services allocated by footnotes on a primary basis. (WRC-2000)']), (1300000000, 1350000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.337]', 'Radionavigation-Satellite (Earth-To-Space)'], [], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.337A]: The use of the band 1 300-1 350 MHz by earth stations in the radionavigation-satellite service and by stations in the radiolocation service shall not cause harmful interference to, nor constrain the operation and development of, the aeronautical-radionavigation service. (WRC-2000)']), (1350000000, 1400000001): (False, False, False, False, False, ['Radiolocation [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.334]: Additional allocation: in Canada and the United States, the band 1 350-1 370 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-03)', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.']), (1400000000, 1427000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1427000000, 1429000001): (False, True, True, False, False, ['Space Operation (Earth-To-Space)', 'Mobile Except Aeronautical Mobile [5.341A][5.341B][5.341C]'], [], ['[5.341A]: In Region 1, the frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any other application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of IMT stations is subject to agreement obtained under No. 9.21 with respect to the aeronautical mobile service used for aeronautical telemetry in accordance with No. 5.342. (WRC-15)', '[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.341C]: The frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). The use of these frequency bands by the above administrations for the implementation of IMT in the frequency bands 1 429-1 452 MHz and 1 492-1 518 MHz is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of these frequency bands by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1429000000, 1452000001): (False, True, True, False, False, ['Mobile [5.341B][5.341C][5.343]'], [], ['[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.341C]: The frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). The use of these frequency bands by the above administrations for the implementation of IMT in the frequency bands 1 429-1 452 MHz and 1 492-1 518 MHz is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of these frequency bands by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1452000000, 1492000001): (False, True, True, True, False, ['Mobile [5.341B][5.343][5.346A]', 'Broadcasting', 'Broadcasting-Satellite [5.208B]'], [], ['[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.346A]: The frequency band 1 452-1 492 MHz is identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15) and Resolution 761 (WRC-15). The use of this frequency band by the above administrations for the implementation of IMT is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.344]: Alternative allocation: in the United States, the band 1 452-1 525 MHz is allocated to the fixed and mobile services on a primary basis (see also No. 5.343).', '[5.345]: Use of the band 1 452-1 492 MHz by the broadcasting-satellite service, and by the broadcasting service, is limited to digital audio broadcasting and is subject to the provisions of Resolution 528 (WARC-92)*.']), (1492000000, 1518000001): (False, True, True, False, False, ['Mobile [5.341C]'], [], ['[5.341C]: The frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). The use of these frequency bands by the above administrations for the implementation of IMT in the frequency bands 1 429-1 452 MHz and 1 492-1 518 MHz is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of these frequency bands by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1518000000, 1525000001): (False, True, True, False, False, ['Mobile-Satellite (Space-To-Earth) [5.348][5.348A][5.348B][5.351A]'], [], ['[5.348]: The use of the band 1 518-1 525 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 518-1 525 MHz stations in the mobile-satellite service shall not claim protection from the stations in the fixed service. No. 5.43A does not apply. (WRC-03)', '[5.348A]: In the band 1 518-1 525 MHz, the coordination threshold in terms of the power flux-density levels at the surface of the Earth in application of No. 9.11A for space stations in the mobile-satellite (space-to-Earth) service, with respect to the land mobile service use for specialized mobile radios or used in conjunction with public switched telecommunication networks (PSTN) operating within the territory of Japan, shall be –150 dB(W/m2) in any 4 kHz band for all angles of arrival, instead of those given in Table 5-2 of Appendix 5. In the band 1 518-1 525 MHz stations in the mobile-satellite service shall not claim protection from stations in the mobile service in the territory of Japan. No. 5.43A does not apply. (WRC-03)', '[5.348B]: In the band 1 518-1 525 MHz, stations in the mobile-satellite service shall not claim protection from aeronautical mobile telemetry stations in the mobile service in the territory of the United States (see Nos. 5.343 and 5.344) and in the countries listed in No. 5.342. No. 5.43A does not apply. (WRC-03)', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1525000000, 1530000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208B][5.351A]'], ['Earth Exploration-Satellite', 'Mobile [5.349]'], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.349]: Different category of service: in Saudi Arabia, Azerbaijan, Bahrain, Cameroon, Egypt, France, Iran (Islamic Republic of), Iraq, Israel, Kazakhstan, Kuwait, The Former Yugoslav Republic of Macedonia, Lebanon, Morocco, Qatar, Syrian Arab Republic, Kyrgyzstan, Turkmenistan and Yemen, the allocation of the band 1 525-1 530 MHz to the mobile, except aeronautical mobile, service is on a primary basis (see No. 5.33). (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.352A]: In the frequency band 1 525-1 530 MHz, stations in the mobile-satellite service, except stations in the maritime mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed service in Algeria, Saudi Arabia, Egypt, France and French overseas communities of Region 3, Guinea, India, Israel, Italy, Jordan, Kuwait, Mali, Morocco, Mauritania, Nigeria, Oman, Pakistan, the Philippines, Qatar, Syrian Arab Republic, Viet Nam and Yemen notified prior to 1 April 1998. (WRC-15)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.']), (1530000000, 1535000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208B][5.351A][5.353A]'], ['Earth Exploration-Satellite', 'Mobile [5.343]'], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.']), (1535000000, 1559000001): (False, False, False, False, False, ['Mobile-Satellite (Space-To-Earth) [5.208B][5.351A]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.356]: The use of the band 1 544-1 545 MHz by the mobile-satellite service (space-to-Earth) is limited to distress and safety communications (see Article 31).', '[5.357]: Transmissions in the band 1 545-1 555 MHz from terrestrial aeronautical stations directly to aircraft stations, or between aircraft stations, in the aeronautical mobile (R) service are also authorized when such transmissions are used to extend or supplement the satellite-to-aircraft links.', '[5.357A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the frequency bands 1 545-1 555 MHz and 1 646.5-1 656.5 MHz, priority shall be given to accommodating the spectrum requirements of the aeronautical mobile-satellite (R) service providing transmission of messages with priority 1 to 6 in Article 44. Aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44 shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (Rev.WRC-12)* shall apply.) (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)']), (1559000000, 1610000001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Radionavigation-Satellite (Space-To-Earth) [5.208B][5.328B][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.208B][5.328B][5.329A]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1610000000, 1610600001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Aeronautical Radionavigation'], ['Radiodetermination-Satellite (Earth-To-Space)'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.369]: Different category of service: in Angola, Australia, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Israel, Lebanon, Liberia, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, the Dem. Rep. of the Congo, Sudan, South Sudan, Togo and Zambia, the allocation of the band 1 610-1 626.5 MHz to the radiodetermination-satellite service (Earth-to-space) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21 from countries not listed in this provision. (WRC-12)', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1610600000, 1613800001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Radio Astronomy', 'Aeronautical Radionavigation'], ['Radiodetermination-Satellite (Earth-To-Space)'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.369]: Different category of service: in Angola, Australia, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Israel, Lebanon, Liberia, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, the Dem. Rep. of the Congo, Sudan, South Sudan, Togo and Zambia, the allocation of the band 1 610-1 626.5 MHz to the radiodetermination-satellite service (Earth-to-space) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21 from countries not listed in this provision. (WRC-12)', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1613800000, 1626500001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Aeronautical Radionavigation'], ['Mobile-Satellite (Space-To-Earth) [5.208B]', 'Radiodetermination-Satellite (Earth-To-Space)'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.365]: The use of the band 1 613.8-1 626.5 MHz by the mobile-satellite service (space-to-Earth) is subject to coordination under No. 9.11A.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.369]: Different category of service: in Angola, Australia, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Israel, Lebanon, Liberia, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, the Dem. Rep. of the Congo, Sudan, South Sudan, Togo and Zambia, the allocation of the band 1 610-1 626.5 MHz to the radiodetermination-satellite service (Earth-to-space) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21 from countries not listed in this provision. (WRC-12)', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1626500000, 1660000001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.357A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the frequency bands 1 545-1 555 MHz and 1 646.5-1 656.5 MHz, priority shall be given to accommodating the spectrum requirements of the aeronautical mobile-satellite (R) service providing transmission of messages with priority 1 to 6 in Article 44. Aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44 shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (Rev.WRC-12)* shall apply.) (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)', '[5.374]: Mobile earth stations in the mobile-satellite service operating in the bands 1 631.5-1 634.5 MHz and 1 656.5-1 660 MHz shall not cause harmful interference to stations in the fixed service operating in the countries listed in No. 5.359. (WRC-97)', '[5.375]: The use of the band 1 645.5-1 646.5 MHz by the mobile-satellite service (Earth-to-space) and for inter-satellite links is limited to distress and safety communications (see Article 31).', '[5.376]: Transmissions in the band 1 646.5-1 656.5 MHz from aircraft stations in the aeronautical mobile (R) service directly to terrestrial aeronautical stations, or between aircraft stations, are also authorized when such transmissions are used to extend or supplement the aircraft-to-satellite links.']), (1660000000, 1660500001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Radio Astronomy'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)', '[5.376A]: Mobile earth stations operating in the band 1 660-1 660.5 MHz shall not cause harmful interference to stations in the radio astronomy service. (WRC-97)']), (1660500000, 1668000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379]: Additional allocation: in Bangladesh, India, Indonesia, Nigeria and Pakistan, the band 1 660.5-1 668.4 MHz is also allocated to the meteorological aids service on a secondary basis.', '[5.379A]: Administrations are urged to give all practicable protection in the band 1 660.5-1 668.4 MHz for future research in radio astronomy, particularly by eliminating air-to-ground transmissions in the meteorological aids service in the band 1 664.4-1 668.4 MHz as soon as practicable.']), (1668000000, 1668400001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A][5.379B][5.379C]', 'Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.379C]: In order to protect the radio astronomy service in the band 1 668-1 670 MHz, the aggregate power flux-density values produced by mobile earth stations in a network of the mobile-satellite service operating in this band shall not exceed –181 dB(W/m2) in 10 MHz and -194 dB(W/m2) in any 20 kHz at any radio astronomy station recorded in the Master International Frequency Register, for more than 2% of integration periods of 2 000 s. (WRC-03)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379]: Additional allocation: in Bangladesh, India, Indonesia, Nigeria and Pakistan, the band 1 660.5-1 668.4 MHz is also allocated to the meteorological aids service on a secondary basis.', '[5.379A]: Administrations are urged to give all practicable protection in the band 1 660.5-1 668.4 MHz for future research in radio astronomy, particularly by eliminating air-to-ground transmissions in the meteorological aids service in the band 1 664.4-1 668.4 MHz as soon as practicable.']), (1668400000, 1670000001): (False, True, True, False, False, ['Meteorological Aids', 'Mobile Except Aeronautical Mobile', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.379B][5.379C]', 'Radio Astronomy'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.379C]: In order to protect the radio astronomy service in the band 1 668-1 670 MHz, the aggregate power flux-density values produced by mobile earth stations in a network of the mobile-satellite service operating in this band shall not exceed –181 dB(W/m2) in 10 MHz and -194 dB(W/m2) in any 20 kHz at any radio astronomy station recorded in the Master International Frequency Register, for more than 2% of integration periods of 2 000 s. (WRC-03)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379D]: For sharing of the band 1 668.4-1 675 MHz between the mobile-satellite service and the fixed and mobile services, Resolution 744 (Rev.WRC-07) shall apply. (WRC-07)', '[5.379E]: In the band 1 668.4-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to stations in the meteorological aids service in China, Iran (Islamic Republic of), Japan and Uzbekistan. In the band 1 668.4-1 675 MHz, administrations are urged not to implement new systems in the meteorological aids service and are encouraged to migrate existing meteorological aids service operations to other bands as soon as practicable. (WRC-03)']), (1670000000, 1675000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.379B]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379D]: For sharing of the band 1 668.4-1 675 MHz between the mobile-satellite service and the fixed and mobile services, Resolution 744 (Rev.WRC-07) shall apply. (WRC-07)', '[5.379E]: In the band 1 668.4-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to stations in the meteorological aids service in China, Iran (Islamic Republic of), Japan and Uzbekistan. In the band 1 668.4-1 675 MHz, administrations are urged not to implement new systems in the meteorological aids service and are encouraged to migrate existing meteorological aids service operations to other bands as soon as practicable. (WRC-03)', '[5.380A]: In the band 1 670-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to, nor constrain the development of, existing earth stations in the meteorological-satellite service notified before 1 January 2004. Any new assignment to these earth stations in this band shall also be protected from harmful interference from stations in the mobile-satellite service. (WRC-07)']), (1675000000, 1690000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1690000000, 1700000001): (False, False, False, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)'], [], ['[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.381]: Additional allocation: in Afghanistan, Cuba, India, Iran (Islamic Republic of) and Pakistan, the band 1 690-1 700 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (1700000000, 1710000001): (False, True, True, False, False, ['Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.384]: Additional allocation: in India, Indonesia and Japan, the band 1 700-1 710 MHz is also allocated to the space research service (space-to-Earth) on a primary basis. (WRC-97)']), (1710000000, 1930000001): (False, True, True, False, False, ['Mobile [5.384A][5.388A][5.388B]'], [], ['[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.385]: Additional allocation: the band 1 718.8-1 722.2 MHz is also allocated to the radio astronomy service on a secondary basis for spectral line observations. (WRC-2000)', '[5.386]: Additional allocation: the frequency band 1 750-1 850 MHz is also allocated to the space operation (Earth-to-space) and space research (Earth-to-space) services in Region 2 (except in Mexico), in Australia, Guam, India, Indonesia and Japan on a primary basis, subject to agreement obtained under No. 9.21, having particular regard to troposcatter systems. (WRC-15)', '[5.387]: Additional allocation: in Belarus, Georgia, Kazakhstan, Kyrgyzstan, Romania, Tajikistan and Turkmenistan, the band 1 770-1 790 MHz is also allocated to the meteorological-satellite service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1930000000, 1970000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1970000000, 1980000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1980000000, 2010000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389A]: The use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389B]: The use of the band 1 980-1 990 MHz by the mobile-satellite service shall not cause harmful interference to or constrain the development of the fixed and mobile services in Argentina, Brazil, Canada, Chile, Ecuador, the United States, Honduras, Jamaica, Mexico, Peru, Suriname, Trinidad and Tobago, Uruguay and Venezuela.', '[5.389F]: In Algeria, Benin, Cape Verde, Egypt, Iran (Islamic Republic of), Mali, Syrian Arab Republic and Tunisia, the use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service shall neither cause harmful interference to the fixed and mobile services, nor hamper the development of those services prior to 1 January 2005, nor shall the former service request protection from the latter services. (WRC-2000)']), (2010000000, 2025000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2025000000, 2110000001): (False, True, True, False, False, ['Space Operation (Earth-To-Space)', 'Space Operation (Space-To-Space)', 'Earth Exploration-Satellite (Earth-To-Space)', 'Earth Exploration-Satellite (Space-To-Space)', 'Mobile [5.391]', 'Space Research (Earth-To-Space)', 'Space Research (Space-To-Space)'], [], ['[5.391]: In making assignments to the mobile service in the frequency bands 2 025-2 110 MHz and 2 200-2 290 MHz, administrations shall not introduce high-density mobile systems, as described in Recommendation ITU-R SA.1154-0, and shall take that Recommendation into account for the introduction of any other type of mobile system. (WRC-15)', '[5.392]: Administrations are urged to take all practicable measures to ensure that space-to-space transmissions between two or more non-geostationary satellites, in the space research, space operations and Earth exploration-satellite services in the bands 2 025-2 110 MHz and 2 200-2 290 MHz, shall not impose any constraints on Earth-to-space, space-to-Earth and other space-to-space transmissions of those services and in those bands between geostationary and non-geostationary satellites.']), (2110000000, 2120000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]', 'Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2120000000, 2160000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2160000000, 2170000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2170000000, 2200000001): (False, True, True, False, False, ['Mobile-Satellite (Space-To-Earth) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389A]: The use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389F]: In Algeria, Benin, Cape Verde, Egypt, Iran (Islamic Republic of), Mali, Syrian Arab Republic and Tunisia, the use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service shall neither cause harmful interference to the fixed and mobile services, nor hamper the development of those services prior to 1 January 2005, nor shall the former service request protection from the latter services. (WRC-2000)']), (2200000000, 2290000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Space Operation (Space-To-Space)', 'Earth Exploration-Satellite (Space-To-Earth)', 'Earth Exploration-Satellite (Space-To-Space)', 'Mobile [5.391]', 'Space Research (Space-To-Earth)', 'Space Research (Space-To-Space)'], [], ['[5.391]: In making assignments to the mobile service in the frequency bands 2 025-2 110 MHz and 2 200-2 290 MHz, administrations shall not introduce high-density mobile systems, as described in Recommendation ITU-R SA.1154-0, and shall take that Recommendation into account for the introduction of any other type of mobile system. (WRC-15)', '[5.392]: Administrations are urged to take all practicable measures to ensure that space-to-space transmissions between two or more non-geostationary satellites, in the space research, space operations and Earth exploration-satellite services in the bands 2 025-2 110 MHz and 2 200-2 290 MHz, shall not impose any constraints on Earth-to-space, space-to-Earth and other space-to-space transmissions of those services and in those bands between geostationary and non-geostationary satellites.']), (2290000000, 2300000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], []), (2300000000, 2450000001): (True, True, True, False, False, ['Mobile [5.384A]', 'Radiolocation'], ['Amateur'], ['[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.393]: Additional allocation: in Canada, the United States and India, the frequency band 2 310-2 360 MHz is also allocated to the broadcasting-satellite service (sound) and complementary terrestrial sound broadcasting service on a primary basis. Such use is limited to digital audio broadcasting and is subject to the provisions of Resolution 528 (Rev.WRC-15), with the exception of resolves 3 in regard to the limitation on broadcasting-satellite systems in the upper 25 MHz. (WRC-15)', '[5.394]: In the United States, the use of the band 2 300-2 390 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile services. In Canada, the use of the band 2 360-2 400 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile services. (WRC-07)', '[5.396]: Space stations of the broadcasting-satellite service in the band 2 310-2 360 MHz operating in accordance with No. 5.393 that may affect the services to which this band is allocated in other countries shall be coordinated and notified in accordance with Resolution 33 (Rev.WRC-97)*. Complementary terrestrial broadcasting stations shall be subject to bilateral coordination with neighbouring countries prior to their bringing into use.']), (2450000000, 2483500001): (False, True, True, False, False, ['Radiolocation'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (2483500000, 2500000001): (False, True, True, False, True, ['Mobile-Satellite (Space-To-Earth) [5.351A]', 'Radiolocation', 'Radiodetermination- Satellite (Space-To-Earth) [5.398]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.398]: In respect of the radiodetermination-satellite service in the band 2 483.5-2 500 MHz, the provisions of No. 4.10 do not apply.', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.401]: In Angola, Australia, Bangladesh, China, Eritrea, Ethiopia, India, Iran (Islamic Republic of), Lebanon, Liberia, Libya, Madagascar, Mali, Pakistan, Papua New Guinea, Syrian Arab Republic, Dem. Rep. of the Congo, Sudan, Swaziland, Togo and Zambia, the frequency band 2 483.5-2 500 MHz was already allocated on a primary basis to the radiodetermination-satellite service before WRC-12, subject to agreement obtained under No. 9.21 from countries not listed in this provision. Systems in the radiodetermination-satellite service for which complete coordination information has been received by the Radiocommunication Bureau before 18 February 2012 will retain their regulatory status, as of the date of receipt of the coordination request information. (WRC-15)', '[5.402]: The use of the band 2 483.5-2 500 MHz by the mobile-satellite and the radiodetermination-satellite services is subject to the coordination under No. 9.11A. Administrations are urged to take all practicable steps to prevent harmful interference to the radio astronomy service from emissions in the 2 483.5-2 500 MHz band, especially those caused by second-harmonic radiation that would fall into the 4 990-5 000 MHz band allocated to the radio astronomy service worldwide.']), (2500000000, 2520000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Space-To-Earth) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]', '(,5.351A,5.407,5.414,5.414A)'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.407]: In the band 2 500-2 520 MHz, the power flux-density at the surface of the Earth from space stations operating in the mobile-satellite (space-to-Earth) service shall not exceed –152 dB(W/(m2 × 4 kHz)) in Argentina, unless otherwise agreed by the administrations concerned.', '[5.414]: The allocation of the frequency band 2 500-2 520 MHz to the mobile-satellite service (space-to-Earth) is subject to coordination under No. 9.11A. (WRC-07)', '[5.414A]: In Japan and India, the use of the bands 2 500-2 520 MHz and 2 520-2 535 MHz, under No. 5.403, by a satellite network in the mobile-satellite service (space-to-Earth) is limited to operation within national boundaries and subject to the application of No. 9.11A. The following pfd values shall be used as a threshold for coordination under No. 9.11A, for all conditions and for all methods of modulation, in an area of 1 000 km around the territory of the administration notifying the mobile-satellite service network:where q is the angle of arrival of the incident wave above the horizontal plane, in degrees. Outside this area Table 21-4 of Article 21 shall apply. Furthermore, the coordination thresholds in Table 5-2 of Annex 1 to Appendix 5 of the Radio Regulations (Edition of 2004), in conjunction with the applicable provisions of Articles 9 and 11 associated with No. 9.11A, shall apply to systems for which complete notification information has been received by the Radicommunication Bureau by 14 November 2007 and that have been brought into use by that date. (WRC-07) ', '[5.404]: Additional allocation: in India and Iran (Islamic Republic of), the band 2 500-2 516.5 MHz may also be used for the radiodetermination-satellite service (space-to-Earth) for operation limited to within national boundaries, subject to agreement obtained under No. 9.21.', '[5.415A]: Additional allocation: in India and Japan, subject to agreement obtained under No. 9.21, the band 2 515-2 535 MHz may also be used for the aeronautical mobile-satellite service (space-to-Earth) for operation limited to within their national boundaries. (WRC-2000)']), (2520000000, 2535000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Space-To-Earth) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.413][5.416]'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.403]: Subject to agreement obtained under No. 9.21, the band 2 520-2 535 MHz may also be used for the mobile-satellite (space-to-Earth), except aeronautical mobile-satellite, service for operation limited to within national boundaries. The provisions of No. 9.11A apply. (WRC-07)', '[5.414A]: In Japan and India, the use of the bands 2 500-2 520 MHz and 2 520-2 535 MHz, under No. 5.403, by a satellite network in the mobile-satellite service (space-to-Earth) is limited to operation within national boundaries and subject to the application of No. 9.11A. The following pfd values shall be used as a threshold for coordination under No. 9.11A, for all conditions and for all methods of modulation, in an area of 1 000 km around the territory of the administration notifying the mobile-satellite service network:where q is the angle of arrival of the incident wave above the horizontal plane, in degrees. Outside this area Table 21-4 of Article 21 shall apply. Furthermore, the coordination thresholds in Table 5-2 of Annex 1 to Appendix 5 of the Radio Regulations (Edition of 2004), in conjunction with the applicable provisions of Articles 9 and 11 associated with No. 9.11A, shall apply to systems for which complete notification information has been received by the Radicommunication Bureau by 14 November 2007 and that have been brought into use by that date. (WRC-07) ', '[5.415A]: Additional allocation: in India and Japan, subject to agreement obtained under No. 9.21, the band 2 515-2 535 MHz may also be used for the aeronautical mobile-satellite service (space-to-Earth) for operation limited to within their national boundaries. (WRC-2000)']), (2535000000, 2655000001): (False, True, True, False, False, ['Fixed [5.410]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.413][5.416]'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.', '[5.418]: Additional allocation: in India, the frequency band 2 535-2 655 MHz is also allocated to the broadcasting-satellite service (sound) and complementary terrestrial broadcasting service on a primary basis. Such use is limited to digital audio broadcasting and is subject to the provisions of Resolution 528 (Rev.WRC-15). The provisions of No. 5.416 and Table 21-4 of Article 21, do not apply to this additional allocation. Use of non-geostationary-satellite systems in the broadcasting-satellite service (sound) is subject to Resolution 539 (Rev.WRC-15). Geostationary broadcasting-satellite service (sound) systems for which complete Appendix 4 coordination information has been received after 1 June 2005 are limited to systems intended for national coverage. The power flux-density at the Earth’s surface produced by emissions from a geostationary broadcasting satellite service (sound) space station operating in the frequency band 2 630-2 655 MHz, and for which complete Appendix 4 coordination information has been received after 1 June 2005, shall not exceed the following limits, for all conditions and for all methods of modulation:where q is the angle of arrival of the incident wave above the horizontal plane, in degrees. These limits may be exceeded on the territory of any country whose administration has so agreed. As an exception to the limits above, the pfd value of −122 dB(W/(m2 · MHz)) shall be used as a threshold for coordination under No. 9.11 in an area of 1 500 km around the territory of the administration notifying the broadcasting-satellite service (sound) system. In addition, an administration listed in this provision shall not have simultaneously two overlapping frequency assignments, one under this provision and the other under No. 5.416 for systems for which complete Appendix 4 coordination information has been received after 1 June 2005. (WRC-15) ', '[5.418A]: In certain Region 3 countries listed in No. 5.418, use of the band 2 630-2 655 MHz by non-geostationary-satellite systems in the broadcasting-satellite service (sound) for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000, is subject to the application of the provisions of No. 9.12A, in respect of geostationary-satellite networks for which complete Appendix 4 coordination information, or notification information, is considered to have been received after 2 June 2000, and No. 22.2 does not apply. No. 22.2 shall continue to apply with respect to geostationary-satellite networks for which complete Appendix 4 coordination information, or notification information, is considered to have been received before 3 June 2000. (WRC-03)', '[5.418B]: Use of the band 2 630-2 655 MHz by non-geostationary-satellite systems in the broadcasting-satellite service (sound), pursuant to No. 5.418, for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000, is subject to the application of the provisions of No. 9.12. (WRC-03)', '[5.418C]: Use of the band 2 630-2 655 MHz by geostationary-satellite networks for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000 is subject to the application of the provisions of No. 9.13 with respect to non-geostationary-satellite systems in the broadcasting-satellite service (sound), pursuant to No. 5.418 and No. 22.2 does not apply. (WRC-03)']), (2655000000, 2670000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Earth-To-Space) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.208B][5.413][5.416]'], ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.420]: The band 2 655-2 670 MHz may also be used for the mobile-satellite (Earth-to-space), except aeronautical mobile-satellite, service for operation limited to within national boundaries, subject to agreement obtained under No. 9.21. The coordination under No. 9.11A applies. (WRC-07)']), (2670000000, 2690000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Earth-To-Space) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.419]'], ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.419]: When introducing systems of the mobile-satellite service in the band 2 670-2 690 MHz, administrations shall take all necessary steps to protect the satellite systems operating in this band prior to 3 March 1992. The coordination of mobile-satellite systems in the band shall be in accordance with No. 9.11A. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (2690000000, 2700000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', "[5.422]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Brunei Darussalam, Congo (Rep. of the), Côte d'Ivoire, Cuba, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Gabon, Georgia, Guinea, Guinea-Bissau, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Mauritania, Mongolia, Montenegro, Nigeria, Oman, Pakistan, the Philippines, Qatar, Syrian Arab Republic, Kyrgyzstan, the Dem. Rep. of the Congo, Romania, Somalia, Tajikistan, Tunisia, Turkmenistan, Ukraine and Yemen, the band 2 690-2 700 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. Such use is limited to equipment in operation by 1 January 1985. (WRC-12)"]), (2700000000, 2900000001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.337]'], ['Radiolocation'], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.423]: In the band 2 700-2 900 MHz, ground-based radars used for meteorological purposes are authorized to operate on a basis of equality with stations of the aeronautical radionavigation service.', '[5.424]: Additional allocation: in Canada, the band 2 850-2 900 MHz is also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars.']), (2900000000, 3100000001): (False, False, False, False, False, ['Radiolocation [5.424A]', 'Radionavigation [5.426]'], [], ['[5.424A]: In the band 2 900-3 100 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the radionavigation service. (WRC-03)', '[5.426]: The use of the band 2 900-3 100 MHz by the aeronautical radionavigation service is limited to ground-based radars.', '[5.425]: In the band 2 900-3 100 MHz, the use of the shipborne interrogator-transponder (SIT) system shall be confined to the sub-band 2 930 -2 950 MHz.', '[5.427]: In the bands 2 900-3 100 MHz and 9 300-9 500 MHz, the response from radar transponders shall not be capable of being confused with the response from radar beacons (racons) and shall not cause interference to ship or aeronautical radars in the radionavigation service, having regard, however, to No. 4.9.']), (3100000000, 3300000001): (False, False, False, False, False, ['Radiolocation'], ['Earth Exploration-Satellite (Active)', 'Space Research (Active)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.428]: Additional allocation: in Azerbaijan, Kyrgyzstan and Turkmenistan, the frequency band 3 100-3 300 MHz is also allocated to the radionavigation service on a primary basis. (WRC-15)']), (3300000000, 3400000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', "[5.429]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Benin, Brunei Darussalam, Cambodia, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d'Ivoire, Egypt, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Sudan and Yemen, the frequency band 3 300-3 400 MHz is also allocated to the fixed and mobile services on a primary basis. The countries bordering the Mediterranean shall not claim protection for their fixed and mobile services from the radiolocation service. (WRC-15)", '[5.429E]: Additional allocation: in Papua New Guinea, the frequency band 3 300-3 400 MHz is allocated to the mobile, except aeronautical mobile, service on a primary basis. Stations in the mobile service operating in the frequency band 3 300-3 400 MHz shall not cause harmful interference to, or claim protection from, stations operating in the radiolocation service. (WRC-15)', '[5.429F]: In the following countries in Region 3: Cambodia, India, Lao P.D.R., Pakistan, the Philippines and Viet Nam, the use of the frequency band 3 300-3 400 MHz is identified for the implementation of International Mobile Telecommunications (IMT). Such use shall be in accordance with Resolution 223 (Rev.WRC-15). The use of the frequency band 3 300-3 400 MHz by IMT stations in the mobile service shall not cause harmful interference to, or claim protection from, systems in the radiolocation service. Before an administration brings into use a base or mobile station of an IMT system in this frequency band, it shall seek agreement under No. 9.21 with neighbouring countries to protect the radiolocation service. This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)']), (3400000000, 3500000001): (True, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Amateur', 'Mobile [5.432][5.432B]', 'Radiolocation [5.433]'], ['[5.432]: Different category of service: in Korea (Rep. of), Japan and Pakistan, the allocation of the band 3 400-3 500 MHz to the mobile, except aeronautical mobile, service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.432B]: Different category of service: in Australia, Bangladesh, China, French overseas communities of Region 3, India, Iran (Islamic Republic of), New Zealand, the Philippines and Singapore, the frequency band 3 400-3 500 MHz is allocated to the mobile, except aeronautical mobile, service on a primary basis, subject to agreement obtained under No. 9.21 with other administrations and is identified for International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. At the stage of coordination the provisions of Nos. 9.17 and 9.18 also apply. Before an administration brings into use a (base or mobile) station of the mobile service in this frequency band it shall ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 × 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station), with the assistance of the Bureau if so requested. In case of disagreement, the calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service in the frequency band 3 400-3 500 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-15)', '[5.433]: In Regions 2 and 3, in the band 3 400-3 600 MHz the radiolocation service is allocated on a primary basis. However, all administrations operating radiolocation systems in this band are urged to cease operations by 1985. Thereafter, administrations shall take all practicable steps to protect the fixed-satellite service and coordination requirements shall not be imposed on the fixed-satellite service.', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.432A]: In Korea (Rep. of), Japan and Pakistan, the band 3 400-3 500 MHz is identified for International Mobile Telecommunications (IMT). This identification does not preclude the use of this band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. At the stage of coordination the provisions of Nos. 9.17 and 9.18 also apply. Before an administration brings into use a (base or mobile) station of the mobile service in this band it shall ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 × 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station), with the assistance of the Bureau if so requested. In case of disagreement, the calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service in the band 3 400-3 500 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-07)']), (3500000000, 3600000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile [5.433A]'], ['Radiolocation [5.433]'], ['[5.433A]: In Australia, Bangladesh, China, French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, New Zealand, Pakistan and the Philippines, the frequency band 3 500-3 600 MHz is identified for International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. At the stage of coordination the provisions of Nos. 9.17 and 9.18 also apply. Before an administration brings into use a (base or mobile) station of the mobile service in this frequency band it shall ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 × 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station), with the assistance of the Bureau if so requested. In case of disagreement, the calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service in the frequency band 3 500-3 600 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-15)', '[5.433]: In Regions 2 and 3, in the band 3 400-3 600 MHz the radiolocation service is allocated on a primary basis. However, all administrations operating radiolocation systems in this band are urged to cease operations by 1985. Thereafter, administrations shall take all practicable steps to protect the fixed-satellite service and coordination requirements shall not be imposed on the fixed-satellite service.']), (3600000000, 3700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.435]: In Japan, in the band 3 620-3 700 MHz, the radiolocation service is excluded.']), (3700000000, 4200000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], []), (4200000000, 4400000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.436]', 'Aeronautical Radionavigation [5.438]'], [], ['[5.436]: Use of the frequency band 4 200-4 400 MHz by stations in the aeronautical mobile (R) service is reserved exclusively for wireless avionics intra-communication systems that operate in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 424 (WRC-15). (WRC-15)', '[5.438]: Use of the frequency band 4 200-4 400 MHz by the aeronautical radionavigation service is reserved exclusively for radio altimeters installed on board aircraft and for the associated transponders on the ground. (WRC-15)', '[5.437]: Passive sensing in the Earth exploration-satellite and space research services may be authorized in the frequency band 4 200-4 400 MHz on a secondary basis. (WRC-15)', '[5.439]: Additional allocation: in Iran (Islamic Republic of), the band 4 200-4 400 MHz is also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.440]: The standard frequency and time signal-satellite service may be authorized to use the frequency 4 202 MHz for space-to-Earth transmissions and the frequency 6 427 MHz for Earth-to-space transmissions. Such transmissions shall be confined within the limits of ± 2 MHz of these frequencies, subject to agreement obtained under No. 9.21.']), (4400000000, 4500000001): (False, True, True, False, False, ['Mobile [5.440A]'], [], ['[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)']), (4500000000, 4800000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile [5.440A]'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)']), (4800000000, 4990000001): (False, True, True, False, False, ['Mobile [5.440A][5.441A][5.441B][5.442]'], ['Radio Astronomy'], ['[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)', '[5.441A]: In Uruguay, the frequency band 4 800-4 900 MHz, or portions thereof, is identified for the implementation of International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained with neighbouring countries, and IMT stations shall not claim protection from stations of other applications of the mobile service. Such use shall be in accordance with Resolution 223 (Rev.WRC-15). (WRC-15)', '[5.441B]: In Cambodia, Lao P.D.R. and Viet Nam, the frequency band 4 800-4 990 MHz, or portions thereof, is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained under No. 9.21 with concerned administrations, and IMT stations shall not claim protection from stations of other applications of the mobile service. In addition, before an administration brings into use an IMT station in the mobile service, it shall ensure that the power flux-density produced by this station does not exceed −155 dB(W/(m2 · 1 MHz)) produced up to 19 km above sea level at 20 km from the coast, defined as the low-water mark, as officially recognized by the coastal State. This criterion is subject to review at WRC-19. See Resolution 223 (Rev.WRC-15). This identification shall be effective after WRC-19. (WRC-15)', '[5.442]: In the frequency bands 4 825-4 835 MHz and 4 950-4 990 MHz, the allocation to the mobile service is restricted to the mobile, except aeronautical mobile, service. In Region 2 (except Brazil, Cuba, Guatemala, Mexico, Paraguay, Uruguay and Venezuela), and in Australia, the frequency band 4 825-4 835 MHz is also allocated to the aeronautical mobile service, limited to aeronautical mobile telemetry for flight testing by aircraft stations. Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to the fixed service. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.', '[5.443]: Different category of service: in Argentina, Australia and Canada, the allocation of the bands 4 825-4 835 MHz and 4 950-4 990 MHz to the radio astronomy service is on a primary basis (see No. 5.33).']), (4990000000, 5000000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], ['Space Research (Passive)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (5000000000, 5010000001): (False, False, False, False, False, ['Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation', 'Radionavigation-Satellite (Earth-To-Space)'], [], ['[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)']), (5010000000, 5030000001): (False, False, False, False, False, ['Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation', 'Radionavigation-Satellite (Space-To-Earth)', 'Radionavigation-Satellite (Space-To-Space)'], [], ['[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.443B]: In order not to cause harmful interference to the microwave landing system operating above 5 030 MHz, the aggregate power flux-density produced at the Earth’s surface in the frequency band 5 030-5 150 MHz by all the space stations within any radionavigation-satellite service system (space-to-Earth) operating in the frequency band 5 010-5 030 MHz shall not exceed −124.5 dB(W/m2) in a 150 kHz band. In order not to cause harmful interference to the radio astronomy service in the frequency band 4 990-5 000 MHz, radionavigation-satellite service systems operating in the frequency band 5 010-5 030 MHz shall comply with the limits in the frequency band 4 990-5 000 MHz defined in Resolution 741 (Rev.WRC-15). (WRC-15)']), (5030000000, 5091000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.443C]', 'Aeronautical Mobile-Satellite (R) [5.443D]', 'Aeronautical Radionavigation'], [], ['[5.443C]: The use of the frequency band 5 030-5 091 MHz by the aeronautical mobile (R) service is limited to internationally standardized aeronautical systems. Unwanted emissions from the aeronautical mobile (R) service in the frequency band 5 030-5 091 MHz shall be limited to protect RNSS system downlinks in the adjacent 5 010-5 030 MHz band. Until such time that an appropriate value is established in a relevant ITU-R Recommendation, the e.i.r.p. density limit of −75 dBW/MHz in the frequency band 5 010-5 030 MHz for any AM(R)S station unwanted emission should be used. (WRC-12)', '[5.443D]: In the frequency band 5 030-5 091 MHz, the aeronautical mobile-satellite (R) service is subject to coordination under No. 9.11A. The use of this frequency band by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.444]: The frequency band 5 030-5 150 MHz is to be used for the operation of the international standard system (microwave landing system) for precision approach and landing. In the frequency band 5 030-5 091 MHz, the requirements of this system shall have priority over other uses of this frequency band. For the use of the frequency band 5 091-5 150 MHz, No. 5.444A and Resolution 114 (Rev.WRC-15) apply. (WRC-15)']), (5091000000, 5150000001): (False, False, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.444A]', 'Aeronautical Mobile [5.444B]', 'Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation'], [], ['[5.444A]: The use of the allocation to the fixed-satellite service (Earth-to-space) in the frequency band 5 091-5 150 MHz is limited to feeder links of non-geostationary satellite systems in the mobile-satellite service and is subject to coordination under No. 9.11A. The use of the frequency band 5 091-5 150 MHz by feeder links of non-geostationary satellite systems in the mobile-satellite service shall be subject to application of Resolution 114 (Rev.WRC-15). Moreover, to ensure that the aeronautical radionavigation service is protected from harmful interference, coordination is required for feeder-link earth stations of the non-geostationary satellite systems in the mobile-satellite service which are separated by less than 450 km from the territory of an administration operating ground stations in the aeronautical radionavigation service. (WRC-15)', '[5.444B]: The use of the frequency band 5 091-5 150 MHz by the aeronautical mobile service is limited to:– systems operating in the aeronautical mobile (R) service and in accordance with international aeronautical standards, limited to surface applications at airports. Such use shall be in accordance with Resolution 748 (Rev.WRC-15); – aeronautical telemetry transmissions from aircraft stations (see No. 1.83) in accordance with Resolution 418 (Rev.WRC-15). (WRC-15) ', '[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.444]: The frequency band 5 030-5 150 MHz is to be used for the operation of the international standard system (microwave landing system) for precision approach and landing. In the frequency band 5 030-5 091 MHz, the requirements of this system shall have priority over other uses of this frequency band. For the use of the frequency band 5 091-5 150 MHz, No. 5.444A and Resolution 114 (Rev.WRC-15) apply. (WRC-15)']), (5150000000, 5250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.447A]', '(,5.446A,5.446B)', 'Aeronautical Radionavigation'], [], ['[5.447A]: The allocation to the fixed-satellite service (Earth-to-space) in the band 5 150-5 250 MHz is limited to feeder links of non-geostationary-satellite systems in the mobile-satellite service and is subject to coordination under No. 9.11A.', '[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.446B]: In the band 5 150-5 250 MHz, stations in the mobile service shall not claim protection from earth stations in the fixed-satellite service. No. 5.43A does not apply to the mobile service with respect to fixed-satellite service earth stations. (WRC-03)', '[5.446]: Additional allocation: in the countries listed in No. 5.369, the frequency band 5 150-5 216 MHz is also allocated to the radiodetermination-satellite service (space-to-Earth) on a primary basis, subject to agreement obtained under No. 9.21. In Region 2 (except in Mexico), the frequency band is also allocated to the radiodetermination-satellite service (space-to-Earth) on a primary basis. In Regions 1 and 3, except those countries listed in No. 5.369 and Bangladesh, the frequency band is also allocated to the radiodetermination-satellite service (space-to-Earth) on a secondary basis. The use by the radiodetermination-satellite service is limited to feeder links in conjunction with the radiodetermination-satellite service operating in the frequency bands 1 610-1 626.5 MHz and/or 2 483.5-2 500 MHz. The total power flux-density at the Earth’s surface shall in no case exceed −159 dB(W/m2) in any 4 kHz band for all angles of arrival. (WRC-15)', '[5.446C]: Additional allocation: in Region 1 (except in Algeria, Saudi Arabia, Bahrain, Egypt, United Arab Emirates, Jordan, Kuwait, Lebanon, Morocco, Oman, Qatar, Syrian Arab Republic, Sudan, South Sudan and Tunisia) and in Brazil, the band 5 150-5 250 MHz is also allocated to the aeronautical mobile service on a primary basis, limited to aeronautical telemetry transmissions from aircraft stations (see No. 1.83), in accordance with Resolution 418 (Rev.WRC-12)*. These stations shall not claim protection from other stations operating in accordance with Article 5. No. 5.43A does not apply. (WRC-12)', "[5.447]: Additional allocation: in Côte d'Ivoire, Egypt, Israel, Lebanon, the Syrian Arab Republic and Tunisia, the band 5 150-5 250 MHz is also allocated to the mobile service, on a primary basis, subject to agreement obtained under No. 9.21. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)", '[5.447B]: Additional allocation: the band 5 150-5 216 MHz is also allocated to the fixed-satellite service (space-to-Earth) on a primary basis. This allocation is limited to feeder links of non-geostationary-satellite systems in the mobile-satellite service and is subject to provisions of No. 9.11A. The power flux-density at the Earth’s surface produced by space stations of the fixed-satellite service operating in the space-to-Earth direction in the band 5 150-5 216 MHz shall in no case exceed –164 dB(W/m2) in any 4 kHz band for all angles of arrival.', '[5.447C]: Administrations responsible for fixed-satellite service networks in the band 5 150-5 250 MHz operated under Nos. 5.447A and 5.447B shall coordinate on an equal basis in accordance with No. 9.11A with administrations responsible for non-geostationary-satellite networks operated under No. 5.446 and brought into use prior to 17 November 1995. Satellite networks operated under No. 5.446 brought into use after 17 November 1995 shall not claim protection from, and shall not cause harmful interference to, stations of the fixed-satellite service operated under Nos. 5.447A and 5.447B.']), (5250000000, 5255000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', '(,5.446A,5.447F)', 'Radiolocation', 'Space Research [5.447D]'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.447F]: In the frequency band 5 250-5 350 MHz, stations in the mobile service shall not claim protection from the radiolocation service, the Earth exploration-satellite service (active) and the space research service (active). These services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendations ITU-R M.1638-0 and ITU-R RS.1632-0. (WRC-15)', '[5.447D]: The allocation of the band 5 250-5 255 MHz to the space research service on a primary basis is limited to active spaceborne sensors. Other uses of the band by the space research service are on a secondary basis. (WRC-97)', '[5.447E]: Additional allocation: The frequency band 5 250-5 350 MHz is also allocated to the fixed service on a primary basis in the following countries in Region 3: Australia, Korea (Rep. of), India, Indonesia, Iran (Islamic Republic of), Japan, Malaysia, Papua New Guinea, the Philippines, Dem. People’s Rep. of Korea, Sri Lanka, Thailand and Viet Nam. The use of this frequency band by the fixed service is intended for the implementation of fixed wireless access systems and shall comply with Recommendation ITU-R F.1613-0. In addition, the fixed service shall not claim protection from the radiodetermination, Earth exploration-satellite (active) and space research (active) services, but the provisions of No. 5.43A do not apply to the fixed service with respect to the Earth exploration-satellite (active) and space research (active) services. After implementation of fixed wireless access systems in the fixed service with protection for the existing radiodetermination systems, no more stringent constraints should be imposed on the fixed wireless access systems by future radiodetermination implementations. (WRC-15)', '[5.448]: Additional allocation: in Azerbaijan, Kyrgyzstan, Romania and Turkmenistan, the band 5 250-5 350 MHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.448A]: The Earth exploration-satellite (active) and space research (active) services in the frequency band 5 250-5 350 MHz shall not claim protection from the radiolocation service. No. 5.43A does not apply. (WRC-03)']), (5255000000, 5350000001): (False, False, True, False, False, ['Earth Exploration-Satellite (Active)', 'Mobile Except Aeronautical Mobile [5.446A][5.447F]', 'Radiolocation', 'Space Research (Active)'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.447F]: In the frequency band 5 250-5 350 MHz, stations in the mobile service shall not claim protection from the radiolocation service, the Earth exploration-satellite service (active) and the space research service (active). These services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendations ITU-R M.1638-0 and ITU-R RS.1632-0. (WRC-15)', '[5.447E]: Additional allocation: The frequency band 5 250-5 350 MHz is also allocated to the fixed service on a primary basis in the following countries in Region 3: Australia, Korea (Rep. of), India, Indonesia, Iran (Islamic Republic of), Japan, Malaysia, Papua New Guinea, the Philippines, Dem. People’s Rep. of Korea, Sri Lanka, Thailand and Viet Nam. The use of this frequency band by the fixed service is intended for the implementation of fixed wireless access systems and shall comply with Recommendation ITU-R F.1613-0. In addition, the fixed service shall not claim protection from the radiodetermination, Earth exploration-satellite (active) and space research (active) services, but the provisions of No. 5.43A do not apply to the fixed service with respect to the Earth exploration-satellite (active) and space research (active) services. After implementation of fixed wireless access systems in the fixed service with protection for the existing radiodetermination systems, no more stringent constraints should be imposed on the fixed wireless access systems by future radiodetermination implementations. (WRC-15)', '[5.448]: Additional allocation: in Azerbaijan, Kyrgyzstan, Romania and Turkmenistan, the band 5 250-5 350 MHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.448A]: The Earth exploration-satellite (active) and space research (active) services in the frequency band 5 250-5 350 MHz shall not claim protection from the radiolocation service. No. 5.43A does not apply. (WRC-03)']), (5350000000, 5460000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.448B]', 'Radiolocation [5.448D]', 'Aeronautical Radionavigation [5.449]', '(,5.448C)'], [], ['[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)', '[5.448D]: In the frequency band 5 350-5 470 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the aeronautical radionavigation service operating in accordance with No. 5.449. (WRC-03)', '[5.449]: The use of the band 5 350-5 470 MHz by the aeronautical radionavigation service is limited to airborne radars and associated airborne beacons.', '[5.448C]: The space research service (active) operating in the band 5 350-5 460 MHz shall not cause harmful interference to nor claim protection from other services to which this band is allocated. (WRC-03)']), (5460000000, 5470000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation [5.448D]', 'Radionavigation [5.449]', 'Space Research (Active)'], [], ['[5.448D]: In the frequency band 5 350-5 470 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the aeronautical radionavigation service operating in accordance with No. 5.449. (WRC-03)', '[5.449]: The use of the band 5 350-5 470 MHz by the aeronautical radionavigation service is limited to airborne radars and associated airborne beacons.', '[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)']), (5470000000, 5570000001): (False, False, True, False, False, ['Earth Exploration-Satellite (Active)', 'Mobile Except Aeronautical Mobile [5.446A][5.450A]', 'Radiolocation [5.450B]', 'Maritime Radionavigation', ''], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.450B]: In the frequency band 5 470-5 650 MHz, stations in the radiolocation service, except ground-based radars used for meteorological purposes in the band 5 600-5 650 MHz, shall not cause harmful interference to, nor claim protection from, radar systems in the maritime radionavigation service. (WRC-03)', '[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)', '[5.450]: Additional allocation: in Austria, Azerbaijan, Iran (Islamic Republic of), Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 5 470-5 650 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.']), (5570000000, 5650000001): (False, False, True, False, False, ['Mobile Except Aeronautical Mobile [5.446A][5.450A]', '(,5.450B)', 'Maritime Radionavigation'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.450B]: In the frequency band 5 470-5 650 MHz, stations in the radiolocation service, except ground-based radars used for meteorological purposes in the band 5 600-5 650 MHz, shall not cause harmful interference to, nor claim protection from, radar systems in the maritime radionavigation service. (WRC-03)', '[5.450]: Additional allocation: in Austria, Azerbaijan, Iran (Islamic Republic of), Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 5 470-5 650 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.452]: Between 5 600 MHz and 5 650 MHz, ground-based radars used for meteorological purposes are authorized to operate on a basis of equality with stations of the maritime radionavigation service.']), (5650000000, 5725000001): (True, False, True, False, False, ['Mobile Except Aeronautical Mobile [5.446A][5.450A]', 'Radiolocation'], ['Amateur', 'Space Research (Deep Space)'], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.454]: Different category of service: in Azerbaijan, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 5 670-5 725 MHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5725000000, 5830000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5830000000, 5850000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite (Space-To-Earth)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5850000000, 5925000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)'], ['Radiolocation'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (5925000000, 6700000001): (False, True, True, False, False, ['Fixed [5.457]', 'Fixed-Satellite (Earth-To-Space) [5.457A][5.457B]', 'Mobile [5.457C]'], [], ["[5.457]: In Australia, Burkina Faso, Cote d'Ivoire, Mali and Nigeria, the allocation to the fixed service in the bands 6 440-6 520 MHz (HAPS-to-ground direction) and 6 560-6 640 MHz (ground-to-HAPS direction) may also be used by gateway links for high-altitude platform stations (HAPS) within the territory of these countries. Such use is limited to operation in HAPS gateway links and shall not cause harmful interference to, and shall not claim protection from, existing services, and shall be in compliance with Resolution 150 (WRC-12). Existing services shall not be constrained in future development by HAPS gateway links. The use of HAPS gateway links in these bands requires explicit agreement with other administrations whose territories are located within 1 000 kilometres from the border of an administration intending to use the HAPS gateway links. (WRC-12)", '[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.457C]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Mexico, Paraguay, Uruguay and Venezuela), the frequency band 5 925-6 700 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, or claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this frequency band by other mobile service applications or by other services to which this frequency band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.440]: The standard frequency and time signal-satellite service may be authorized to use the frequency 4 202 MHz for space-to-Earth transmissions and the frequency 6 427 MHz for Earth-to-space transmissions. Such transmissions shall be confined within the limits of ± 2 MHz of these frequencies, subject to agreement obtained under No. 9.21.', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.']), (6700000000, 7075000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.441]', 'Fixed-Satellite (Space-To-Earth) [5.441]'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.458A]: In making assignments in the band 6 700-7 075 MHz to space stations of the fixed-satellite service, administrations are urged to take all practicable steps to protect spectral line observations of the radio astronomy service in the band 6 650-6 675.2 MHz from harmful interference from unwanted emissions.', '[5.458B]: The space-to-Earth allocation to the fixed-satellite service in the band 6 700-7 075 MHz is limited to feeder links for non-geostationary satellite systems of the mobile-satellite service and is subject to coordination under No. 9.11A. The use of the band 6 700-7 075 MHz (space-to-Earth) by feeder links for non-geostationary satellite systems in the mobile-satellite service is not subject to No. 22.2.']), (7075000000, 7145000001): (False, True, True, False, False, [], [], ['[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7145000000, 7190000001): (False, True, True, False, False, ['Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7190000000, 7235000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space) [5.460A][5.460B]', 'Space Research (Earth-To-Space) [5.460]'], [], ['[5.460A]: The use of the frequency band 7 190-7 250 MHz (Earth-to-space) by the Earth exploration-satellite service shall be limited to tracking, telemetry and command for the operation of spacecraft. Space stations operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 250 MHz shall not claim protection from existing and future stations in the fixed and mobile services, and No. 5.43A does not apply. No. 9.17 applies. Additionally, to ensure protection of the existing and future deployment of fixed and mobile services, the location of earth stations supporting spacecraft in the Earth exploration-satellite service in non-geostationary orbits or geostationary orbit shall maintain a separation distance of at least 10 km and 50 km, respectively, from the respective border(s) of neighbouring countries, unless a shorter distance is otherwise agreed between the corresponding administrations. (WRC-15)', '[5.460B]: Space stations on the geostationary orbit operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 235 MHz shall not claim protection from existing and future stations of the space research service, and No. 5.43A does not apply. (WRC-15)', '[5.460]: No emissions from space research service (Earth-to-space) systems intended for deep space shall be effected in the frequency band 7 190-7 235 MHz. Geostationary satellites in the space research service operating in the frequency band 7 190-7 235 MHz shall not claim protection from existing and future stations of the fixed and mobile services and No. 5.43A does not apply. (WRC-15)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7235000000, 7250000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space) [5.460A]'], [], ['[5.460A]: The use of the frequency band 7 190-7 250 MHz (Earth-to-space) by the Earth exploration-satellite service shall be limited to tracking, telemetry and command for the operation of spacecraft. Space stations operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 250 MHz shall not claim protection from existing and future stations in the fixed and mobile services, and No. 5.43A does not apply. No. 9.17 applies. Additionally, to ensure protection of the existing and future deployment of fixed and mobile services, the location of earth stations supporting spacecraft in the Earth exploration-satellite service in non-geostationary orbits or geostationary orbit shall maintain a separation distance of at least 10 km and 50 km, respectively, from the respective border(s) of neighbouring countries, unless a shorter distance is otherwise agreed between the corresponding administrations. (WRC-15)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.']), (7250000000, 7300000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (7300000000, 7375000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (7375000000, 7450000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)']), (7450000000, 7550000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)', '[5.461A]: The use of the band 7 450-7 550 MHz by the meteorological-satellite service (space-to-Earth) is limited to geostationary-satellite systems. Non-geostationary meteorological-satellite systems in this band notified before 30 November 1997 may continue to operate on a primary basis until the end of their lifetime. (WRC-97)']), (7550000000, 7750000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)']), (7750000000, 7900000001): (False, True, True, False, False, ['Meteorological-Satellite (Space-To-Earth) [5.461B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.461B]: The use of the band 7 750-7 900 MHz by the meteorological-satellite service (space-to-Earth) is limited to non-geostationary satellite systems. (WRC-12)']), (7900000000, 8025000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (8025000000, 8175000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8175000000, 8215000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8215000000, 8400000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8400000000, 8500000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth) [5.465][5.466]'], [], ['[5.465]: In the space research service, the use of the band 8 400-8 450 MHz is limited to deep space.', '[5.466]: Different category of service: in Singapore and Sri Lanka, the allocation of the band 8 400-8 500 MHz to the space research service is on a secondary basis (see No. 5.32). (WRC-12)']), (8500000000, 8550000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)']), (8550000000, 8650000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)', '[5.469A]: In the band 8 550-8 650 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, or constrain the use and development of, stations of the radiolocation service. (WRC-97)']), (8650000000, 8750000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)']), (8750000000, 8850000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.470]'], [], ['[5.470]: The use of the band 8 750-8 850 MHz by the aeronautical radionavigation service is limited to airborne Doppler navigation aids on a centre frequency of 8 800 MHz.', '[5.471]: Additional allocation: in Algeria, Germany, Bahrain, Belgium, China, Egypt, the United Arab Emirates, France, Greece, Indonesia, Iran (Islamic Republic of), Libya, the Netherlands, Qatar and Sudan, the frequency bands 8 825-8 850 MHz and 9 000-9 200 MHz are also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars only. (WRC-15)']), (8850000000, 9000000001): (False, False, False, False, False, ['Radiolocation', 'Maritime Radionavigation [5.472]'], [], ['[5.472]: In the bands 8 850-9 000 MHz and 9 200-9 225 MHz, the maritime radionavigation service is limited to shore-based radars.', '[5.473]: Additional allocation: in Armenia, Austria, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Mongolia, Uzbekistan, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the bands 8 850-9 000 MHz and 9 200-9 300 MHz are also allocated to the radionavigation service on a primary basis. (WRC-07)']), (9000000000, 9200000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.337]'], [], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.471]: Additional allocation: in Algeria, Germany, Bahrain, Belgium, China, Egypt, the United Arab Emirates, France, Greece, Indonesia, Iran (Islamic Republic of), Libya, the Netherlands, Qatar and Sudan, the frequency bands 8 825-8 850 MHz and 9 000-9 200 MHz are also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars only. (WRC-15)', '[5.473A]: In the band 9 000-9 200 MHz, stations operating in the radiolocation service shall not cause harmful interference to, nor claim protection from, systems identified in No. 5.337 operating in the aeronautical radionavigation service, or radar systems in the maritime radionavigation service operating in this band on a primary basis in the countries listed in No. 5.471. (WRC-07)']), (9200000000, 9300000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation', 'Maritime Radionavigation [5.472]'], [], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.472]: In the bands 8 850-9 000 MHz and 9 200-9 225 MHz, the maritime radionavigation service is limited to shore-based radars.', '[5.473]: Additional allocation: in Armenia, Austria, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Mongolia, Uzbekistan, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the bands 8 850-9 000 MHz and 9 200-9 300 MHz are also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.474]: In the band 9 200-9 500 MHz, search and rescue transponders (SART) may be used, having due regard to the appropriate ITU-R Recommendation (see also Article 31).', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)']), (9300000000, 9500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation', 'Space Research (Active)'], [], ['[5.427]: In the bands 2 900-3 100 MHz and 9 300-9 500 MHz, the response from radar transponders shall not be capable of being confused with the response from radar beacons (racons) and shall not cause interference to ship or aeronautical radars in the radionavigation service, having regard, however, to No. 4.9.', '[5.474]: In the band 9 200-9 500 MHz, search and rescue transponders (SART) may be used, having due regard to the appropriate ITU-R Recommendation (see also Article 31).', '[5.475]: The use of the band 9 300-9 500 MHz by the aeronautical radionavigation service is limited to airborne weather radars and ground-based radars. In addition, ground-based radar beacons in the aeronautical radionavigation service are permitted in the band 9 300-9 320 MHz on condition that harmful interference is not caused to the maritime radionavigation service. (WRC-07)', '[5.475A]: The use of the band 9 300-9 500 MHz by the Earth exploration-satellite service (active) and the space research service (active) is limited to systems requiring necessary bandwidth greater than 300 MHz that cannot be fully accommodated within the 9 500-9 800 MHz band. (WRC-07)', '[5.475B]: In the band 9 300-9 500 MHz, stations operating in the radiolocation service shall not cause harmful interference to, nor claim protection from, radars operating in the radionavigation service in conformity with the Radio Regulations. Ground-based radars used for meteorological purposes have priority over other radiolocation uses. (WRC-07)', '[5.476A]: In the band 9 300-9 800 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from, stations of the radionavigation and radiolocation services. (WRC-07)']), (9500000000, 9800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation', 'Space Research (Active)'], [], ['[5.476A]: In the band 9 300-9 800 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from, stations of the radionavigation and radiolocation services. (WRC-07)']), (9800000000, 9900000001): (False, True, False, False, False, ['Radiolocation'], ['Earth Exploration-Satellite (Active)', 'Space Research (Active)'], ['[5.477]: Different category of service: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Japan, Jordan, Kuwait, Lebanon, Liberia, Malaysia, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Trinidad and Tobago, and Yemen, the allocation of the frequency band 9 800-10 000 MHz to the fixed service is on a primary basis (see No. 5.33). (WRC-15)', '[5.478]: Additional allocation: in Azerbaijan, Mongolia, Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 9 800-10 000 MHz is also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.478A]: The use of the band 9 800-9 900 MHz by the Earth exploration-satellite service (active) and the space research service (active) is limited to systems requiring necessary bandwidth greater than 500 MHz that cannot be fully accommodated within the 9 300-9 800 MHz band. (WRC-07)', '[5.478B]: In the band 9 800-9 900 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from stations of the fixed service to which this band is allocated on a secondary basis. (WRC-07)']), (9900000000, 10000000001): (False, True, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation'], [], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)', '[5.477]: Different category of service: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Japan, Jordan, Kuwait, Lebanon, Liberia, Malaysia, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Trinidad and Tobago, and Yemen, the allocation of the frequency band 9 800-10 000 MHz to the fixed service is on a primary basis (see No. 5.33). (WRC-15)', '[5.478]: Additional allocation: in Azerbaijan, Mongolia, Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 9 800-10 000 MHz is also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.479]: The band 9 975-10 025 MHz is also allocated to the meteorological-satellite service on a secondary basis for use by weather radars.']), (10000000000, 10400000001): (True, True, True, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation'], ['Amateur'], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)', '[5.479]: The band 9 975-10 025 MHz is also allocated to the meteorological-satellite service on a secondary basis for use by weather radars.']), (10400000000, 10450000001): (True, True, True, False, False, ['Radiolocation'], ['Amateur'], []), (10450000000, 10500000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite'], ["[5.481]: Additional allocation: in Algeria, Germany, Angola, Brazil, China, Côte d'Ivoire, El Salvador, Ecuador, Spain, Guatemala, Hungary, Japan, Kenya, Morocco, Nigeria, Oman, Uzbekistan, Pakistan, Paraguay, Peru, the Dem. People’s Rep. of Korea, Romania and Uruguay, the frequency band 10.45-10.5 GHz is also allocated to the fixed and mobile services on a primary basis. In Costa Rica, the frequency band 10.45-10.5 GHz is also allocated to the fixed service on a primary basis. (WRC-15)"]), (10500000000, 10550000001): (False, True, True, False, False, ['Radiolocation'], [], []), (10550000000, 10600000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], []), (10600000000, 10680000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy', 'Space Research (Passive)'], ['Radiolocation'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.482]: In the band 10.6-10.68 GHz, the power delivered to the antenna of stations of the fixed and mobile, except aeronautical mobile, services shall not exceed −3 dBW. This limit may be exceeded, subject to agreement obtained under No. 9.21. However, in Algeria, Saudi Arabia, Armenia, Azerbaijan, Bahrain, Bangladesh, Belarus, Egypt, United Arab Emirates, Georgia, India, Indonesia, Iran (Islamic Republic of), Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Morocco, Mauritania, Moldova, Nigeria, Oman, Uzbekistan, Pakistan, Philippines, Qatar, Syrian Arab Republic, Kyrgyzstan, Singapore, Tajikistan, Tunisia, Turkmenistan and Viet Nam, this restriction on the fixed and mobile, except aeronautical mobile, services is not applicable. (WRC-07)', '[5.482A]: For sharing of the band 10.6-10.68 GHz between the Earth exploration-satellite (passive) service and the fixed and mobile, except aeronautical mobile, services, Resolution 751 (WRC-07) applies. (WRC-07)']), (10680000000, 10700000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.483]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, China, Colombia, Korea (Rep. of), Costa Rica, Egypt, the United Arab Emirates, Georgia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Lebanon, Mongolia, Qatar, Kyrgyzstan, the Dem. People’s Rep. of Korea, Tajikistan, Turkmenistan and Yemen, the band 10.68-10.7 GHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. Such use is limited to equipment in operation by 1 January 1985. (WRC-12)']), (10700000000, 10950000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile Except Aeronautical Mobile'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (10950000000, 11200000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)']), (11200000000, 11450000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile Except Aeronautical Mobile'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (11450000000, 11700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)']), (11700000000, 12200000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile', 'Broadcasting', 'Broadcasting-Satellite [5.492]'], [], ['[5.492]: Assignments to stations of the broadcasting-satellite service which are in conformity with the appropriate regional Plan or included in the Regions 1 and 3 List in Appendix 30 may also be used for transmissions in the fixed-satellite service (space-to-Earth), provided that such transmissions do not cause more interference, or require more protection from interference, than the broadcasting-satellite service transmissions operating in conformity with the Plan or the List, as appropriate. (WRC-2000)', '[5.487]: In the band 11.7-12.5 GHz in Regions 1 and 3, the fixed, fixed-satellite, mobile, except aeronautical mobile, and broadcasting services, in accordance with their respective allocations, shall not cause harmful interference to, or claim protection from, broadcasting-satellite stations operating in accordance with the Regions 1 and 3 Plan in Appendix 30. (WRC-03)', '[5.487A]: Additional allocation: in Region 1, the band 11.7-12.5 GHz, in Region 2, the band 12.2-12.7 GHz and, in Region 3, the band 11.7-12.2 GHz, are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis, limited to non-geostationary systems and subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the broadcasting-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-03)']), (12200000000, 12500000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth) [5.484B]', 'Mobile Except Aeronautical Mobile', 'Broadcasting'], [], ['[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.487]: In the band 11.7-12.5 GHz in Regions 1 and 3, the fixed, fixed-satellite, mobile, except aeronautical mobile, and broadcasting services, in accordance with their respective allocations, shall not cause harmful interference to, or claim protection from, broadcasting-satellite stations operating in accordance with the Regions 1 and 3 Plan in Appendix 30. (WRC-03)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (12500000000, 12750000001): (False, True, True, False, True, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Mobile Except Aeronautical Mobile', 'Broadcasting- Satellite [5.493]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.493]: The broadcasting-satellite service in the band 12.5-12.75 GHz in Region 3 is limited to a power flux-density not exceeding –111 dB(W/(m2 × 27 MHz)) for all conditions and for all methods of modulation at the edge of the service area. (WRC-97)']), (12750000000, 13250000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.441]'], ['Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (13250000000, 13400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Aeronautical Radionavigation [5.497]', 'Space Research (Active)'], [], ['[5.497]: The use of the band 13.25-13.4 GHz by the aeronautical radionavigation service is limited to Doppler navigation aids.', '[5.498A]: The Earth exploration-satellite (active) and space research (active) services operating in the band 13.25-13.4 GHz shall not cause harmful interference to, or constrain the use and development of, the aeronautical radionavigation service. (WRC-97)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)']), (13400000000, 13650000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research [5.499C][5.499D]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.499C]: The allocation of the frequency band 13.4-13.65 GHz to the space research service on a primary basis is limited to:– satellite systems operating in the space research service (space-to-space) to relay data from space stations in the geostationary-satellite orbit to associated space stations in non-geostationary satellite orbits for which advance publication information has been received by the Bureau by 27 November 2015, – active spaceborne sensors, – satellite systems operating in the space research service (space-to-Earth) to relay data from space stations in the geostationary-satellite orbit to associated earth stations. Other uses of the frequency band by the space research service are on a secondary basis. (WRC-15) ', '[5.499D]: In the frequency band 13.4-13.65 GHz, satellite systems in the space research service (space-to-Earth) and/or the space research service (space-to-space) shall not cause harmful interference to, nor claim protection from, stations in the fixed, mobile, radiolocation and Earth exploration-satellite (active) services. (WRC-15)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.501B]: In the band 13.4-13.75 GHz, the Earth exploration-satellite (active) and space research (active) services shall not cause harmful interference to, or constrain the use and development of, the radiolocation service. (WRC-97)']), (13650000000, 13750000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research [5.501A]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.501A]: The allocation of the frequency band 13.65-13.75 GHz to the space research service on a primary basis is limited to active spaceborne sensors. Other uses of the frequency band by the space research service are on a secondary basis. (WRC-15)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.501B]: In the band 13.4-13.75 GHz, the Earth exploration-satellite (active) and space research (active) services shall not cause harmful interference to, or constrain the use and development of, the radiolocation service. (WRC-97)']), (13750000000, 14000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A]', 'Radiolocation'], ['Earth Exploration-Satellite', 'Standard Frequency And Time Signal-Satellite (Earth-To-Space)', 'Space Research'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.502]: In the band 13.75-14 GHz, an earth station of a geostationary fixed-satellite service network shall have a minimum antenna diameter of 1.2 m and an earth station of a non-geostationary fixed-satellite service system shall have a minimum antenna diameter of 4.5 m. In addition, the e.i.r.p., averaged over one second, radiated by a station in the radiolocation or radionavigation services shall not exceed 59 dBW for elevation angles above 2° and 65 dBW at lower angles. Before an administration brings into use an earth station in a geostationary-satellite network in the fixed-satellite service in this band with an antenna diameter smaller than 4.5 m, it shall ensure that the power flux-density produced by this earth station does not exceed:– –115 dB(W/(m2 · 10 MHz)) for more than 1% of the time produced at 36 m above sea level at the low water mark, as officially recognized by the coastal State; – –115 dB(W/(m2 · 10 MHz)) for more than 1% of the time produced 3 m above ground at the border of the territory of an administration deploying or planning to deploy land mobile radars in this band, unless prior agreement has been obtained. For earth stations within the fixed-satellite service having an antenna diameter greater than or equal to 4.5 m, the e.i.r.p. of any emission should be at least 68 dBW and should not exceed 85 dBW. (WRC-03) ', '[5.503]: In the band 13.75-14 GHz, geostationary space stations in the space research service for which information for advance publication has been received by the Bureau prior to 31 January 1992 shall operate on an equal basis with stations in the fixed-satellite service; after that date, new geostationary space stations in the space research service will operate on a secondary basis. Until those geostationary space stations in the space research service for which information for advance publication has been received by the Bureau prior to 31 January 1992 cease to operate in this band:– in the band 13.77-13.78 GHz, the e.i.r.p. density of emissions from any earth station in the fixed-satellite service operating with a space station in geostationary-satellite orbit shall not exceed: i) 4.7D + 28 dB(W/40 kHz), where D is the fixed-satellite service earth station antenna diameter (m) for antenna diameters equal to or greater than 1.2 m and less than 4.5 m; ii) 49.2 + 20 log(D/4.5) dB(W/40 kHz), where D is the fixed-satellite service earth station antenna diameter (m) for antenna diameters equal to or greater than 4.5 m and less than 31.9 m; iii) 66.2 dB(W/40 kHz) for any fixed-satellite service earth station for antenna diameters (m) equal to or greater than 31.9 m; iv) 56.2 dB(W/4 kHz) for narrow-band (less than 40 kHz of necessary bandwidth) fixed-satellite service earth station emissions from any fixed-satellite service earth station having an antenna diameter of 4.5 m or greater; – the e.i.r.p. density of emissions from any earth station in the fixed-satellite service operating with a space station in non-geostationary-satellite orbit shall not exceed 51 dBW in the 6 MHz band from 13.772 to 13.778 GHz. Automatic power control may be used to increase the e.i.r.p. density in these frequency ranges to compensate for rain attenuation, to the extent that the power flux-density at the fixed-satellite service space station does not exceed the value resulting from use by an earth station of an e.i.r.p. meeting the above limits in clear-sky conditions. (WRC-03)']), (14000000000, 14250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Radionavigation [5.504]'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.504C][5.506A]', 'Space Research'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504]: The use of the band 14-14.3 GHz by the radionavigation service shall be such as to provide sufficient protection to space stations of the fixed-satellite service.', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.504C]: In the frequency band 14-14.25 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Côte d’Ivoire, Egypt, Guinea, India, Iran (Islamic Republic of), Kuwait, Nigeria, Oman, the Syrian Arab Republic and Tunisia by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)', '[5.505]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Botswana, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Oman, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Swaziland, Chad, Viet Nam and Yemen, the frequency band 14-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-15)']), (14250000000, 14300000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Radionavigation [5.504]'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.508A]', 'Space Research'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504]: The use of the band 14-14.3 GHz by the radionavigation service shall be such as to provide sufficient protection to space stations of the fixed-satellite service.', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.508A]: In the frequency band 14.25-14.3 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, China, Côte d’Ivoire, Egypt, France, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom and Tunisia by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)', '[5.505]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Botswana, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Oman, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Swaziland, Chad, Viet Nam and Yemen, the frequency band 14-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-15)', '[5.508]: Additional allocation: in Germany, France, Italy, Libya, The Former Yugoslav Rep. of Macedonia and the United Kingdom, the band 14.25-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (14300000000, 14400000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.484A][5.484B][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Radionavigation-Satellite'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14400000000, 14470000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Space Research (Space-To-Earth)'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14470000000, 14500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Radio Astronomy'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14500000000, 14750000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.509B][5.509C][5.509D][5.509E][5.509F][5.510]'], ['Space Research [5.509G]'], ['[5.509B]: The use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service is limited to geostationary-satellites. (WRC-15)', '[5.509C]: For the use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service, the fixed-satellite service earth stations shall have a minimum antenna diameter of 6 m and a maximum power spectral density of −44.5 dBW/Hz at the input of the antenna. The earth stations shall be notified at known locations on land. (WRC-15)', '[5.509D]: Before an administration brings into use an earth station in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service in the frequency bands 14.5-14.75 GHz (in countries listed in Resolution 163 (WRC-15)) and 14.5-14.8 GHz (in countries listed in Resolution 164 (WRC-15)), it shall ensure that the power flux-density produced by this earth station does not exceed −151.5 dB(W/(m2 · 4 kHz)) produced at all altitudes from 0 m to 19 000 m above sea level at 22 km seaward from all coasts, defined as the low-water mark, as officially recognized by each coastal State. (WRC-15)', '[5.509E]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), the location of earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall maintain a separation distance of at least 500 km from the border(s) of other countries unless shorter distances are explicitly agreed by those administrations. No. 9.17 does not apply. When applying this provision, administrations should consider the relevant parts of these Regulations and the latest relevant ITU-R Recommendations. (WRC-15)', '[5.509F]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall not constrain the future deployment of the fixed and mobile services. (WRC-15)', '[5.510]: Except for use in accordance with Resolution 163 (WRC-15) and Resolution 164 (WRC-15), the use of the frequency band 14.5-14.8 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. This use is reserved for countries outside Europe. Uses other than feeder links for the broadcasting-satellite service are not authorized in Regions 1 and 2 in the frequency band 14.75-14.8 GHz. (WRC-15)', '[5.509G]: The frequency band 14.5-14.8 GHz is also allocated to the space research service on a primary basis. However, such use is limited to the satellite systems operating in the space research service (Earth-to-space) to relay data to space stations in the geostationary-satellite orbit from associated earth stations. Stations in the space research service shall not cause harmful interference to, or claim protection from, stations in the fixed and mobile services and in the fixed-satellite service limited to feeder links for the broadcasting-satellite service and associated space operations functions using the guardbands under Appendix 30A and feeder links for the broadcasting-satellite service in Region 2. Other uses of this frequency band by the space research service are on a secondary basis. (WRC-15)']), (14750000000, 14800000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.509B][5.509C][5.509D][5.509E][5.509F][5.510]'], ['Space Research [5.509G]'], ['[5.509B]: The use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service is limited to geostationary-satellites. (WRC-15)', '[5.509C]: For the use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service, the fixed-satellite service earth stations shall have a minimum antenna diameter of 6 m and a maximum power spectral density of −44.5 dBW/Hz at the input of the antenna. The earth stations shall be notified at known locations on land. (WRC-15)', '[5.509D]: Before an administration brings into use an earth station in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service in the frequency bands 14.5-14.75 GHz (in countries listed in Resolution 163 (WRC-15)) and 14.5-14.8 GHz (in countries listed in Resolution 164 (WRC-15)), it shall ensure that the power flux-density produced by this earth station does not exceed −151.5 dB(W/(m2 · 4 kHz)) produced at all altitudes from 0 m to 19 000 m above sea level at 22 km seaward from all coasts, defined as the low-water mark, as officially recognized by each coastal State. (WRC-15)', '[5.509E]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), the location of earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall maintain a separation distance of at least 500 km from the border(s) of other countries unless shorter distances are explicitly agreed by those administrations. No. 9.17 does not apply. When applying this provision, administrations should consider the relevant parts of these Regulations and the latest relevant ITU-R Recommendations. (WRC-15)', '[5.509F]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall not constrain the future deployment of the fixed and mobile services. (WRC-15)', '[5.510]: Except for use in accordance with Resolution 163 (WRC-15) and Resolution 164 (WRC-15), the use of the frequency band 14.5-14.8 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. This use is reserved for countries outside Europe. Uses other than feeder links for the broadcasting-satellite service are not authorized in Regions 1 and 2 in the frequency band 14.75-14.8 GHz. (WRC-15)', '[5.509G]: The frequency band 14.5-14.8 GHz is also allocated to the space research service on a primary basis. However, such use is limited to the satellite systems operating in the space research service (Earth-to-space) to relay data to space stations in the geostationary-satellite orbit from associated earth stations. Stations in the space research service shall not cause harmful interference to, or claim protection from, stations in the fixed and mobile services and in the fixed-satellite service limited to feeder links for the broadcasting-satellite service and associated space operations functions using the guardbands under Appendix 30A and feeder links for the broadcasting-satellite service in Region 2. Other uses of this frequency band by the space research service are on a secondary basis. (WRC-15)']), (14800000000, 15350000001): (False, True, True, False, False, [], ['Space Research'], ['[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.']), (15350000000, 15400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.511]: Additional allocation: in Saudi Arabia, Bahrain, Cameroon, Egypt, the United Arab Emirates, Guinea, Iran (Islamic Republic of), Iraq, Israel, Kuwait, Lebanon, Oman, Pakistan, Qatar, the Syrian Arab Republic and Somalia, the band 15.35-15.4 GHz is also allocated to the fixed and mobile services on a secondary basis. (WRC-12)']), (15400000000, 15430000001): (False, False, False, False, False, ['Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)']), (15430000000, 15630000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.511A]', 'Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511A]: Use of the frequency band 15.43-15.63 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links of non-geostationary systems in the mobile-satellite service, subject to coordination under No. 9.11A. (WRC-15)', '[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)', '[5.511C]: Stations operating in the aeronautical radionavigation service shall limit the effective e.i.r.p. in accordance with Recommendation ITU-R S.1340-0. The minimum coordination distance required to protect the aeronautical radionavigation stations (No. 4.10 applies) from harmful interference from feeder-link earth stations and the maximum e.i.r.p. transmitted towards the local horizontal plane by a feeder-link earth station shall be in accordance with Recommendation ITU-R S.1340-0. (WRC-15)']), (15630000000, 15700000001): (False, False, False, False, False, ['Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)']), (15700000000, 16600000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (16600000000, 17100000001): (False, False, False, False, False, ['Radiolocation'], ['Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (17100000000, 17200000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (17200000000, 17300000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.', '[5.513A]: Spaceborne active sensors operating in the band 17.2-17.3 GHz shall not cause harmful interference to, or constrain the development of, the radiolocation and other services allocated on a primary basis. (WRC-97)']), (17300000000, 17700000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516]'], ['Radiolocation'], ['[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.514]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Cameroon, El Salvador, the United Arab Emirates, Guatemala, India, Iran (Islamic Republic of), Iraq, Israel, Italy, Japan, Jordan, Kuwait, Libya, Lithuania, Nepal, Nicaragua, Nigeria, Oman, Uzbekistan, Pakistan, Qatar, Kyrgyzstan, Sudan and South Sudan, the frequency band 17.3-17.7 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits given in Nos. 21.3 and 21.5 shall apply. (WRC-15)']), (17700000000, 18100000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A]', 'Fixed-Satellite (Earth-To-Space) [5.516]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (18100000000, 18400000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.516B]', 'Fixed-Satellite (Earth-To-Space) [5.520]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.520]: The use of the band 18.1-18.4 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links of geostationary-satellite systems in the broadcasting-satellite service. (WRC-2000)', '[5.519]: Additional allocation: the bands 18-18.3 GHz in Region 2 and 18.1-18.4 GHz in Regions 1 and 3 are also allocated to the meteorological-satellite service (space-to-Earth) on a primary basis. Their use is limited to geostationary satellites. (WRC-07)', '[5.521]: Alternative allocation: in the United Arab Emirates and Greece, the frequency band 18.1-18.4 GHz is allocated to the fixed, fixed-satellite (space-to-Earth) and mobile services on a primary basis (see No. 5.33). The provisions of No. 5.519 also apply. (WRC-15)']), (18400000000, 18600000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.516B]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03)']), (18600000000, 18800000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed-Satellite (Space-To-Earth) [5.522B]', 'Mobile Except Aeronautical Mobile'], ['Space Research (Passive)'], ['[5.522B]: The use of the band 18.6-18.8 GHz by the fixed-satellite service is limited to geostationary systems and systems with an orbit of apogee greater than 20 000 km. (WRC-2000)', '[5.522A]: The emissions of the fixed service and the fixed-satellite service in the band 18.6-18.8 GHz are limited to the values given in Nos. 21.5A and 21.16.2, respectively. (WRC-2000)']), (18800000000, 19300000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.516B][5.523A]'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523A]: The use of the bands 18.8-19.3 GHz (space-to-Earth) and 28.6-29.1 GHz (Earth-to-space) by geostationary and non-geostationary fixed-satellite service networks is subject to the application of the provisions of No. 9.11A and No. 22.2 does not apply. Administrations having geostationary-satellite networks under coordination prior to 18 November 1995 shall cooperate to the maximum extent possible to coordinate pursuant to No. 9.11A with non-geostationary-satellite networks for which notification information has been received by the Bureau prior to that date, with a view to reaching results acceptable to all the parties concerned. Non-geostationary-satellite networks shall not cause unacceptable interference to geostationary fixed-satellite service networks for which complete Appendix 4 notification information is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)']), (19300000000, 19700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.523B][5.523C][5.523D][5.523E]', 'Fixed-Satellite (Earth-To-Space) [5.523B][5.523C][5.523D][5.523E]'], [], ['[5.523B]: The use of the band 19.3-19.6 GHz (Earth-to-space) by the fixed-satellite service is limited to feeder links for non-geostationary-satellite systems in the mobile-satellite service. Such use is subject to the application of the provisions of No. 9.11A, and No. 22.2 does not apply.', '[5.523C]: No. 22.2 shall continue to apply in the bands 19.3-19.6 GHz and 29.1-29.4 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.523D]: The use of the band 19.3-19.7 GHz (space-to-Earth) by geostationary fixed-satellite service systems and by feeder links for non-geostationary-satellite systems in the mobile-satellite service is subject to the application of the provisions of No. 9.11A, but not subject to the provisions of No. 22.2. The use of this band for other non-geostationary fixed-satellite service systems, or for the cases indicated in Nos. 5.523C and 5.523E, is not subject to the provisions of No. 9.11A and shall continue to be subject to Articles 9 (except No. 9.11A) and 11 procedures, and to the provisions of No. 22.2. (WRC-97)', '[5.523E]: No. 22.2 shall continue to apply in the bands 19.6-19.7 GHz and 29.4-29.5 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau by 21 November 1997. (WRC-97)']), (19700000000, 20100000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.516B][5.527A]'], ['Mobile-Satellite (Space-To-Earth)'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)']), (20100000000, 20200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.516B][5.527A]', 'Mobile-Satellite (Space-To-Earth)'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.528]: The allocation to the mobile-satellite service is intended for use by networks which use narrow spot-beam antennas and other advanced technology at the space stations. Administrations operating systems in the mobile-satellite service in the band 19.7-20.1 GHz in Region 2 and in the band 20.1-20.2 GHz shall take all practicable steps to ensure the continued availability of these bands for administrations operating fixed and mobile systems in accordance with the provisions of No. 5.524.']), (20200000000, 21200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)'], ['[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)']), (21200000000, 21400000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], []), (21400000000, 22000000001): (False, True, True, False, False, ['Broadcasting-Satellite [5.208B]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.530A]: Unless otherwise agreed between the administrations concerned, any station in the fixed or mobile services of an administration shall not produce a power flux-density in excess of −120.4 dB(W/(m2 · MHz)) at 3 m above the ground of any point of the territory of any other administration in Regions 1 and 3 for more than 20% of the time. In conducting the calculations, administrations should use the most recent version of Recommendation ITU-R P.452 (see also the most recent version of Recommendation ITU-R BO.1898). (WRC-15)', '[5.530B]: In the band 21.4-22 GHz, in order to facilitate the development of the broadcasting-satellite service, administrations in Regions 1 and 3 are encouraged not to deploy stations in the mobile service and are encouraged to limit the deployment of stations in the fixed service to point-to-point links. (WRC-12)', '[5.530D]: See Resolution 555 (WRC-12)*. (WRC-12)', '[5.531]: Additional allocation: in Japan, the band 21.4-22 GHz is also allocated to the broadcasting service on a primary basis.']), (22000000000, 22210000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (22210000000, 22500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.532]: The use of the band 22.21-22.5 GHz by the Earth exploration-satellite (passive) and space research (passive) services shall not impose constraints upon the fixed and mobile, except aeronautical mobile, services.']), (22500000000, 22550000001): (False, True, True, False, False, [], [], []), (22550000000, 23150000001): (False, True, True, False, False, ['Inter-Satellite [5.338A]', 'Space Research (Earth-To-Space) [5.532A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.532A]: The location of earth stations in the space research service shall maintain a separation distance of at least 54 km from the respective border(s) of neighbouring countries to protect the existing and future deployment of fixed and mobile services unless a shorter distance is otherwise agreed between the corresponding administrations. Nos. 9.17 and 9.18 do not apply. (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (23150000000, 23550000001): (False, True, True, False, False, ['Inter-Satellite [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)']), (23550000000, 23600000001): (False, True, True, False, False, [], [], []), (23600000000, 24000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (24000000000, 24050000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (24050000000, 24250000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Earth Exploration-Satellite (Active)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (24250000000, 24450000001): (False, True, True, False, False, ['Radionavigation'], [], []), (24450000000, 24650000001): (False, True, True, False, False, ['Inter-Satellite', 'Radionavigation'], [], ['[5.533]: The inter-satellite service shall not claim protection from harmful interference from airport surface detection equipment stations of the radionavigation service.']), (24650000000, 24750000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.532B]', 'Inter-Satellite'], [], ['[5.532B]: Use of the band 24.65-25.25 GHz in Region 1 and the band 24.65-24.75 GHz in Region 3 by the fixed-satellite service (Earth-to-space) is limited to earth stations using a minimum antenna diameter of 4.5 m. (WRC-12)', '[5.533]: The inter-satellite service shall not claim protection from harmful interference from airport surface detection equipment stations of the radionavigation service.']), (24750000000, 25250000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.535]'], [], ['[5.535]: In the band 24.75-25.25 GHz, feeder links to stations of the broadcasting-satellite service shall have priority over other uses in the fixed-satellite service (Earth-to-space). Such other uses shall protect and shall not claim protection from existing and future operating feeder-link networks to such broadcasting satellite stations.']), (25250000000, 25500000001): (False, True, True, False, False, ['Inter-Satellite [5.536]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.']), (25500000000, 27000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To Earth) [5.536B]', 'Inter-Satellite [5.536]', 'Space Research (Space-To-Earth) [5.536C]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.536B]: In Saudi Arabia, Austria, Bahrain, Belgium, Brazil, China, Korea (Rep. of), Denmark, Egypt, United Arab Emirates, Estonia, Finland, Hungary, India, Iran (Islamic Republic of), Ireland, Israel, Italy, Jordan, Kenya, Kuwait, Lebanon, Libya, Lithuania, Moldova, Norway, Oman, Uganda, Pakistan, the Philippines, Poland, Portugal, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the Czech Rep., Romania, the United Kingdom, Singapore, Sweden, Tanzania, Turkey, Viet Nam and Zimbabwe, earth stations operating in the Earth exploration-satellite service in the frequency band 25.5-27 GHz shall not claim protection from, or constrain the use and deployment of, stations of the fixed and mobile services. (WRC-15)', '[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.', '[5.536C]: In Algeria, Saudi Arabia, Bahrain, Botswana, Brazil, Cameroon, Comoros, Cuba, Djibouti, Egypt, United Arab Emirates, Estonia, Finland, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Lithuania, Malaysia, Morocco, Nigeria, Oman, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Tanzania, Tunisia, Uruguay, Zambia and Zimbabwe, earth stations operating in the space research service in the band 25.5-27 GHz shall not claim protection from, or constrain the use and deployment of, stations of the fixed and mobile services. (WRC-12)', '[5.536A]: Administrations operating earth stations in the Earth exploration-satellite service or the space research service shall not claim protection from stations in the fixed and mobile services operated by other administrations. In addition, earth stations in the Earth exploration-satellite service or in the space research service should be operated taking into account the most recent version of Recommendation ITU-R SA.1862. (WRC-12)']), (27000000000, 27500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Inter-Satellite [5.536][5.537]'], [], ['[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.', '[5.537]: Space services using non-geostationary satellites operating in the inter-satellite service in the band 27-27.5 GHz are exempt from the provisions of No. 22.2.']), (27500000000, 28500000001): (False, True, True, False, False, ['Fixed [5.537A]', 'Fixed-Satellite (Earth-To-Space) [5.484A][5.516B][5][.539]'], [], ['[5.537A]: In Bhutan, Cameroon, Korea (Rep. of), the Russian Federation, India, Indonesia, Iran (Islamic Republic of), Iraq, Japan, Kazakhstan, Malaysia, Maldives, Mongolia, Myanmar, Uzbekistan, Pakistan, the Philippines, Kyrgyzstan, the Dem. People’s Rep. of Korea, Sudan, Sri Lanka, Thailand and Viet Nam, the allocation to the fixed service in the band 27.9-28.2 GHz may also be used by high altitude platform stations (HAPS) within the territory of these countries. Such use of 300 MHz of the fixed-service allocation by HAPS in the above countries is further limited to operation in the HAPS-to-ground direction and shall not cause harmful interference to, nor claim protection from, other types of fixed-service systems or other co-primary services. Furthermore, the development of these other services shall not be constrained by HAPS. See Resolution 145 (Rev.WRC-12). (WRC-12)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.538]: Additional allocation: the bands 27.500-27.501 GHz and 29.999-30.000 GHz are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis for the beacon transmissions intended for up-link power control. Such space-to-Earth transmissions shall not exceed an equivalent isotropically radiated power (e.i.r.p.) of +10 dBW in the direction of adjacent satellites on the geostationary-satellite orbit. (WRC-07)', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (28500000000, 29100000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.516B][5.523A][5.539]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523A]: The use of the bands 18.8-19.3 GHz (space-to-Earth) and 28.6-29.1 GHz (Earth-to-space) by geostationary and non-geostationary fixed-satellite service networks is subject to the application of the provisions of No. 9.11A and No. 22.2 does not apply. Administrations having geostationary-satellite networks under coordination prior to 18 November 1995 shall cooperate to the maximum extent possible to coordinate pursuant to No. 9.11A with non-geostationary-satellite networks for which notification information has been received by the Bureau prior to that date, with a view to reaching results acceptable to all the parties concerned. Non-geostationary-satellite networks shall not cause unacceptable interference to geostationary fixed-satellite service networks for which complete Appendix 4 notification information is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29100000000, 29500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516B][5.523C][5.523E][5.535A][5.539][5.541A]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523C]: No. 22.2 shall continue to apply in the bands 19.3-19.6 GHz and 29.1-29.4 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.523E]: No. 22.2 shall continue to apply in the bands 19.6-19.7 GHz and 29.4-29.5 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau by 21 November 1997. (WRC-97)', '[5.535A]: The use of the band 29.1-29.5 GHz (Earth-to-space) by the fixed-satellite service is limited to geostationary-satellite systems and feeder links to non-geostationary-satellite systems in the mobile-satellite service. Such use is subject to the application of the provisions of No. 9.11A, but not subject to the provisions of No. 22.2, except as indicated in Nos. 5.523C and 5.523E where such use is not subject to the provisions of No. 9.11A and shall continue to be subject to Articles 9 (except No. 9.11A) and 11 procedures, and to the provisions of No. 22.2. (WRC-97)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541A]: Feeder links of non-geostationary networks in the mobile-satellite service and geostationary networks in the fixed-satellite service operating in the band 29.1-29.5 GHz (Earth-to-space) shall employ uplink adaptive power control or other methods of fade compensation, such that the earth station transmissions shall be conducted at the power level required to meet the desired link performance while reducing the level of mutual interference between both networks. These methods shall apply to networks for which Appendix 4 coordination information is considered as having been received by the Bureau after 17 May 1996 and until they are changed by a future competent world radiocommunication conference. Administrations submitting Appendix 4 information for coordination before this date are encouraged to utilize these techniques to the extent practicable. (WRC-2000)', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29500000000, 29900000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.484B][5.516B][5.527A][5.539]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]', 'Mobile-Satellite (Earth-To-Space)'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (29900000000, 30000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.484B][5.516B][5.527A][5.539]', 'Mobile-Satellite (Earth-To-Space)'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541][5.543]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.543]: The band 29.95-30 GHz may be used for space-to-space links in the Earth exploration-satellite service for telemetry, tracking, and control purposes, on a secondary basis.', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.538]: Additional allocation: the bands 27.500-27.501 GHz and 29.999-30.000 GHz are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis for the beacon transmissions intended for up-link power control. Such space-to-Earth transmissions shall not exceed an equivalent isotropically radiated power (e.i.r.p.) of +10 dBW in the direction of adjacent satellites on the geostationary-satellite orbit. (WRC-07)', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (30000000000, 31000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A]', 'Mobile-Satellite (Earth-To-Space)'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (31000000000, 31300000001): (False, True, True, False, False, ['Fixed [5.338A][5.543A]'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)', 'Space Research [5.544][5.545]'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.543A]: In Bhutan, Cameroon, Korea (Rep. of), the Russian Federation, India, Indonesia, Iran (Islamic Republic of), Iraq, Japan, Kazakhstan, Malaysia, Maldives, Mongolia, Myanmar, Uzbekistan, Pakistan, the Philippines, Kyrgyzstan, the Dem. People’s Rep. of Korea, Sudan, Sri Lanka, Thailand and Viet Nam, the allocation to the fixed service in the frequency band 31-31.3 GHz may also be used by systems using high altitude platform stations (HAPS) in the ground-to-HAPS direction. The use of the frequency band 31-31.3 GHz by systems using HAPS is limited to the territory of the countries listed above and shall not cause harmful interference to, nor claim protection from, other types of fixed-service systems, systems in the mobile service and systems operated under No. 5.545. Furthermore, the development of these services shall not be constrained by HAPS. Systems using HAPS in the frequency band 31-31.3 GHz shall not cause harmful interference to the radio astronomy service having a primary allocation in the frequency band 31.3-31.8 GHz, taking into account the protection criterion as given in the most recent version of Recommendation ITU-R RA.769. In order to ensure the protection of satellite passive services, the level of unwanted power density into a HAPS ground station antenna in the frequency band 31.3-31.8 GHz shall be limited to −106 dB(W/MHz) under clear-sky conditions, and may be increased up to −100 dB(W/MHz) under rainy conditions to mitigate fading due to rain, provided the effective impact on the passive satellite does not exceed the impact under clear-sky conditions. See Resolution 145 (Rev.WRC-12). (WRC-15)', '[5.544]: In the band 31-31.3 GHz the power flux-density limits specified in Article 21, Table 21-4 shall apply to the space research service.', '[5.545]: Different category of service: in Armenia, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 31-31.3 GHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (31300000000, 31500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (31500000000, 31800000001): (False, True, True, False, True, ['Earth Exploration- Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (31800000000, 32000000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547B]: Alternative allocation: in the United States, the band 31.8-32 GHz is allocated to the radionavigation and space research (deep space) (space-to-Earth) services on a primary basis. (WRC-97)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (32000000000, 32300000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547C]: Alternative allocation: in the United States, the band 32-32.3 GHz is allocated to the radionavigation and space research (deep space) (space-to-Earth) services on a primary basis. (WRC-03)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (32300000000, 33000000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Inter-Satellite', 'Radionavigation'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547D]: Alternative allocation: in the United States, the band 32.3-33 GHz is allocated to the inter-satellite and radionavigation services on a primary basis. (WRC-97)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (33000000000, 33400000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547E]: Alternative allocation: in the United States, the band 33-33.4 GHz is allocated to the radionavigation service on a primary basis. (WRC-97)']), (33400000000, 34200000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (34200000000, 34700000001): (False, False, False, False, False, ['Radiolocation', 'Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (34700000000, 35200000001): (False, False, False, False, False, ['Radiolocation'], ['Space Research [5.550]'], ['[5.550]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 34.7-35.2 GHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (35200000000, 35500000001): (False, False, False, False, False, ['Meteorological Aids', 'Radiolocation'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (35500000000, 36000000001): (False, False, False, False, False, ['Meteorological Aids', 'Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.549A]: In the band 35.5-36.0 GHz, the mean power flux-density at the Earth’s surface, generated by any spaceborne sensor in the Earth exploration-satellite service (active) or space research service (active), for any angle greater than 0.8° from the beam centre shall not exceed -73.3 dB(W/m2) in this band. (WRC-03)']), (36000000000, 37000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.550A]: For sharing of the band 36-37 GHz between the Earth exploration-satellite (passive) service and the fixed and mobile services, Resolution 752 (WRC-07) shall apply. (WRC-07)']), (37000000000, 37500000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth)'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (37500000000, 38000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (38000000000, 39500000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (39500000000, 40000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Mobile-Satellite (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (40000000000, 40500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space)', 'Fixed-Satellite (Space-To-Earth) [5.516B]', 'Mobile-Satellite (Space-To-Earth)', 'Space Research (Earth-To-Space)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03)']), (40500000000, 41000000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth)', 'Broadcasting', 'Broadcasting-Satellite'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (41000000000, 42500000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Broadcasting', 'Broadcasting-Satellite'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.551F]: Different category of service: in Japan, the allocation of the band 41.5-42.5 GHz to the mobile service is on a primary basis (see No. 5.33). (WRC-97)', '[5.551H]: The equivalent power flux-density (epfd) produced in the frequency band 42.5-43.5 GHz by all space stations in any non-geostationary-satellite system in the fixed-satellite service (space-to-Earth), or in the broadcasting-satellite service operating in the frequency band 42-42.5 GHz, shall not exceed the following values at the site of any radio astronomy station for more than 2% of the time:−230 dB(W/m2) in 1 GHz and −246 dB(W/m2) in any 500 kHz of the frequency band 42.5-43.5 GHz at the site of any radio astronomy station registered as a single-dish telescope; and −209 dB(W/m2) in any 500 kHz of the frequency band 42.5-43.5 GHz at the site of any radio astronomy station registered as a very long baseline interferometry station. These epfd values shall be evaluated using the methodology given in Recommendation ITU-R S.1586-1 and the reference antenna pattern and the maximum gain of an antenna in the radio astronomy service given in Recommendation ITU-R RA.1631-0 and shall apply over the whole sky and for elevation angles higher than the minimum operating angle θmin of the radiotelescope (for which a default value of 5° should be adopted in the absence of notified information). These values shall apply at any radio astronomy station that either: – was in operation prior to 5 July 2003 and has been notified to the Bureau before 4 January 2004; or – was notified before the date of receipt of the complete Appendix 4 information for coordination or notification, as appropriate, for the space station to which the limits apply. Other radio astronomy stations notified after these dates may seek an agreement with administrations that have authorized the space stations. In Region 2, Resolution 743 (WRC-03) shall apply. The limits in this footnote may be exceeded at the site of a radio astronomy station of any country whose administration so agreed. (WRC-15) ', '[5.551I]: The power flux-density in the band 42.5-43.5 GHz produced by any geostationary space station in the fixed-satellite service (space-to-Earth), or the broadcasting-satellite service operating in the 42-42.5 GHz band, shall not exceed the following values at the site of any radio astronomy station:–137 dB(W/m2) in 1 GHz and –153 dB(W/m2) in any 500 kHz of the 42.5-43.5 GHz band at the site of any radio astronomy station registered as a single-dish telescope; and –116 dB(W/m2) in any 500 kHz of the 42.5-43.5 GHz band at the site of any radio astronomy station registered as a very long baseline interferometry station. These values shall apply at the site of any radio astronomy station that either: – was in operation prior to 5 July 2003 and has been notified to the Bureau before 4 January 2004; or – was notified before the date of receipt of the complete Appendix 4 information for coordination or notification, as appropriate, for the space station to which the limits apply. Other radio astronomy stations notified after these dates may seek an agreement with administrations that have authorized the space stations. In Region 2, Resolution 743 (WRC-03) shall apply. The limits in this footnote may be exceeded at the site of a radio astronomy station of any country whose administration so agreed. (WRC-03)']), (42500000000, 43500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (43500000000, 47000000001): (False, False, True, False, False, ['Mobile [5.553]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.553]: In the bands 43.5-47 GHz and 66-71 GHz, stations in the land mobile service may be operated subject to not causing harmful interference to the space radiocommunication services to which these bands are allocated (see No. 5.43). (WRC-2000)', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (47000000000, 47200000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (47200000000, 47500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.552A]: The allocation to the fixed service in the bands 47.2-47.5 GHz and 47.9-48.2 GHz is designated for use by high altitude platform stations. The use of the bands 47.2-47.5 GHz and 47.9-48.2 GHz is subject to the provisions of Resolution 122 (Rev.WRC-07). (WRC-07)']), (47500000000, 47900000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.']), (47900000000, 48200000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.552A]: The allocation to the fixed service in the bands 47.2-47.5 GHz and 47.9-48.2 GHz is designated for use by high altitude platform stations. The use of the bands 47.2-47.5 GHz and 47.9-48.2 GHz is subject to the provisions of Resolution 122 (Rev.WRC-07). (WRC-07)']), (48200000000, 50200000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516B][5.338A][5.552]'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.555]: Additional allocation: the band 48.94-49.04 GHz is also allocated to the radio astronomy service on a primary basis. (WRC-2000)']), (50200000000, 50400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (50400000000, 51400000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A]'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)']), (51400000000, 52600000001): (False, True, True, False, False, ['Fixed [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (52600000000, 54250000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (54250000000, 55780000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.556B]: Additional allocation: in Japan, the band 54.25-55.78 GHz is also allocated to the mobile service on a primary basis for low-density use. (WRC-97)']), (55780000000, 56900000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed [5.557A]', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.557A]: In the band 55.78-56.26 GHz, in order to protect stations in the Earth exploration-satellite service (passive), the maximum power density delivered by a transmitter to the antenna of a fixed service station is limited to –26 dB(W/MHz). (WRC-2000)', '[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (56900000000, 57000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.558A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.558A]: Use of the band 56.9-57 GHz by inter-satellite systems is limited to links between satellites in geostationary-satellite orbit and to transmissions from non-geostationary satellites in high-Earth orbit to those in low-Earth orbit. For links between satellites in the geostationary-satellite orbit, the single entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (57000000000, 58200000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (58200000000, 59000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (59000000000, 59300000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Radiolocation [5.559]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.559]: In the band 59-64 GHz, airborne radars in the radiolocation service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)']), (59300000000, 64000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]', 'Radiolocation [5.559]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.559]: In the band 59-64 GHz, airborne radars in the radiolocation service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (64000000000, 65000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile Except Aeronautical Mobile'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (65000000000, 66000000001): (False, True, True, False, False, ['Earth Exploration-Satellite', 'Inter-Satellite', 'Mobile Except Aeronautical Mobile', 'Space Research'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (66000000000, 71000000001): (False, False, True, False, False, ['Inter-Satellite', 'Mobile [5.553][5.558]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.553]: In the bands 43.5-47 GHz and 66-71 GHz, stations in the land mobile service may be operated subject to not causing harmful interference to the space radiocommunication services to which these bands are allocated (see No. 5.43). (WRC-2000)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (71000000000, 74000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], [], []), (74000000000, 76000000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth)', 'Broadcasting', 'Broadcasting-Satellite'], ['Space Research (Space-To-Earth)'], ['[5.561]: In the band 74-76 GHz, stations in the fixed, mobile and broadcasting services shall not cause harmful interference to stations of the fixed-satellite service or stations of the broadcasting-satellite service operating in accordance with the decisions of the appropriate frequency assignment planning conference for the broadcasting-satellite service. (WRC-2000)']), (76000000000, 77500000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (77500000000, 78000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite', 'Radiolocation [5.559B]'], ['Radio Astronomy', 'Space Research (Space-To-Earth)'], ['[5.559B]: The use of the frequency band 77.5-78 GHz by the radiolocation service shall be limited to short-range radar for ground-based applications, including automotive radars. The technical characteristics of these radars are provided in the most recent version of Recommendation ITU-R M.2057. The provisions of No. 4.10 do not apply. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (78000000000, 79000000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Radio Astronomy', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.560]: In the band 78-79 GHz radars located on space stations may be operated on a primary basis in the Earth exploration-satellite service and in the space research service.']), (79000000000, 81000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (81000000000, 84000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Fixed-Satellite (Earth-To-Space)', 'Mobile-Satellite (Earth-To-Space)', 'Radio Astronomy'], ['Space Research (Space-To-Earth)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.561A]: The 81-81.5 GHz band is also allocated to the amateur and amateur-satellite services on a secondary basis. (WRC-2000)']), (84000000000, 86000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Fixed-Satellite (Earth-To-Space) [5.561B]', 'Radio Astronomy'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.561B]: In Japan, use of the band 84-86 GHz, by the fixed-satellite service (Earth-to-space) is limited to feeder links in the broadcasting-satellite service using the geostationary-satellite orbit. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (86000000000, 92000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (92000000000, 94000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Radio Astronomy', 'Radiolocation'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (94000000000, 94100000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], ['Radio Astronomy'], ['[5.562]: The use of the band 94-94.1 GHz by the Earth exploration-satellite (active) and space research (active) services is limited to spaceborne cloud radars. (WRC-97)', '[5.562A]: In the bands 94-94.1 GHz and 130-134 GHz, transmissions from space stations of the Earth exploration-satellite service (active) that are directed into the main beam of a radio astronomy antenna have the potential to damage some radio astronomy receivers. Space agencies operating the transmitters and the radio astronomy stations concerned should mutually plan their operations so as to avoid such occurrences to the maximum extent possible. (WRC-2000)']), (94100000000, 95000000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (95000000000, 100000000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (100000000000, 102000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (102000000000, 105000000001): (False, True, True, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (105000000000, 109500000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (109500000000, 111800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (111800000000, 114250000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (114250000000, 116000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (116000000000, 119980000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562C]', 'Space Research (Passive)'], [], ['[5.562C]: Use of the band 116-122.25 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 km to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed –148 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (119980000000, 122250000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562C]', 'Space Research (Passive)'], [], ['[5.562C]: Use of the band 116-122.25 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 km to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed –148 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (122250000000, 123000000001): (True, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]'], ['Amateur'], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (123000000000, 130000000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)', 'Radionavigation', 'Radionavigation-Satellite'], ['Radio Astronomy [5.562D]'], ['[5.562D]: Additional allocation: In Korea (Rep. of), the frequency bands 128-130 GHz, 171-171.6 GHz, 172.2-172.8 GHz and 173.3-174 GHz are also allocated to the radio astronomy service on a primary basis. Radio astronomy stations in Korea (Rep. of) operating in the frequency bands referred to in this footnote shall not claim protection from, or constrain the use and development of, services in other countries operating in accordance with the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (130000000000, 134000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Active) [5.562E]', 'Inter-Satellite', 'Mobile [5.558]', 'Radio Astronomy'], [], ['[5.562E]: The allocation to the Earth exploration-satellite service (active) is limited to the band 133.5-134 GHz. (WRC-2000)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562A]: In the bands 94-94.1 GHz and 130-134 GHz, transmissions from space stations of the Earth exploration-satellite service (active) that are directed into the main beam of a radio astronomy antenna have the potential to damage some radio astronomy receivers. Space agencies operating the transmitters and the radio astronomy stations concerned should mutually plan their operations so as to avoid such occurrences to the maximum extent possible. (WRC-2000)']), (134000000000, 136000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], ['Radio Astronomy'], []), (136000000000, 141000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (141000000000, 148500000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (148500000000, 151500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (151500000000, 155500000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (155500000000, 158500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562F]: In the band 155.5-158.5 GHz, the allocation to the Earth exploration-satellite (passive) and space research (passive) services shall terminate on 1 January 2018. (WRC-2000)', '[5.562G]: The date of entry into force of the allocation to the fixed and mobile services in the band 155.5-158.5 GHz shall be 1 January 2018. (WRC-2000)']), (158500000000, 164000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], [], []), (164000000000, 167000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (167000000000, 174500000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Inter-Satellite', 'Mobile [5.558]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562D]: Additional allocation: In Korea (Rep. of), the frequency bands 128-130 GHz, 171-171.6 GHz, 172.2-172.8 GHz and 173.3-174 GHz are also allocated to the radio astronomy service on a primary basis. Radio astronomy stations in Korea (Rep. of) operating in the frequency bands referred to in this footnote shall not claim protection from, or constrain the use and development of, services in other countries operating in accordance with the Radio Regulations. (WRC-15)']), (174500000000, 174800000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)']), (174800000000, 182000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562H]', 'Space Research (Passive)'], [], ['[5.562H]: Use of the bands 174.8-182 GHz and 185-190 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed -144 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)']), (182000000000, 185000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (185000000000, 190000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562H]', 'Space Research (Passive)'], [], ['[5.562H]: Use of the bands 174.8-182 GHz and 185-190 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed -144 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)']), (190000000000, 191800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (191800000000, 200000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (200000000000, 209000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (209000000000, 217000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (217000000000, 226000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (226000000000, 231500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (231500000000, 232000000001): (False, True, True, False, False, [], ['Radiolocation'], []), (232000000000, 235000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Radiolocation'], []), (235000000000, 238000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed-Satellite (Space-To-Earth)', 'Space Research (Passive)'], [], ['[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)', '[5.563B]: The band 237.9-238 GHz is also allocated to the Earth exploration-satellite service (active) and the space research service (active) for spaceborne cloud radars only. (WRC-2000)']), (238000000000, 240000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Radiolocation', 'Radionavigation', 'Radionavigation-Satellite'], [], []), (240000000000, 241000000001): (False, True, True, False, False, ['Radiolocation'], [], []), (241000000000, 248000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite'], ['[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (248000000000, 250000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], ['Radio Astronomy'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (250000000000, 252000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (252000000000, 265000000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space)', 'Radio Astronomy', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (265000000000, 275000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (275000000000, 3000000000001): (False, False, False, False, False, ['(Not Allocated) [5.565]'], [], ['[5.565]: The following frequency bands in the range 275-1 000 GHz are identified for use by administrations for passive service applications:– radio astronomy service: 275-323 GHz, 327-371 GHz, 388-424 GHz, 426-442 GHz, 453-510 GHz, 623-711 GHz, 795-909 GHz and 926-945 GHz; – Earth exploration-satellite service (passive) and space research service (passive): 275-286 GHz, 296-306 GHz, 313-356 GHz, 361-365 GHz, 369-392 GHz, 397-399 GHz, 409-411 GHz, 416-434 GHz, 439-467 GHz, 477-502 GHz, 523-527 GHz, 538-581 GHz, 611-630 GHz, 634-654 GHz, 657-692 GHz, 713-718 GHz, 729-733 GHz, 750-754 GHz, 771-776 GHz, 823-846 GHz, 850-854 GHz, 857-862 GHz, 866-882 GHz, 905-928 GHz, 951-956 GHz, 968-973 GHz and 985-990 GHz.']), })
/rf_info-0.8.0.tar.gz/rf_info-0.8.0/rf_info/data/c_allocations.py
0.586049
0.727855
c_allocations.py
pypi
from rf_info.data.rangekeydict import RangeKeyDict ALLOCATIONS = RangeKeyDict({ (0, 8301): (False, False, False, False, False, ['(Not Allocated)'], [], ['[5.53]: Administrations authorizing the use of frequencies below 8.3 kHz shall ensure that no harmful interference is caused to services to which the bands above 8.3 kHz are allocated. (WRC-12)', '[5.54]: Administrations conducting scientific research using frequencies below 8.3 kHz are urged to advise other administrations that may be concerned in order that such research may be afforded all practicable protection from harmful interference. (WRC-12)']), (8300, 9001): (False, False, False, False, False, ['Meteorological Aids [5.54A][5.54B][5.54C]'], [], ['[5.54A]: Use of the 8.3-11.3 kHz frequency band by stations in the meteorological aids service is limited to passive use only. In the band 9-11.3 kHz, meteorological aids stations shall not claim protection from stations of the radionavigation service submitted for notification to the Bureau prior to 1 January 2013. For sharing between stations of the meteorological aids service and stations in the radionavigation service submitted for notification after this date, the most recent version of Recommendation ITU-R RS.1881 should be applied. (WRC-12)', '[5.54B]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Egypt, the United Arab Emirates, the Russian Federation, Iran (Islamic Republic of), Iraq, Kuwait, Lebanon, Morocco, Qatar, the Syrian Arab Republic, Sudan and Tunisia, the frequency band 8.3-9 kHz is also allocated to the radionavigation, fixed and mobile services on a primary basis. (WRC-15)', '[5.54C]: Additional allocation: in China, the frequency band 8.3-9 kHz is also allocated to the maritime radionavigation and maritime mobile services on a primary basis. (WRC-12)']), (9000, 11301): (False, False, False, False, False, ['Meteorological Aids [5.54A]', 'Radionavigation'], [], ['[5.54A]: Use of the 8.3-11.3 kHz frequency band by stations in the meteorological aids service is limited to passive use only. In the band 9-11.3 kHz, meteorological aids stations shall not claim protection from stations of the radionavigation service submitted for notification to the Bureau prior to 1 January 2013. For sharing between stations of the meteorological aids service and stations in the radionavigation service submitted for notification after this date, the most recent version of Recommendation ITU-R RS.1881 should be applied. (WRC-12)']), (11300, 14001): (False, False, False, False, False, ['Radionavigation'], [], []), (14000, 19951): (False, True, True, False, False, ['Maritime Mobile [5.57]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.55]: Additional allocation: in Armenia, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the frequency band 14-17 kHz is also allocated to the radionavigation service on a primary basis. (WRC-15)', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)']), (19950, 20051): (False, False, False, False, False, ['Standard Frequency And Time Signal (20 Khz)'], [], []), (20050, 70001): (False, True, True, False, False, ['Maritime Mobile [5.57]'], [], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.56]: The stations of services to which the bands 14-19.95 kHz and 20.05-70 kHz and in Region 1 also the bands 72-84 kHz and 86-90 kHz are allocated may transmit standard frequency and time signals. Such stations shall be afforded protection from harmful interference. In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the frequencies 25 kHz and 50 kHz will be used for this purpose under the same conditions. (WRC-12)', '[5.58]: Additional allocation: in Armenia, Azerbaijan, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan and Turkmenistan, the band 67-70 kHz is also allocated to the radionavigation service on a primary basis. (WRC-2000)']), (70000, 90001): (False, True, True, False, False, ['Maritime Mobile [5.57]', 'Maritime Radio- Navigation [5.60]'], ['Radiolocation'], ['[5.57]: The use of the bands 14-19.95 kHz, 20.05-70 kHz and 70-90 kHz (72-84 kHz and 86-90 kHz in Region 1) by the maritime mobile service is limited to coast radiotelegraph stations (A1A and F1B only). Exceptionally, the use of class J2B or J7B emissions is authorized subject to the necessary bandwidth not exceeding that normally used for class A1A or F1B emissions in the band concerned.', '[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.61]: In Region 2, the establishment and operation of stations in the maritime radionavigation service in the bands 70-90 kHz and 110-130 kHz shall be subject to agreement obtained under No. 9.21 with administrations whose services, operating in accordance with the Table, may be affected. However, stations of the fixed, maritime mobile and radiolocation services shall not cause harmful interference to stations in the maritime radionavigation service established under such agreements.']), (90000, 110001): (False, True, False, False, False, ['Radionavigation [5.62]'], [], ['[5.62]: Administrations which operate stations in the radionavigation service in the band 90-110 kHz are urged to coordinate technical and operating characteristics in such a way as to avoid harmful interference to the services provided by these stations.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (110000, 130001): (False, True, True, False, False, ['Maritime Mobile', 'Maritime Radio- Navigation [5.60]'], ['Radiolocation'], ['[5.60]: In the bands 70-90 kHz (70-86 kHz in Region 1) and 110-130 kHz (112-130 kHz in Region 1), pulsed radionavigation systems may be used on condition that they do not cause harmful interference to other services to which these bands are allocated.', '[5.61]: In Region 2, the establishment and operation of stations in the maritime radionavigation service in the bands 70-90 kHz and 110-130 kHz shall be subject to agreement obtained under No. 9.21 with administrations whose services, operating in accordance with the Table, may be affected. However, stations of the fixed, maritime mobile and radiolocation services shall not cause harmful interference to stations in the maritime radionavigation service established under such agreements.', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (130000, 135701): (False, True, True, False, False, ['Maritime Mobile'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (135700, 137801): (True, True, True, False, False, ['Maritime Mobile'], ['Amateur [5.67A]'], ['[5.67A]: Stations in the amateur service using frequencies in the band 135.7-137.8 kHz shall not exceed a maximum radiated power of 1 W (e.i.r.p.) and shall not cause harmful interference to stations of the radionavigation service operating in countries listed in No. 5.67. (WRC-07)', '[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (137800, 160001): (False, True, True, False, False, ['Maritime Mobile'], [], ['[5.64]: Only classes A1A or F1B, A2C, A3C, F1C or F3C emissions are authorized for stations of the fixed service in the bands allocated to this service between 90 kHz and 160 kHz (148.5 kHz in Region 1) and for stations of the maritime mobile service in the bands allocated to this service between 110 kHz and 160 kHz (148.5 kHz in Region 1). Exceptionally, class J2B or J7B emissions are also authorized in the bands between 110 kHz and 160 kHz (148.5 kHz in Region 1) for stations of the maritime mobile service.']), (160000, 190001): (False, True, False, False, False, [], [], []), (190000, 200001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], []), (200000, 275001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Aeronautical Mobile'], []), (275000, 285001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Aeronautical Mobile', 'Maritime Radionavigation (Radiobeacons)'], []), (285000, 315001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Maritime Radionavigation (Radiobeacons) [5.73]'], [], ['[5.73]: The band 285-325 kHz (283.5-325 kHz in Region 1) in the maritime radionavigation service may be used to transmit supplementary navigational information using narrow-band techniques, on condition that no harmful interference is caused to radiobeacon stations operating in the radionavigation service. (WRC-97)']), (315000, 325001): (False, False, False, False, False, ['Maritime Radionavigation (Radiobeacons) [5.73]'], ['Aeronautical Radionavigation'], ['[5.73]: The band 285-325 kHz (283.5-325 kHz in Region 1) in the maritime radionavigation service may be used to transmit supplementary navigational information using narrow-band techniques, on condition that no harmful interference is caused to radiobeacon stations operating in the radionavigation service. (WRC-97)']), (325000, 335001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Aeronautical Mobile', 'Maritime Radionavigation (Radiobeacons)'], []), (335000, 405001): (False, False, False, False, False, ['Aeronautical Radionavigation'], ['Aeronautical Mobile'], []), (405000, 415001): (False, False, False, False, False, ['Radionavigation [5.76]'], ['Aeronautical Mobile'], ['[5.76]: The frequency 410 kHz is designated for radio direction-finding in the maritime radionavigation service. The other radionavigation services to which the band 405-415 kHz is allocated shall not cause harmful interference to radio direction-finding in the band 406.5-413.5 kHz.']), (415000, 472001): (False, False, True, False, False, ['Maritime Mobile [5.79]'], ['Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.78]: Different category of service: in Cuba, the United States of America and Mexico, the allocation of the band 415-435 kHz to the aeronautical radionavigation service is on a primary basis.', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (472000, 479001): (True, False, True, False, False, ['Maritime Mobile [5.79]'], ['Amateur [5.80A]', 'Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.80A]: The maximum equivalent isotropically radiated power (e.i.r.p.) of stations in the amateur service using frequencies in the band 472-479 kHz shall not exceed 1 W. Administrations may increase this limit of e.i.r.p. to 5 W in portions of their territory which are at a distance of over 800 km from the borders of Algeria, Saudi Arabia, Azerbaijan, Bahrain, Belarus, China, Comoros, Djibouti, Egypt, United Arab Emirates, the Russian Federation, Iran (Islamic Republic of), Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Morocco, Mauritania, Oman, Uzbekistan, Qatar, Syrian Arab Republic, Kyrgyzstan, Somalia, Sudan, Tunisia, Ukraine and Yemen. In this frequency band, stations in the amateur service shall not cause harmful interference to, or claim protection from, stations of the aeronautical radionavigation service. (WRC-12)', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.80B]: The use of the frequency band 472-479 kHz in Algeria, Saudi Arabia, Azerbaijan, Bahrain, Belarus, China, Comoros, Djibouti, Egypt, United Arab Emirates, the Russian Federation, Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Mauritania, Oman, Uzbekistan, Qatar, Syrian Arab Republic, Kyrgyzstan, Somalia, Sudan, Tunisia and Yemen is limited to the maritime mobile and aeronautical radionavigation services. The amateur service shall not be used in the above-mentioned countries in this frequency band, and this should be taken into account by the countries authorizing such use. (WRC-12)', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (479000, 495001): (False, False, True, False, False, ['Maritime Mobile [5.79][5.79A]'], ['Aeronautical Radionavigation [5.77][5.80]'], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.', '[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.77]: Different category of service: in Australia, China, the French overseas communities of Region 3, Korea (Rep. of), India, Iran (Islamic Republic of), Japan, Pakistan, Papua New Guinea and Sri Lanka, the allocation of the frequency band 415-495 kHz to the aeronautical radionavigation service is on a primary basis. In Armenia, Azerbaijan, Belarus, the Russian Federation, Kazakhstan, Latvia, Uzbekistan and Kyrgyzstan, the allocation of the frequency band 435-495 kHz to the aeronautical radionavigation service is on a primary basis. Administrations in all the aforementioned countries shall take all practical steps necessary to ensure that aeronautical radionavigation stations in the frequency band 435-495 kHz do not cause interference to reception by coast stations of transmissions from ship stations on frequencies designated for ship stations on a worldwide basis. (WRC-12)', '[5.80]: In Region 2, the use of the band 435-495 kHz by the aeronautical radionavigation service is limited to non-directional beacons not employing voice transmission.', '[5.82]: In the maritime mobile service, the frequency 490 kHz is to be used exclusively for the transmission by coast stations of navigational and meteorological warnings and urgent information to ships, by means of narrow-band direct-printing telegraphy. The conditions for use of the frequency 490 kHz are prescribed in Articles 31 and 52. In using the frequency band 415-495 kHz for the aeronautical radionavigation service, administrations are requested to ensure that no harmful interference is caused to the frequency 490 kHz. In using the frequency band 472-479 kHz for the amateur service, administrations shall ensure that no harmful interference is caused to the frequency 490 kHz. (WRC-12)']), (495000, 505001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (505000, 510001): (False, False, True, False, False, ['Maritime Mobile [5.79]'], [], ['[5.79]: The use of the bands 415-495 kHz and 505-526.5 kHz (505-510 kHz in Region 2) by the maritime mobile service is limited to radiotelegraphy.']), (510000, 525001): (False, False, True, False, False, ['Maritime Mobile [5.79A][5.84]', 'Aeronautical Radionavigation'], [], ['[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.84]: The conditions for the use of the frequency 518 kHz by the maritime mobile service are prescribed in Articles 31 and 52. (WRC-07)']), (525000, 535001): (False, False, False, True, False, ['Broadcasting [5.86]', 'Aeronautical Radionavigation'], [], ['[5.86]: In Region 2, in the band 525-535 kHz the carrier power of broadcasting stations shall not exceed 1 kW during the day and 250 W at night.']), (535000, 1605001): (False, False, False, True, False, ['Broadcasting'], [], []), (1605000, 1625001): (False, False, False, True, False, ['Broadcasting [5.89]'], [], ['[5.89]: In Region 2, the use of the band 1 605-1 705 kHz by stations of the broadcasting service is subject to the Plan established by the Regional Administrative Radio Conference (Rio de Janeiro, 1988).The examination of frequency assignments to stations of the fixed and mobile services in the band 1 625-1 705 kHz shall take account of the allotments appearing in the Plan established by the Regional Administrative Radio Conference (Rio de Janeiro, 1988). ', '[5.90]: In the band 1 605-1 705 kHz, in cases where a broadcasting station of Region 2 is concerned, the service area of the maritime mobile stations in Region 1 shall be limited to that provided by ground-wave propagation.']), (1625000, 1705001): (False, True, True, True, False, ['Broadcasting [5.89]'], ['Radiolocation'], ['[5.89]: In Region 2, the use of the band 1 605-1 705 kHz by stations of the broadcasting service is subject to the Plan established by the Regional Administrative Radio Conference (Rio de Janeiro, 1988).The examination of frequency assignments to stations of the fixed and mobile services in the band 1 625-1 705 kHz shall take account of the allotments appearing in the Plan established by the Regional Administrative Radio Conference (Rio de Janeiro, 1988). ', '[5.90]: In the band 1 605-1 705 kHz, in cases where a broadcasting station of Region 2 is concerned, the service area of the maritime mobile stations in Region 1 shall be limited to that provided by ground-wave propagation.']), (1705000, 1800001): (False, True, True, False, False, ['Radiolocation', 'Aeronautical Radionavigation'], [], []), (1800000, 1850001): (True, False, False, False, False, ['Amateur'], [], []), (1850000, 2000001): (True, True, True, False, False, ['Amateur', 'Mobile Except Aeronautical Mobile', 'Radiolocation', 'Radionavigation'], [], ['[5.102]: Alternative allocation: in Bolivia, Chile, Paraguay and Peru, the frequency band 1 850-2 000 kHz is allocated to the fixed, mobile except aeronautical mobile, radiolocation and radionavigation services on a primary basis. (WRC-15)']), (2000000, 2065001): (False, True, True, False, False, [], [], []), (2065000, 2107001): (False, False, True, False, False, ['Maritime Mobile [5.105]'], [], ['[5.105]: In Region 2, except in Greenland, coast stations and ship stations using radiotelephony in the band 2 065-2 107 kHz shall be limited to class J3E emissions and to a peak envelope power not exceeding 1 kW. Preferably, the following carrier frequencies should be used: 2 065.0 kHz, 2 079.0 kHz, 2 082.5 kHz, 2 086.0 kHz, 2 093.0 kHz, 2 096.5 kHz, 2 100.0 kHz and 2 103.5 kHz. In Argentina and Uruguay, the carrier frequencies 2 068.5 kHz and 2 075.5 kHz are also used for this purpose, while the frequencies within the band 2 072-2 075.5 kHz are used as provided in No. 52.165.', '[5.106]: In Regions 2 and 3, provided no harmful interference is caused to the maritime mobile service, the frequencies between 2 065 kHz and 2 107 kHz may be used by stations of the fixed service communicating only within national borders and whose mean power does not exceed 50 W. In notifying the frequencies, the attention of the Bureau should be drawn to these provisions.']), (2107000, 2170001): (False, True, True, False, False, [], [], []), (2170000, 2173501): (False, False, True, False, False, ['Maritime Mobile'], [], []), (2173500, 2190501): (False, False, True, False, False, ['Mobile (Distress And Calling)'], [], ['[5.108]: The carrier frequency 2 182 kHz is an international distress and calling frequency for radiotelephony. The conditions for the use of the band 2 173.5-2 190.5 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (2190500, 2194001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (2194000, 2300001): (False, True, True, False, False, [], [], ['[5.112]: Alternative allocation: in Denmark and Sri Lanka, the band 2 194-2 300 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (2300000, 2495001): (False, True, True, True, False, ['Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (2495000, 2501001): (False, False, False, False, False, ['Standard Frequency And Time Signal (2 500 Khz)'], [], []), (2501000, 2502001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (2502000, 2505001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], [], []), (2505000, 2850001): (False, True, True, False, False, [], [], []), (2850000, 3025001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (3025000, 3155001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (3155000, 3200001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field. ', "[5.117]: Alternative allocation: in Côte d'Ivoire, Denmark, Egypt, Liberia, Sri Lanka and Togo, the band 3 155-3 200 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)"]), (3200000, 3230001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile (R)', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field.']), (3230000, 3400001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.', '[5.116]: Administrations are urged to authorize the use of the band 3 155-3 195 kHz to provide a common worldwide channel for low power wireless hearing aids. Additional channels for these devices may be assigned by administrations in the bands between 3 155 kHz and 3 400 kHz to suit local needs.It should be noted that frequencies in the range 3 000 kHz to 4 000 kHz are suitable for hearing aid devices which are designed to operate over short distances within the induction field. ', '[5.118]: Additional allocation: in the United States, Mexico, Peru and Uruguay, the band 3 230-3 400 kHz is also allocated to the radiolocation service on a secondary basis. (WRC-03)']), (3400000, 3500001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (3500000, 3750001): (True, False, False, False, False, ['Amateur'], [], ['[5.119]: Additional allocation: in Peru, the frequency band 3 500-3 750 kHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)']), (3750000, 4000001): (True, True, True, False, False, ['Amateur', 'Mobile Except Aeronautical Mobile (R)'], [], ['[5.122]: Alternative allocation: in Bolivia, Chile, Ecuador, Paraguay and Peru, the frequency band 3 750-4 000 kHz is allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-15)', '[5.125]: Additional allocation: in Greenland, the band 3 950-4 000 kHz is also allocated to the broadcasting service on a primary basis. The power of the broadcasting stations operating in this band shall not exceed that necessary for a national service and shall in no case exceed 5 kW.']), (4000000, 4063000): (False, True, True, False, False, ['Maritime Mobile [5.127]'], [], ['[5.127]: The use of the band 4 000-4 063 kHz by the maritime mobile service is limited to ship stations using radiotelephony (see No. 52.220 and Appendix 17).', '[5.126]: In Region 3, the stations of those services to which the band 3 995-4 005 kHz is allocated may transmit standard frequency and time signals.']), (4062999, 4438001): (False, False, True, False, False, ['Maritime Mobile [5.79A][5.109][5.110][5.130][5.131][5.132]'], [], ['[5.79A]: When establishing coast stations in the NAVTEX service on the frequencies 490 kHz, 518 kHz and 4 209.5 kHz, administrations are strongly recommended to coordinate the operating characteristics in accordance with the procedures of the International Maritime Organization (IMO) (see Resolution 339 (Rev.WRC-07)). (WRC-07)', '[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.130]: The conditions for the use of the carrier frequencies 4 125 kHz and 6 215 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.131]: The frequency 4 209.5 kHz is used exclusively for the transmission by coast stations of meteorological and navigational warnings and urgent information to ships by means of narrow-band direct-printing techniques. (WRC-97)', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.128]: Frequencies in the bands 4 063-4 123 kHz and 4 130-4 438 kHz may be used exceptionally by stations in the fixed service, communicating only within the boundary of the country in which they are located, with a mean power not exceeding 50 W, on condition that harmful interference is not caused to the maritime mobile service. In addition, in Afghanistan, Argentina, Armenia, Azerbaijan, Belarus, Botswana, Burkina Faso, the Central African Rep., China, the Russian Federation, Georgia, India, Kazakhstan, Mali, Niger, Pakistan, Kyrgyzstan, Tajikistan, Chad, Turkmenistan and Ukraine, in the bands 4 063-4 123 kHz, 4 130-4 133 kHz and 4 408-4 438 kHz, stations in the fixed service, with a mean power not exceeding 1 kW, can be operated on condition that they are situated at least 600 km from the coast and that harmful interference is not caused to the maritime mobile service. (WRC-12)']), (4438000, 4488001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)', 'Radiolocation [5.132A]'], [], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (4488000, 4650001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], []), (4650000, 4700001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (4700000, 4750001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (4750000, 4850001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile (R)', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (4850000, 4995001): (False, True, True, True, False, ['Land Mobile', 'Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (4995000, 5003001): (False, False, False, False, False, ['Standard Frequency And Time Signal (5 000 Khz)'], [], []), (5003000, 5005001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (5005000, 5060001): (False, True, False, True, False, ['Broadcasting [5.113]'], [], ['[5.113]: For the conditions for the use of the bands 2 300-2 495 kHz (2 498 kHz in Region 1), 3 200-3 400 kHz, 4 750-4 995 kHz and 5 005-5 060 kHz by the broadcasting service, see Nos. 5.16 to 5.20, 5.21 and 23.3 to 23.10.']), (5060000, 5250001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile'], ['[5.133]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Latvia, Lithuania, Niger, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 5 130-5 250 kHz to the mobile, except aeronautical mobile, service is on a primary basis (see No. 5.33). (WRC-12)']), (5250000, 5275001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radiolocation [5.132A]'], [], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (5275000, 5351501): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (5351500, 5366501): (True, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Amateur [5.133B]'], ['[5.133B]: Stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 15 W (e.i.r.p.). However, in Region 2 in Mexico, stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 20 W (e.i.r.p.). In the following Region 2 countries: Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bolivia, Brazil, Chile, Colombia, Costa Rica, Cuba, Dominican Republic, Dominica, El Salvador, Ecuador, Grenada, Guatemala, Guyana, Haiti, Honduras, Jamaica, Nicaragua, Panama, Paraguay, Peru, Saint Lucia, Saint Kitts and Nevis, Saint Vincent and the Grenadines, Suriname, Trinidad and Tobago, Uruguay, Venezuela, as well as the overseas territories of the Netherlands in Region 2, stations in the amateur service using the frequency band 5 351.5-5 366.5 kHz shall not exceed a maximum radiated power of 25 W (e.i.r.p.). (WRC-15)']), (5366500, 5450001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (5450000, 5480001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (5480000, 5680001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (5680000, 5730001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.115]: The carrier (reference) frequencies 3 023 kHz and 5 680 kHz may also be used, in accordance with Article 31, by stations of the maritime mobile service engaged in coordinated search and rescue operations. (WRC-07)']), (5730000, 5900001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], []), (5900000, 5950001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.136]: Additional allocation: frequencies in the band 5 900-5 950 kHz may be used by stations in the following services, communicating only within the boundary of the country in which they are located: fixed service (in all three Regions), land mobile service (in Region 1), mobile except aeronautical mobile (R) service (in Regions 2 and 3), on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (5950000, 6200001): (False, False, False, True, False, ['Broadcasting'], [], []), (6200000, 6525001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.130][5.132]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.130]: The conditions for the use of the carrier frequencies 4 125 kHz and 6 215 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.137]: On condition that harmful interference is not caused to the maritime mobile service, the bands 6 200-6 213.5 kHz and 6 220.5-6 525 kHz may be used exceptionally by stations in the fixed service, communicating only within the boundary of the country in which they are located, with a mean power not exceeding 50 W. At the time of notification of these frequencies, the attention of the Bureau will be drawn to the above conditions.']), (6525000, 6685001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (6685000, 6765001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (6765000, 7000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (7000000, 7100001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.140]: Additional allocation: in Angola, Iraq, Somalia and Togo, the frequency band 7 000-7 050 kHz is also allocated to the fixed service on a primary basis. (WRC-15)', '[5.141]: Alternative allocation: in Egypt, Eritrea, Ethiopia, Guinea, Libya, Madagascar and Niger, the band 7 000-7 050 kHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.141A]: Additional allocation: in Uzbekistan and Kyrgyzstan, the bands 7 000-7 100 kHz and 7 100-7 200 kHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-03)']), (7100000, 7200001): (True, False, False, False, False, ['Amateur'], [], ['[5.141A]: Additional allocation: in Uzbekistan and Kyrgyzstan, the bands 7 000-7 100 kHz and 7 100-7 200 kHz are also allocated to the fixed and land mobile services on a secondary basis. (WRC-03)', '[5.141B]: Additional allocation: in Algeria, Saudi Arabia, Australia, Bahrain, Botswana, Brunei Darussalam, China, Comoros, Korea (Rep. of), Diego Garcia, Djibouti, Egypt, United Arab Emirates, Eritrea, Guinea, Indonesia, Iran (Islamic Republic of), Japan, Jordan, Kuwait, Libya, Mali, Morocco, Mauritania, Niger, New Zealand, Oman, Papua New Guinea, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Tunisia, Viet Nam and Yemen, the frequency band 7 100-7 200 kHz is also allocated to the fixed and the mobile, except aeronautical mobile (R), services on a primary basis. (WRC-15)']), (7200000, 7300001): (True, False, False, False, False, ['Amateur'], [], ['[5.142]: The use of the band 7 200-7 300 kHz in Region 2 by the amateur service shall not impose constraints on the broadcasting service intended for use within Region 1 and Region 3. (WRC-12)']), (7300000, 7400001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.143]: Additional allocation: frequencies in the band 7 300-7 350 kHz may be used by stations in the fixed service and in the land mobile service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)', '[5.143A]: In Region 3, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed service on a primary basis and land mobile service on a secondary basis, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)', '[5.143B]: In Region 1, frequencies in the band 7 350-7 450 kHz may be used by stations in the fixed and land mobile services communicating only within the boundary of the country in which they are located on condition that harmful interference is not caused to the broadcasting service. The total radiated power of each station shall not exceed 24 dBW. (WRC-12)', '[5.143C]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Iran (Islamic Republic of), Jordan, Kuwait, Libya, Morocco, Mauritania, Niger, Oman, Qatar, the Syrian Arab Republic, Sudan, South Sudan, Tunisia and Yemen, the bands 7 350-7 400 kHz and 7 400-7 450 kHz are also allocated to the fixed service on a primary basis. (WRC-12)', '[5.143D]: In Region 2, frequencies in the band 7 350-7 400 kHz may be used by stations in the fixed service and in the land mobile service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies for these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-12)']), (7400000, 7450001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], []), (7450000, 8100001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile (R)'], [], ['[5.144]: In Region 3, the stations of those services to which the band 7 995-8 005 kHz is allocated may transmit standard frequency and time signals.']), (8100000, 8195001): (False, True, True, False, False, ['Maritime Mobile'], [], []), (8195000, 8815001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)', '[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (8815000, 8965001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (8965000, 9040001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (9040000, 9400001): (False, True, False, False, False, [], [], []), (9400000, 9500001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (9500000, 9900001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.147]: On condition that harmful interference is not caused to the broadcasting service, frequencies in the bands 9 775-9 900 kHz, 11 650-11 700 kHz and 11 975-12 050 kHz may be used by stations in the fixed service communicating only within the boundary of the country in which they are located, each station using a total radiated power not exceeding 24 dBW.']), (9900000, 9995001): (False, True, False, False, False, [], [], []), (9995000, 10003001): (False, False, False, False, False, ['Standard Frequency And Time Signal (10 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10003000, 10005001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10005000, 10100001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (10100000, 10150001): (True, True, False, False, False, [], ['Amateur'], []), (10150000, 11175001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (11175000, 11275001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (11275000, 11400001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (11400000, 11600001): (False, True, False, False, False, [], [], []), (11600000, 11650001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (11650000, 12050001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.147]: On condition that harmful interference is not caused to the broadcasting service, frequencies in the bands 9 775-9 900 kHz, 11 650-11 700 kHz and 11 975-12 050 kHz may be used by stations in the fixed service communicating only within the boundary of the country in which they are located, each station using a total radiated power not exceeding 24 dBW.']), (12050000, 12100001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (12100000, 12230001): (False, True, False, False, False, [], [], []), (12230000, 13200001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)']), (13200000, 13260001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (13260000, 13360001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (13360000, 13410001): (False, True, False, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (13410000, 13450001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (13450000, 13550001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)', 'Radiolocation [5.132A]'], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (13550000, 13570001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (13570000, 13600001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.151]: Additional allocation: frequencies in the bands 13 570-13 600 kHz and 13 800-13 870 kHz may be used by stations in the fixed service and in the mobile except aeronautical mobile (R) service, communicating only within the boundary of the country in which they are located, on the condition that harmful interference is not caused to the broadcasting service. When using frequencies in these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (13600000, 13800001): (False, False, False, True, False, ['Broadcasting'], [], []), (13800000, 13870001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.151]: Additional allocation: frequencies in the bands 13 570-13 600 kHz and 13 800-13 870 kHz may be used by stations in the fixed service and in the mobile except aeronautical mobile (R) service, communicating only within the boundary of the country in which they are located, on the condition that harmful interference is not caused to the broadcasting service. When using frequencies in these services, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (13870000, 14000001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (14000000, 14250001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (14250000, 14350001): (True, False, False, False, False, ['Amateur'], [], ['[5.152]: Additional allocation: in Armenia, Azerbaijan, China, Côte d’Ivoire, the Russian Federation, Georgia, Iran (Islamic Republic of), Kazakhstan, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 14 250-14 350 kHz is also allocated to the fixed service on a primary basis. Stations of the fixed service shall not use a radiated power exceeding 24 dBW. (WRC-03)']), (14350000, 14990001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], []), (14990000, 15005001): (False, False, False, False, False, ['Standard Frequency And Time Signal (15 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (15005000, 15010001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (15010000, 15100001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (15100000, 15600001): (False, False, False, True, False, ['Broadcasting'], [], []), (15600000, 15800001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (15800000, 16100001): (False, True, False, False, False, [], [], ['[5.153]: In Region 3, the stations of those services to which the band 15 995-16 005 kHz is allocated may transmit standard frequency and time signals.']), (16100000, 16200001): (False, True, False, False, False, ['Radiolocation [5.145A]'], [], ['[5.145A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed service. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (16200000, 16360001): (False, True, False, False, False, [], [], []), (16360000, 17410001): (False, False, True, False, False, ['Maritime Mobile [5.109][5.110][5.132][5.145]'], [], ['[5.109]: The frequencies 2 187.5 kHz, 4 207.5 kHz, 6 312 kHz, 8 414.5 kHz, 12 577 kHz and 16 804.5 kHz are international distress frequencies for digital selective calling. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.110]: The frequencies 2 174.5 kHz, 4 177.5 kHz, 6 268 kHz, 8 376.5 kHz, 12 520 kHz and 16 695 kHz are international distress frequencies for narrow-band direct-printing telegraphy. The conditions for the use of these frequencies are prescribed in Article 31.', '[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.145]: The conditions for the use of the carrier frequencies 8 291 kHz, 12 290 kHz and 16 420 kHz are prescribed in Articles 31 and 52. (WRC-07)']), (17410000, 17480001): (False, True, False, False, False, [], [], []), (17480000, 17550001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (17550000, 17900001): (False, False, False, True, False, ['Broadcasting'], [], []), (17900000, 17970001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (17970000, 18030001): (False, False, True, False, False, ['Aeronautical Mobile (Or)'], [], []), (18030000, 18052001): (False, True, False, False, False, [], [], []), (18052000, 18068001): (False, True, False, False, False, [], ['Space Research'], []), (18068000, 18168001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.154]: Additional allocation: in Armenia, Azerbaijan, the Russian Federation, Georgia, Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 18 068-18 168 kHz is also allocated to the fixed service on a primary basis for use within their boundaries, with a peak envelope power not exceeding 1 kW. (WRC-03)']), (18168000, 18780001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile'], []), (18780000, 18900001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (18900000, 19020001): (False, False, False, True, False, ['Broadcasting [5.134]'], [], ['[5.134]: The use of the bands 5 900-5 950 kHz, 7 300-7 350 kHz, 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 13 570-13 600 kHz, 13 800-13 870 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz by the broadcasting service is subject to the application of the procedure of Article 12. Administrations are encouraged to use these bands to facilitate the introduction of digitally modulated emissions in accordance with the provisions of Resolution 517 (Rev.WRC-07)*. (WRC-07)', '[5.146]: Additional allocation: frequencies in the bands 9 400-9 500 kHz, 11 600-11 650 kHz, 12 050-12 100 kHz, 15 600-15 800 kHz, 17 480-17 550 kHz and 18 900-19 020 kHz may be used by stations in the fixed service, communicating only within the boundary of the country in which they are located, on condition that harmful interference is not caused to the broadcasting service. When using frequencies in the fixed service, administrations are urged to use the minimum power required and to take account of the seasonal use of frequencies by the broadcasting service published in accordance with the Radio Regulations. (WRC-07)']), (19020000, 19680001): (False, True, False, False, False, [], [], []), (19680000, 19800001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).']), (19800000, 19990001): (False, True, False, False, False, [], [], []), (19990000, 19995001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (19995000, 20010001): (False, False, False, False, False, ['Standard Frequency And Time Signal (20 000 Khz)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07)']), (20010000, 21000001): (False, True, True, False, False, [], [], []), (21000000, 21450001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (21450000, 21850001): (False, False, False, True, False, ['Broadcasting'], [], []), (21850000, 21870001): (False, True, False, False, False, ['Fixed [5.155A]'], [], ['[5.155A]: In Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Slovakia, Tajikistan, Turkmenistan and Ukraine, the use of the band 21 850-21 870 kHz by the fixed service is limited to provision of services related to aircraft flight safety. (WRC-07)', '[5.155]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Slovakia, Tajikistan, Turkmenistan and Ukraine, the band 21 850-21 870 kHz is also allocated to the aeronautical mobile (R) service on a primary basis. (WRC-07)']), (21870000, 21924001): (False, True, False, False, False, ['Fixed [5.155B]'], [], ['[5.155B]: The band 21 870-21 924 kHz is used by the fixed service for provision of services related to aircraft flight safety.']), (21924000, 22000001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], []), (22000000, 22855001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).', '[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (22855000, 23000001): (False, True, False, False, False, [], [], ['[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (23000000, 23200001): (False, True, True, False, False, [], ['Mobile Except Aeronautical Mobile (R)'], ['[5.156]: Additional allocation: in Nigeria, the band 22 720-23 200 kHz is also allocated to the meteorological aids service (radiosondes) on a primary basis.']), (23200000, 23350001): (False, True, True, False, False, ['Fixed [5.156A]', 'Aeronautical Mobile (Or)'], [], ['[5.156A]: The use of the band 23 200-23 350 kHz by the fixed service is limited to provision of services related to aircraft flight safety.']), (23350000, 24000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.157]'], [], ['[5.157]: The use of the band 23 350-24 000 kHz by the maritime mobile service is limited to inter-ship radiotelegraphy.']), (24000000, 24450001): (False, True, True, False, False, ['Land Mobile'], [], []), (24450000, 24650001): (False, True, True, False, False, ['Land Mobile', 'Radiolocation [5.132A]'], [], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (24650000, 24890001): (False, True, True, False, False, ['Land Mobile'], [], []), (24890000, 24990001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (24990000, 25005001): (False, False, False, False, False, ['Standard Frequency And Time Signal (25 000 Khz)'], [], []), (25005000, 25010001): (False, False, False, False, False, ['Standard Frequency And Time Signal'], ['Space Research'], []), (25010000, 25070001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (25070000, 25210001): (False, False, True, False, False, ['Maritime Mobile'], [], []), (25210000, 25550001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (25550000, 25670001): (False, False, False, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (25670000, 26100001): (False, False, False, True, False, ['Broadcasting'], [], []), (26100000, 26175001): (False, False, True, False, False, ['Maritime Mobile [5.132]'], [], ['[5.132]: The frequencies 4 210 kHz, 6 314 kHz, 8 416.5 kHz, 12 579 kHz, 16 806.5 kHz, 19 680.5 kHz, 22 376 kHz and 26 100.5 kHz are the international frequencies for the transmission of maritime safety information (MSI) (see Appendix 17).']), (26175000, 26200001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], []), (26200000, 26420001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radiolocation [5.132A]'], [], ['[5.132A]: Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (26420000, 27500001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (27500000, 28000001): (False, True, True, False, False, ['Meteorological Aids'], [], []), (28000000, 29700001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (29700000, 30005001): (False, True, True, False, False, [], [], []), (30005000, 30010001): (False, True, True, False, False, ['Space Operation (Satellite Identification)', 'Space Research'], [], []), (30010000, 37500001): (False, True, True, False, False, [], [], []), (37500000, 38250001): (False, True, True, False, False, [], ['Radio Astronomy'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (38250000, 39986001): (False, True, True, False, False, [], [], []), (39986000, 40020001): (False, True, True, False, False, [], ['Space Research'], []), (40020000, 40980001): (False, True, True, False, False, [], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (40980000, 41015001): (False, True, True, False, False, [], ['Space Research'], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.']), (41015000, 42000001): (False, True, True, False, False, [], [], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.', '[5.161A]: Additional allocation: in Korea (Rep. of) and the United States, the frequency bands 41.015-41.665 MHz and 43.35-44 MHz are also allocated to the radiolocation service on a primary basis. Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (42000000, 42500001): (False, True, True, False, False, [], [], ['[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.']), (42500000, 44000001): (False, True, True, False, False, [], [], ['[5.160]: Additional allocation: in Botswana, Burundi, Dem. Rep. of the Congo and Rwanda, the band 41-44 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.161]: Additional allocation: in Iran (Islamic Republic of) and Japan, the band 41-44 MHz is also allocated to the radiolocation service on a secondary basis.', '[5.161A]: Additional allocation: in Korea (Rep. of) and the United States, the frequency bands 41.015-41.665 MHz and 43.35-44 MHz are also allocated to the radiolocation service on a primary basis. Stations in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the fixed or mobile services. Applications of the radiolocation service are limited to oceanographic radars operating in accordance with Resolution 612 (Rev.WRC-12). (WRC-12)']), (44000000, 47000001): (False, True, True, False, False, [], [], ['[5.162]: Additional allocation: in Australia, the band 44-47 MHz is also allocated to the broadcasting service on a primary basis. (WRC-12)', '[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)']), (47000000, 50000001): (False, True, True, False, False, [], [], []), (50000000, 54000001): (True, False, False, False, False, ['Amateur'], [], ['[5.162A]: Additional allocation: in Germany, Austria, Belgium, Bosnia and Herzegovina, China, Vatican, Denmark, Spain, Estonia, the Russian Federation, Finland, France, Ireland, Iceland, Italy, Latvia, The Former Yugoslav Republic of Macedonia, Liechtenstein, Lithuania, Luxembourg, Monaco, Montenegro, Norway, the Netherlands, Poland, Portugal, the Czech Rep., the United Kingdom, Serbia, Slovenia, Sweden and Switzerland the band 46-68 MHz is also allocated to the radiolocation service on a secondary basis. This use is limited to the operation of wind profiler radars in accordance with Resolution 217 (WRC-97). (WRC-12)', '[5.167]: Alternative allocation: in Bangladesh, Brunei Darussalam, India, Iran (Islamic Republic of), Pakistan and Singapore, the frequency band 50-54 MHz is allocated to the fixed, mobile and broadcasting services on a primary basis. (WRC-15)', '[5.167A]: Additional allocation: in Indonesia and Thailand, the frequency band 50-54 MHz is also allocated to the fixed, mobile and broadcasting services on a primary basis. (WRC-15)', '[5.168]: Additional allocation: in Australia, China and the Dem. People’s Rep. of Korea, the band 50-54 MHz is also allocated to the broadcasting service on a primary basis.', '[5.170]: Additional allocation: in New Zealand, the frequency band 51-54 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)']), (54000000, 68000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.172]: Different category of service: in the French overseas departments and communities in Region 2 and Guyana, the allocation of the frequency band 54-68 MHz to the fixed and mobile services is on a primary basis (see No. 5.33). (WRC-15)']), (68000000, 72000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.173]: Different category of service: in the French overseas departments and communities in Region 2 and Guyana, the allocation of the frequency band 68-72 MHz to the fixed and mobile services is on a primary basis (see No. 5.33). (WRC-15)']), (72000000, 73000001): (False, True, True, False, False, [], [], []), (73000000, 74600001): (False, False, False, False, False, ['Radio Astronomy'], [], ['[5.178]: Additional allocation: in Colombia, Cuba, El Salvador, Guatemala, Guyana, Honduras and Nicaragua, the band 73-74.6 MHz is also allocated to the fixed and mobile services on a secondary basis. (WRC-12)']), (74600000, 74800001): (False, True, True, False, False, [], [], []), (74800000, 75200001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], ['[5.180]: The frequency 75 MHz is assigned to marker beacons. Administrations shall refrain from assigning frequencies close to the limits of the guardband to stations of other services which, because of their power or geographical position, might cause harmful interference or otherwise place a constraint on marker beacons.Every effort should be made to improve further the characteristics of airborne receivers and to limit the power of transmitting stations close to the limits 74.8 MHz and 75.2 MHz. ', '[5.181]: Additional allocation: in Egypt, Israel and the Syrian Arab Republic, the band 74.8-75.2 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedure invoked under No. 9.21. (WRC-03)']), (75200000, 75400001): (False, True, True, False, False, [], [], ['[5.179]: Additional allocation: in Armenia, Azerbaijan, Belarus, China, the Russian Federation, Georgia, Kazakhstan, Lithuania, Mongolia, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the bands 74.6-74.8 MHz and 75.2-75.4 MHz are also allocated to the aeronautical radionavigation service, on a primary basis, for ground-based transmitters only. (WRC-12)']), (75400000, 76000001): (False, True, True, False, False, [], [], []), (76000000, 88000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.185]: Different category of service: in the United States, the French overseas departments and communities in Region 2, Guyana and Paraguay, the allocation of the frequency band 76-88 MHz to the fixed and mobile services is on a primary basis (see No. 5.33). (WRC-15)']), (88000000, 100000001): (False, False, False, True, False, ['Broadcasting'], [], []), (100000000, 108000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.192]: Additional allocation: in China and Korea (Rep. of), the band 100-108 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-97)', '[5.194]: Additional allocation: in Azerbaijan, Kyrgyzstan, Somalia and Turkmenistan, the band 104-108 MHz is also allocated to the mobile, except aeronautical mobile (R), service on a secondary basis. (WRC-07)']), (108000000, 117975001): (False, False, False, False, False, ['Aeronautical Radionavigation'], [], ['[5.197]: Additional allocation: in the Syrian Arab Republic, the band 108-111.975 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedures invoked under No. 9.21. (WRC-12)', '[5.197A]: Additional allocation: the band 108-117.975 MHz is also allocated on a primary basis to the aeronautical mobile (R) service, limited to systems operating in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 413 (Rev.WRC-07)*. The use of the band 108-112 MHz by the aeronautical mobile (R) service shall be limited to systems composed of ground-based transmitters and associated receivers that provide navigational information in support of air navigation functions in accordance with recognized international aeronautical standards. (WRC-07)']), (117975000, 137000001): (False, False, True, False, False, ['Aeronautical Mobile (R)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.200]: In the band 117.975-137 MHz, the frequency 121.5 MHz is the aeronautical emergency frequency and, where required, the frequency 123.1 MHz is the aeronautical frequency auxiliary to 121.5 MHz. Mobile stations of the maritime mobile service may communicate on these frequencies under the conditions laid down in Article 31 for distress and safety purposes with stations of the aeronautical mobile service. (WRC-07)', '[5.201]: Additional allocation: in Armenia, Azerbaijan, Belarus, Bulgaria, Estonia, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq (Republic of), Japan, Kazakhstan, Moldova, Mongolia, Mozambique, Uzbekistan, Papua New Guinea, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the frequency band 132-136 MHz is also allocated to the aeronautical mobile (OR) service on a primary basis. In assigning frequencies to stations of the aeronautical mobile (OR) service, the administration shall take account of the frequencies assigned to stations in the aeronautical mobile (R) service. (WRC-15)', '[5.202]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Belarus, Bulgaria, the United Arab Emirates, the Russian Federation, Georgia, Iran (Islamic Republic of), Jordan, Oman, Uzbekistan, Poland, the Syrian Arab Republic, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the frequency band 136-137 MHz is also allocated to the aeronautical mobile (OR) service on a primary basis. In assigning frequencies to stations of the aeronautical mobile (OR) service, the administration shall take account of the frequencies assigned to stations in the aeronautical mobile (R) service. (WRC-15)']), (137000000, 137025001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137025000, 137175001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137175000, 137825001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (137825000, 138000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Space Research (Space-To-Earth)'], ['Mobile Except Aeronautical Mobile (R)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.204]: Different category of service: in Afghanistan, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, China, Cuba, the United Arab Emirates, India, Indonesia, Iran (Islamic Republic of), Iraq, Kuwait, Montenegro, Oman, Pakistan, the Philippines, Qatar, Serbia, Singapore, Thailand and Yemen, the band 137-138 MHz is allocated to the fixed and mobile, except aeronautical mobile (R), services on a primary basis (see No. 5.33). (WRC-07)', '[5.205]: Different category of service: in Israel and Jordan, the allocation of the band 137-138 MHz to the fixed and mobile, except aeronautical mobile, services is on a primary basis (see No. 5.33).', '[5.206]: Different category of service: in Armenia, Azerbaijan, Belarus, Bulgaria, Egypt, the Russian Federation, Finland, France, Georgia, Greece, Kazakhstan, Lebanon, Moldova, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Syrian Arab Republic, Slovakia, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the allocation of the band 137-138 MHz to the aeronautical mobile (OR) service is on a primary basis (see No. 5.33). (WRC-2000)', '[5.207]: Additional allocation: in Australia, the band 137-144 MHz is also allocated to the broadcasting service on a primary basis until that service can be accommodated within regional broadcasting allocations.', '[5.208]: The use of the band 137-138 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)']), (138000000, 143600001): (False, True, True, False, False, ['Radiolocation'], ['Space Research (Space-To-Earth)'], []), (143600000, 143650001): (False, True, True, False, False, ['Radiolocation', 'Space Research (Space-To-Earth)'], [], []), (143650000, 144000001): (False, True, True, False, False, ['Radiolocation'], ['Space Research (Space-To-Earth)'], []), (144000000, 146000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.216]: Additional allocation: in China, the band 144-146 MHz is also allocated to the aeronautical mobile (OR) service on a secondary basis.']), (146000000, 148000001): (True, False, False, False, False, ['Amateur'], [], ['[5.217]: Alternative allocation: in Afghanistan, Bangladesh, Cuba, Guyana and India, the band 146-148 MHz is allocated to the fixed and mobile services on a primary basis.']), (148000000, 149900001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.218]: Additional allocation: the band 148-149.9 MHz is also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. The bandwidth of any individual transmission shall not exceed ± 25 kHz.', '[5.219]: The use of the band 148-149.9 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. The mobile-satellite service shall not constrain the development and use of the fixed, mobile and space operation services in the band 148-149.9 MHz.', "[5.221]: Stations of the mobile-satellite service in the frequency band 148-149.9 MHz shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations in the following countries: Albania, Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Bangladesh, Barbados, Belarus, Belgium, Benin, Bosnia and Herzegovina, Botswana, Brunei Darussalam, Bulgaria, Cameroon, China, Cyprus, Congo (Rep. of the), Korea (Rep. of), Côte d'Ivoire, Croatia, Cuba, Denmark, Djibouti, Egypt, the United Arab Emirates, Eritrea, Spain, Estonia, Ethiopia, the Russian Federation, Finland, France, Gabon, Georgia, Ghana, Greece, Guinea, Guinea Bissau, Hungary, India, Iran (Islamic Republic of), Ireland, Iceland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Libya, Liechtenstein, Lithuania, Luxembourg, Malaysia, Mali, Malta, Mauritania, Moldova, Mongolia, Montenegro, Mozambique, Namibia, Norway, New Zealand, Oman, Uganda, Uzbekistan, Pakistan, Panama, Papua New Guinea, Paraguay, the Netherlands, the Philippines, Poland, Portugal, Qatar, the Syrian Arab Republic, Kyrgyzstan, Dem. People’s Rep. of Korea, Slovakia, Romania, the United Kingdom, Senegal, Serbia, Sierra Leone, Singapore, Slovenia, Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Swaziland, Tanzania, Chad, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, Ukraine, Viet Nam, Yemen, Zambia and Zimbabwe. (WRC-15)"]), (149900000, 150050001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209][5.220]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.220]: The use of the frequency bands 149.9-150.05 MHz and 399.9-400.05 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-15)']), (150050000, 154000001): (False, True, True, False, False, [], [], ['[5.225]: Additional allocation: in Australia and India, the band 150.05-153 MHz is also allocated to the radio astronomy service on a primary basis.']), (154000000, 156488001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156488000, 156563001): (False, False, True, False, False, ['Maritime Mobile (Distress And Calling Via Dsc)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.227]: Additional allocation: the bands 156.4875-156.5125 MHz and 156.5375-156.5625 MHz are also allocated to the fixed and land mobile services on a primary basis. The use of these bands by the fixed and land mobile services shall not cause harmful interference to nor claim protection from the maritime mobile VHF radiocommunication service. (WRC-07)']), (156563000, 156763001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156763000, 156787001): (False, False, True, False, False, ['Maritime Mobile', 'Mobile-Satellite (Earth-To-Space)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228]: The use of the frequency bands 156.7625-156.7875 MHz and 156.8125-156.8375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system (AIS) emissions of long-range AIS broadcast messages (Message 27, see the most recent version of Recommendation ITU-R M.1371). With the exception of AIS emissions, emissions in these frequency bands by systems operating in the maritime mobile service for communications shall not exceed 1 W. (WRC-12)']), (156787000, 156813001): (False, False, True, False, False, ['Maritime Mobile (Distress And Calling)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (156813000, 156838001): (False, False, True, False, False, ['Maritime Mobile', 'Mobile-Satellite (Earth-To-Space)'], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.228]: The use of the frequency bands 156.7625-156.7875 MHz and 156.8125-156.8375 MHz by the mobile-satellite service (Earth-to-space) is limited to the reception of automatic identification system (AIS) emissions of long-range AIS broadcast messages (Message 27, see the most recent version of Recommendation ITU-R M.1371). With the exception of AIS emissions, emissions in these frequency bands by systems operating in the maritime mobile service for communications shall not exceed 1 W. (WRC-12)']), (156838000, 161938001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161938000, 161963001): (False, True, True, False, False, [], ['Maritime Mobile-Satellite (Earth-To-Space) [5.228Aa]'], ['[5.228AA]: The use of the frequency bands 161.9375-161.9625 MHz and 161.9875-162.0125 MHz by the maritime mobile-satellite (Earth-to-space) service is limited to the systems which operate in accordance with Appendix 18. (WRC-15)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (161963000, 161988001): (False, False, True, False, False, ['Aeronautical Mobile (Or)', 'Maritime Mobile', 'Mobile-Satelite (Earth-To-Space)'], [], ['[5.228C]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the maritime mobile service and the mobile-satellite (Earth-to-space) service is limited to the automatic identification system (AIS). The use of these frequency bands by the aeronautical mobile (OR) service is limited to AIS emissions from search and rescue aircraft operations. The AIS operations in these frequency bands shall not constrain the development and use of the fixed and mobile services operating in the adjacent frequency bands. (WRC-12)', '[5.228D]: The frequency bands 161.9625-161.9875 MHz (AIS 1) and 162.0125-162.0375 MHz (AIS 2) may continue to be used by the fixed and mobile services on a primary basis until 1 January 2025, at which time this allocation shall no longer be valid. Administrations are encouraged to make all practicable efforts to discontinue the use of these bands by the fixed and mobile services prior to the transition date. During this transition period, the maritime mobile service in these frequency bands has priority over the fixed, land mobile and aeronautical mobile services. (WRC-12)']), (161988000, 162013001): (False, True, True, False, False, [], ['Maritime Mobile-Satellite (Earth-To-Space) [5.228Aa]'], ['[5.228AA]: The use of the frequency bands 161.9375-161.9625 MHz and 161.9875-162.0125 MHz by the maritime mobile-satellite (Earth-to-space) service is limited to the systems which operate in accordance with Appendix 18. (WRC-15)', '[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07)']), (162013000, 162037001): (False, False, True, False, False, ['Aeronautical Mobile (Or)', 'Maritime Mobile', 'Mobile-Satelite (Earth-To-Space)'], [], ['[5.228C]: The use of the frequency bands 161.9625-161.9875 MHz and 162.0125-162.0375 MHz by the maritime mobile service and the mobile-satellite (Earth-to-space) service is limited to the automatic identification system (AIS). The use of these frequency bands by the aeronautical mobile (OR) service is limited to AIS emissions from search and rescue aircraft operations. The AIS operations in these frequency bands shall not constrain the development and use of the fixed and mobile services operating in the adjacent frequency bands. (WRC-12)', '[5.228D]: The frequency bands 161.9625-161.9875 MHz (AIS 1) and 162.0125-162.0375 MHz (AIS 2) may continue to be used by the fixed and mobile services on a primary basis until 1 January 2025, at which time this allocation shall no longer be valid. Administrations are encouraged to make all practicable efforts to discontinue the use of these bands by the fixed and mobile services prior to the transition date. During this transition period, the maritime mobile service in these frequency bands has priority over the fixed, land mobile and aeronautical mobile services. (WRC-12)']), (162037000, 174000001): (False, True, True, False, False, [], [], ['[5.226]: The frequency 156.525 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service using digital selective calling (DSC). The conditions for the use of this frequency and the band 156.4875-156.5625 MHz are contained in Articles 31 and 52, and in Appendix 18.The frequency 156.8 MHz is the international distress, safety and calling frequency for the maritime mobile VHF radiotelephone service. The conditions for the use of this frequency and the band 156.7625-156.8375 MHz are contained in Article 31 and Appendix 18. In the bands 156-156.4875 MHz, 156.5625-156.7625 MHz, 156.8375-157.45 MHz, 160.6-160.975 MHz and 161.475-162.05 MHz, each administration shall give priority to the maritime mobile service on only such frequencies as are assigned to stations of the maritime mobile service by the administration (see Articles 31 and 52, and Appendix 18). Any use of frequencies in these bands by stations of other services to which they are allocated should be avoided in areas where such use might cause harmful interference to the maritime mobile VHF radiocommunication service. However, the frequencies 156.8 MHz and 156.525 MHz and the frequency bands in which priority is given to the maritime mobile service may be used for radiocommunications on inland waterways subject to agreement between interested and affected administrations and taking into account current frequency usage and existing agreements. (WRC-07) ', '[5.230]: Additional allocation: in China, the band 163-167 MHz is also allocated to the space operation service (space-to-Earth) on a primary basis, subject to agreement obtained under No. 9.21.', '[5.231]: Additional allocation: in Afghanistan and China, the band 167-174 MHz is also allocated to the broadcasting service on a primary basis. The introduction of the broadcasting service into this band shall be subject to agreement with the neighbouring countries in Region 3 whose services are likely to be affected. (WRC-12)']), (174000000, 216000001): (False, True, True, True, False, ['Broadcasting'], [], []), (216000000, 220000001): (False, True, True, False, False, ['Maritime Mobile'], ['Radiolocation [5.241]'], ['[5.241]: In Region 2, no new stations in the radiolocation service may be authorized in the band 216-225 MHz. Stations authorized prior to 1 January 1990 may continue to operate on a secondary basis.', '[5.242]: Additional allocation: in Canada, the band 216-220 MHz is also allocated to the land mobile service on a primary basis.']), (220000000, 225000001): (True, True, True, False, False, ['Amateur'], ['Radiolocation [5.241]'], ['[5.241]: In Region 2, no new stations in the radiolocation service may be authorized in the band 216-225 MHz. Stations authorized prior to 1 January 1990 may continue to operate on a secondary basis.']), (225000000, 235000001): (False, True, True, False, False, [], [], []), (235000000, 267000001): (False, True, True, False, False, [], [], ['[5.111]: The carrier frequencies 2 182 kHz, 3 023 kHz, 5 680 kHz, 8 364 kHz and the frequencies 121.5 MHz, 156.525 MHz, 156.8 MHz and 243 MHz may also be used, in accordance with the procedures in force for terrestrial radiocommunication services, for search and rescue operations concerning manned space vehicles. The conditions for the use of the frequencies are prescribed in Article 31.The same applies to the frequencies 10 003 kHz, 14 993 kHz and 19 993 kHz, but in each of these cases emissions must be confined in a band of ± 3 kHz about the frequency. (WRC-07) ', '[5.252]: Alternative allocation: in Botswana, Lesotho, Malawi, Mozambique, Namibia, South Africa, Swaziland, Zambia and Zimbabwe, the bands 230-238 MHz and 246-254 MHz are allocated to the broadcasting service on a primary basis, subject to agreement obtained under No. 9.21.', '[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.256]: The frequency 243 MHz is the frequency in this band for use by survival craft stations and equipment used for survival purposes. (WRC-07)', '[5.256A]: Additional allocation: in China, the Russian Federation and Kazakhstan, the frequency band 258-261 MHz is also allocated to the space research service (Earth-to-space) and space operation service (Earth-to-space) on a primary basis. Stations in the space research service (Earth-to-space) and space operation service (Earth-to-space) shall not cause harmful interference to, or claim protection from, or constrain the use and development of, the mobile service systems and mobile-satellite service systems operating in the frequency band. Stations in space research service (Earth-to-space) and space operation service (Earth-to-space) shall not constrain the future development of fixed service systems of other countries. (WRC-15)']), (267000000, 272000001): (False, True, True, False, False, [], ['Space Operation (Space-To-Earth)'], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.257]: The band 267-272 MHz may be used by administrations for space telemetry in their countries on a primary basis, subject to agreement obtained under No. 9.21.']), (272000000, 273000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)'], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (273000000, 312000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (312000000, 315000001): (False, True, True, False, False, [], ['Mobile-Satellite (Earth-To-Space) [5.254][5.255]'], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.255]: The bands 312-315 MHz (Earth-to-space) and 387-390 MHz (space-to-Earth) in the mobile-satellite service may also be used by non-geostationary-satellite systems. Such use is subject to coordination under No. 9.11A.']), (315000000, 322000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (322000000, 328600001): (False, True, True, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (328600000, 335400001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.258]'], [], ['[5.258]: The use of the band 328.6-335.4 MHz by the aeronautical radionavigation service is limited to Instrument Landing Systems (glide path).', '[5.259]: Additional allocation: in Egypt and the Syrian Arab Republic, the band 328.6-335.4 MHz is also allocated to the mobile service on a secondary basis, subject to agreement obtained under No. 9.21. In order to ensure that harmful interference is not caused to stations of the aeronautical radionavigation service, stations of the mobile service shall not be introduced in the band until it is no longer required for the aeronautical radionavigation service by any administration which may be identified in the application of the procedure invoked under No. 9.21. (WRC-12)']), (335400000, 387000001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (387000000, 390000001): (False, True, True, False, False, [], ['Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.254][5.255]'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)', '[5.255]: The bands 312-315 MHz (Earth-to-space) and 387-390 MHz (space-to-Earth) in the mobile-satellite service may also be used by non-geostationary-satellite systems. Such use is subject to coordination under No. 9.11A.']), (390000000, 399900001): (False, True, True, False, False, [], [], ['[5.254]: The bands 235-322 MHz and 335.4-399.9 MHz may be used by the mobile-satellite service, subject to agreement obtained under No. 9.21, on condition that stations in this service do not cause harmful interference to those of other services operating or planned to be operated in accordance with the Table of Frequency Allocations except for the additional allocation made in footnote No. 5.256A. (WRC-03)']), (399900000, 400050001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.209][5.220]'], [], ['[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.220]: The use of the frequency bands 149.9-150.05 MHz and 399.9-400.05 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-15)']), (400050000, 400150001): (False, False, False, False, True, ['Standard Frequency And Time Signal- Satellite (400.1 Mhz)'], [], ['[5.261]: Emissions shall be confined in a band of ± 25 kHz about the standard frequency 400.1 MHz.', '[5.262]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Botswana, Colombia, Cuba, Egypt, the United Arab Emirates, Ecuador, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Liberia, Malaysia, Moldova, Oman, Uzbekistan, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Kyrgyzstan, Singapore, Somalia, Tajikistan, Chad, Turkmenistan and Ukraine, the band 400.05-401 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (400150000, 401000001): (False, False, False, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208A][5.208B][5.209]', 'Space Research (Space-To-Earth) [5.263]'], ['Space Operation (Space-To-Earth)'], ['[5.208A]: In making assignments to space stations in the mobile-satellite service in the bands 137-138 MHz, 387-390 MHz and 400.15-401 MHz, administrations shall take all practicable steps to protect the radio astronomy service in the bands 150.05-153 MHz, 322-328.6 MHz, 406.1-410 MHz and 608-614 MHz from harmful interference from unwanted emissions. The threshold levels of interference detrimental to the radio astronomy service are shown in the relevant ITU-R Recommendation. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.263]: The band 400.15-401 MHz is also allocated to the space research service in the space-to-space direction for communications with manned space vehicles. In this application, the space research service will not be regarded as a safety service.', '[5.262]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Botswana, Colombia, Cuba, Egypt, the United Arab Emirates, Ecuador, the Russian Federation, Georgia, Hungary, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Liberia, Malaysia, Moldova, Oman, Uzbekistan, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Kyrgyzstan, Singapore, Somalia, Tajikistan, Chad, Turkmenistan and Ukraine, the band 400.05-401 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.264]: The use of the band 400.15-401 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. The power flux-density limit indicated in Annex 1 of Appendix 5 shall apply until such time as a competent world radiocommunication conference revises it.']), (401000000, 402000001): (False, True, True, False, False, ['Meteorological Aids', 'Space Operation (Space-To-Earth)', 'Earth Exploration-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)'], ['Mobile Except Aeronautical Mobile'], []), (402000000, 403000001): (False, True, True, False, False, ['Meteorological Aids', 'Earth Exploration-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)'], ['Mobile Except Aeronautical Mobile'], []), (403000000, 406000001): (False, True, True, False, False, ['Meteorological Aids'], ['Mobile Except Aeronautical Mobile'], ['[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)']), (406000000, 406100001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space)'], [], ['[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)', '[5.266]: The use of the band 406-406.1 MHz by the mobile-satellite service is limited to low power satellite emergency position-indicating radiobeacons (see also Article 31). (WRC-07)', '[5.267]: Any emission capable of causing harmful interference to the authorized uses of the band 406-406.1 MHz is prohibited.']), (406100000, 410000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.265]: In the frequency band 403-410 MHz, Resolution 205 (Rev.WRC-15) applies. (WRC-15)']), (410000000, 420000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Space) [5.268]'], [], ['[5.268]: Use of the frequency band 410-420 MHz by the space research service is limited to space-to-space communication links with an orbiting, manned space vehicle. The power flux-density at the surface of the Earth produced by emissions from transmitting stations of the space research service (space-to-space) in the frequency band 410-420 MHz shall not exceed −153 dB(W/m2) for 0° £ d £ 5°, −153 + 0.077 (d − 5) dB(W/m2) for 5° £ d £ 70° and −148 dB(W/m2) for 70° £ d £ 90°, where d is the angle of arrival of the radio-frequency wave and the reference bandwidth is 4 kHz. In this frequency band, stations of the space research service (space-to-space) shall not claim protection from, nor constrain the use and development of, stations of the fixed and mobile services. No. 4.10 does not apply. (WRC-15)']), (420000000, 430000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.269]: Different category of service: in Australia, the United States, India, Japan and the United Kingdom, the allocation of the bands 420-430 MHz and 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.270]: Additional allocation: in Australia, the United States, Jamaica and the Philippines, the bands 420-430 MHz and 440-450 MHz are also allocated to the amateur service on a secondary basis.', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)']), (430000000, 432000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.278]: Different category of service: in Argentina, Colombia, Costa Rica, Cuba, Guyana, Honduras, Panama and Venezuela, the allocation of the band 430-440 MHz to the amateur service is on a primary basis (see No. 5.33).', '[5.279]: Additional allocation: in Mexico, the bands 430-435 MHz and 438-440 MHz are also allocated on a primary basis to the land mobile service, subject to agreement obtained under No. 9.21.']), (432000000, 438000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Earth Exploration-Satellite (Active) [5.279A]'], ['[5.279A]: The use of the frequency band 432-438 MHz by sensors in the Earth exploration-satellite service (active) shall be in accordance with Recommendation ITU-R RS.1260-1. Additionally, the Earth exploration-satellite service (active) in the frequency band 432-438 MHz shall not cause harmful interference to the aeronautical radionavigation service in China. The provisions of this footnote in no way diminish the obligation of the Earth exploration-satellite service (active) to operate as a secondary service in accordance with Nos. 5.29 and 5.30. (WRC-15)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.278]: Different category of service: in Argentina, Colombia, Costa Rica, Cuba, Guyana, Honduras, Panama and Venezuela, the allocation of the band 430-440 MHz to the amateur service is on a primary basis (see No. 5.33).', '[5.279]: Additional allocation: in Mexico, the bands 430-435 MHz and 438-440 MHz are also allocated on a primary basis to the land mobile service, subject to agreement obtained under No. 9.21.', '[5.281]: Additional allocation: in the French overseas departments and communities in Region 2 and India, the band 433.75-434.25 MHz is also allocated to the space operation service (Earth-to-space) on a primary basis. In France and in Brazil, the band is allocated to the same service on a secondary basis.', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.']), (438000000, 440000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.276]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burkina Faso, Djibouti, Egypt, the United Arab Emirates, Ecuador, Eritrea, Ethiopia, Greece, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Italy, Jordan, Kenya, Kuwait, Libya, Malaysia, Niger, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, Switzerland, Thailand, Togo, Turkey and Yemen, the frequency band 430-440 MHz is also allocated to the fixed service on a primary basis and the frequency bands 430-435 MHz and 438-440 MHz are also allocated, except in Ecuador, to the mobile, except aeronautical mobile, service on a primary basis. (WRC-15)', '[5.278]: Different category of service: in Argentina, Colombia, Costa Rica, Cuba, Guyana, Honduras, Panama and Venezuela, the allocation of the band 430-440 MHz to the amateur service is on a primary basis (see No. 5.33).', '[5.279]: Additional allocation: in Mexico, the bands 430-435 MHz and 438-440 MHz are also allocated on a primary basis to the land mobile service, subject to agreement obtained under No. 9.21.']), (440000000, 450000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], ['[5.269]: Different category of service: in Australia, the United States, India, Japan and the United Kingdom, the allocation of the bands 420-430 MHz and 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.270]: Additional allocation: in Australia, the United States, Jamaica and the Philippines, the bands 420-430 MHz and 440-450 MHz are also allocated to the amateur service on a secondary basis.', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.284]: Additional allocation: in Canada, the band 440-450 MHz is also allocated to the amateur service on a secondary basis.', '[5.285]: Different category of service: in Canada, the allocation of the band 440-450 MHz to the radiolocation service is on a primary basis (see No. 5.33).', '[5.286]: The band 449.75-450.25 MHz may be used for the space operation service (Earth-to-space) and the space research service (Earth-to-space), subject to agreement obtained under No. 9.21.']), (450000000, 455000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.286]: The band 449.75-450.25 MHz may be used for the space operation service (Earth-to-space) and the space research service (Earth-to-space), subject to agreement obtained under No. 9.21.', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286D]: Additional allocation: in Canada, the United States and Panama, the band 454-455 MHz is also allocated to the mobile-satellite service (Earth-to-space) on a primary basis. (WRC-07)', '[5.286E]: Additional allocation: in Cape Verde, Nepal and Nigeria, the bands 454-456 MHz and 459-460 MHz are also allocated to the mobile-satellite (Earth-to-space) service on a primary basis. (WRC-07)']), (455000000, 456000001): (False, True, True, False, False, ['Mobile [5.286Aa]', 'Mobile-Satellite (Earth-To-Space) [5.209][5.286A][5.286B][5.286C]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)']), (456000000, 459000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.271]: Additional allocation: in Belarus, China, India, Kyrgyzstan and Turkmenistan, the band 420-460 MHz is also allocated to the aeronautical radionavigation service (radio altimeters) on a secondary basis. (WRC-07)', '[5.287]: Use of the frequency bands 457.5125-457.5875 MHz and 467.5125-467.5875 MHz by the maritime mobile service is limited to on-board communication stations. The characteristics of the equipment and the channelling arrangement shall be in accordance with Recommendation ITU-R M.1174-3. The use of these frequency bands in territorial waters is subject to the national regulations of the administration concerned. (WRC-15)', '[5.288]: In the territorial waters of the United States and the Philippines, the preferred frequencies for use by on-board communication stations shall be 457.525 MHz, 457.550 MHz, 457.575 MHz and 457.600 MHz paired, respectively, with 467.750 MHz, 467.775 MHz, 467.800 MHz and 467.825 MHz. The characteristics of the equipment used shall conform to those specified in Recommendation ITU-R M.1174-3. (WRC-15)']), (459000000, 460000001): (False, True, True, False, False, ['Mobile [5.286Aa]', 'Mobile-Satellite (Earth-To-Space) [5.209][5.286A][5.286B][5.286C]'], [], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.209]: The use of the bands 137-138 MHz, 148-150.05 MHz, 399.9-400.05 MHz, 400.15-401 MHz, 454-456 MHz and 459-460 MHz by the mobile-satellite service is limited to non-geostationary-satellite systems. (WRC-97)', '[5.286A]: The use of the bands 454-456 MHz and 459-460 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. (WRC-97)', '[5.286B]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not cause harmful interference to, or claim protection from, stations of the fixed or mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)', '[5.286C]: The use of the band 454-455 MHz in the countries listed in No. 5.286D, 455-456 MHz and 459-460 MHz in Region 2, and 454-456 MHz and 459-460 MHz in the countries listed in No. 5.286E, by stations in the mobile-satellite service, shall not constrain the development and use of the fixed and mobile services operating in accordance with the Table of Frequency Allocations. (WRC-97)']), (460000000, 470000001): (False, True, True, False, False, ['Mobile [5.286Aa]'], ['Meteorological-Satellite (Space-To-Earth)'], ['[5.286AA]: The frequency band 450-470 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). See Resolution 224 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.287]: Use of the frequency bands 457.5125-457.5875 MHz and 467.5125-467.5875 MHz by the maritime mobile service is limited to on-board communication stations. The characteristics of the equipment and the channelling arrangement shall be in accordance with Recommendation ITU-R M.1174-3. The use of these frequency bands in territorial waters is subject to the national regulations of the administration concerned. (WRC-15)', '[5.288]: In the territorial waters of the United States and the Philippines, the preferred frequencies for use by on-board communication stations shall be 457.525 MHz, 457.550 MHz, 457.575 MHz and 457.600 MHz paired, respectively, with 467.750 MHz, 467.775 MHz, 467.800 MHz and 467.825 MHz. The characteristics of the equipment used shall conform to those specified in Recommendation ITU-R M.1174-3. (WRC-15)', '[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.290]: Different category of service: in Afghanistan, Azerbaijan, Belarus, China, the Russian Federation, Japan, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 460-470 MHz to the meteorological-satellite service (space-to-Earth) is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-12)']), (470000000, 512000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.292]: Different category of service: in Argentina, Uruguay and Venezuela, the allocation of the frequency band 470-512 MHz to the mobile service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-15)', '[5.293]: Different category of service: in Canada, Chile, Cuba, the United States, Guyana, Jamaica and Panama, the allocation of the frequency bands 470-512 MHz and 614-806 MHz to the fixed service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. In the Bahamas, Barbados, Canada, Chile, Cuba, the United States, Guyana, Jamaica, Mexico and Panama, the allocation of the frequency bands 470-512 MHz and 614-698 MHz to the mobile service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. In Argentina and Ecuador, the allocation of the frequency band 470-512 MHz to the fixed and mobile services is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-15)', '[5.295]: In the Bahamas, Barbados, Canada, the United States and Mexico, the frequency band 470-608 MHz, or portions thereof, is identified for International Mobile Telecommunications (IMT) – see Resolution 224 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. Mobile service stations of the IMT system within the frequency band are subject to agreement obtained under No. 9.21 and shall not cause harmful interference to, or claim protection from, the broadcasting service of neighbouring countries. Nos. 5.43 and 5.43A apply. In Mexico, the use of IMT in this frequency band will not start before 31 December 2018 and may be extended if agreed by the neighbouring countries. (WRC-15)']), (512000000, 608000001): (False, False, False, True, False, ['Broadcasting'], [], ['[5.295]: In the Bahamas, Barbados, Canada, the United States and Mexico, the frequency band 470-608 MHz, or portions thereof, is identified for International Mobile Telecommunications (IMT) – see Resolution 224 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. Mobile service stations of the IMT system within the frequency band are subject to agreement obtained under No. 9.21 and shall not cause harmful interference to, or claim protection from, the broadcasting service of neighbouring countries. Nos. 5.43 and 5.43A apply. In Mexico, the use of IMT in this frequency band will not start before 31 December 2018 and may be extended if agreed by the neighbouring countries. (WRC-15)', '[5.297]: Additional allocation: in Canada, Costa Rica, Cuba, El Salvador, the United States, Guatemala, Guyana and Jamaica, the frequency band 512-608 MHz is also allocated to the fixed and mobile services on a primary basis, subject to agreement obtained under No. 9.21. In the Bahamas, Barbados and Mexico, the frequency band 512-608 MHz is also allocated to the mobile service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-15)']), (608000000, 614000001): (False, False, False, False, False, ['Radio Astronomy'], ['Mobile-Satellite Except Aeronautical Mobile-Satellite (Earth-To-Space)'], []), (614000000, 698000001): (False, True, True, True, False, ['Broadcasting'], [], ['[5.293]: Different category of service: in Canada, Chile, Cuba, the United States, Guyana, Jamaica and Panama, the allocation of the frequency bands 470-512 MHz and 614-806 MHz to the fixed service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. In the Bahamas, Barbados, Canada, Chile, Cuba, the United States, Guyana, Jamaica, Mexico and Panama, the allocation of the frequency bands 470-512 MHz and 614-698 MHz to the mobile service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. In Argentina and Ecuador, the allocation of the frequency band 470-512 MHz to the fixed and mobile services is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-15)', '[5.308]: Additional allocation: in Belize and Colombia, the frequency band 614-698 MHz is also allocated to the mobile service on a primary basis. Stations of the mobile service within the frequency band are subject to agreement obtained under No. 9.21. (WRC-15)', '[5.308A]: In the Bahamas, Barbados, Belize, Canada, Colombia, the United States and Mexico, the frequency band 614-698 MHz, or portions thereof, is identified for International Mobile Telecommunications (IMT) – see Resolution 224 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. Mobile service stations of the IMT system within the frequency band are subject to agreement obtained under No. 9.21 and shall not cause harmful interference to or claim protection from the broadcasting service of neighbouring countries. Nos. 5.43 and 5.43A apply. In Belize and Mexico, the use of IMT in this frequency band will not start before 31 December 2018 and may be extended if agreed by the neighbouring countries. (WRC-15)', '[5.309]: Different category of service: in El Salvador, the allocation of the frequency band 614-806 MHz to the fixed service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-15)', '[5.311A]: For the frequency band 620-790 MHz, see also Resolution 549 (WRC-07). (WRC-07)']), (698000000, 806000001): (False, True, True, True, False, ['Mobile [5.317A]', 'Broadcasting'], [], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.293]: Different category of service: in Canada, Chile, Cuba, the United States, Guyana, Jamaica and Panama, the allocation of the frequency bands 470-512 MHz and 614-806 MHz to the fixed service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. In the Bahamas, Barbados, Canada, Chile, Cuba, the United States, Guyana, Jamaica, Mexico and Panama, the allocation of the frequency bands 470-512 MHz and 614-698 MHz to the mobile service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. In Argentina and Ecuador, the allocation of the frequency band 470-512 MHz to the fixed and mobile services is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-15)', '[5.309]: Different category of service: in El Salvador, the allocation of the frequency band 614-806 MHz to the fixed service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21. (WRC-15)', '[5.311A]: For the frequency band 620-790 MHz, see also Resolution 549 (WRC-07). (WRC-07)']), (806000000, 890000001): (False, False, False, False, False, ['(Fixed)', '(Mobile,5.317A)', '(Broadcasting)'], [], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.317]: Additional allocation: in Region 2 (except Brazil, the United States and Mexico), the frequency band 806-890 MHz is also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21. The use of this service is intended for operation within national boundaries. (WRC-15)', '[5.318]: Additional allocation: in Canada, the United States and Mexico, the bands 849-851 MHz and 894-896 MHz are also allocated to the aeronautical mobile service on a primary basis, for public correspondence with aircraft. The use of the band 849-851 MHz is limited to transmissions from aeronautical stations and the use of the band 894-896 MHz is limited to transmissions from aircraft stations.']), (890000000, 902000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.317A]'], ['Radiolocation'], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.318]: Additional allocation: in Canada, the United States and Mexico, the bands 849-851 MHz and 894-896 MHz are also allocated to the aeronautical mobile service on a primary basis, for public correspondence with aircraft. The use of the band 849-851 MHz is limited to transmissions from aeronautical stations and the use of the band 894-896 MHz is limited to transmissions from aircraft stations.', '[5.325]: Different category of service: in the United States, the allocation of the band 890-942 MHz to the radiolocation service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21.']), (902000000, 928000001): (True, True, True, False, False, [], ['Amateur', 'Mobile Except Aeronautical Mobile [5.325A]', 'Radiolocation'], ['[5.325A]: Different category of service: in Argentina, Brazil, Costa Rica, Cuba, Dominican Republic, El Salvador, Ecuador, the French overseas departments and communities in Region 2, Guatemala, Mexico, Paraguay, Uruguay and Venezuela, the frequency band 902-928 MHz is allocated to the land mobile service on a primary basis. In Colombia, the frequency band 902-905 MHz is allocated to the land mobile service on a primary basis. (WRC-15)', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.325]: Different category of service: in the United States, the allocation of the band 890-942 MHz to the radiolocation service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21.', '[5.326]: Different category of service: in Chile, the band 903-905 MHz is allocated to the mobile, except aeronautical mobile, service on a primary basis, subject to agreement obtained under No. 9.21.']), (928000000, 942000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile [5.317A]'], ['Radiolocation [5.325]'], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.325]: Different category of service: in the United States, the allocation of the band 890-942 MHz to the radiolocation service is on a primary basis (see No. 5.33), subject to agreement obtained under No. 9.21.']), (942000000, 960000001): (False, True, True, False, False, ['Mobile [5.317A]'], [], ['[5.317A]: The parts of the frequency band 698-960 MHz in Region 2 and the frequency bands 694-790 MHz in Region 1 and 790-960 MHz in Regions 1 and 3 which are allocated to the mobile service on a primary basis are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) – see Resolutions 224 (Rev.WRC-15), 760 (WRC-15) and 749 (Rev.WRC-15), where applicable. This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)']), (960000000, 1164000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.327A]', 'Aeronautical Radionavigation [5.328]'], [], ['[5.327A]: The use of the frequency band 960-1 164 MHz by the aeronautical mobile (R) service is limited to systems that operate in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 417 (Rev.WRC-15). (WRC-15)', '[5.328]: The use of the band 960-1 215 MHz by the aeronautical radionavigation service is reserved on a worldwide basis for the operation and development of airborne electronic aids to air navigation and any directly associated ground-based facilities. (WRC-2000)', '[5.328AA]: The frequency band 1 087.7-1 092.3 MHz is also allocated to the aeronautical mobile-satellite (R) service (Earth-to-space) on a primary basis, limited to the space station reception of Automatic Dependent Surveillance-Broadcast (ADS-B) emissions from aircraft transmitters that operate in accordance with recognized international aeronautical standards. Stations operating in the aeronautical mobile-satellite (R) service shall not claim protection from stations operating in the aeronautical radionavigation service. Resolution 425 (WRC-15) shall apply. (WRC-15)']), (1164000000, 1215000001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.328]', 'Radionavigation-Satellite (Space-To-Earth) [5.328B]', 'Radionavigation-Satellite (Space-To-Space) [5.328B]'], [], ['[5.328]: The use of the band 960-1 215 MHz by the aeronautical radionavigation service is reserved on a worldwide basis for the operation and development of airborne electronic aids to air navigation and any directly associated ground-based facilities. (WRC-2000)', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.328A]: Stations in the radionavigation-satellite service in the band 1 164-1 215 MHz shall operate in accordance with the provisions of Resolution 609 (Rev.WRC-07) and shall not claim protection from stations in the aeronautical radionavigation service in the band 960-1 215 MHz. No. 5.43A does not apply. The provisions of No. 21.18 shall apply. (WRC-07)']), (1215000000, 1240000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation-Satellite (Space-To-Earth) [5.328B][5.329][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.328B][5.329][5.329A]', 'Space Research (Active)'], [], ['[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329]: Use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to, and no protection is claimed from, the radionavigation service authorized under No. 5.331. Furthermore, the use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to the radiolocation service. No. 5.43 shall not apply in respect of the radiolocation service. Resolution 608 (WRC-03)* shall apply. (WRC-03)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.330]: Additional allocation: in Angola, Saudi Arabia, Bahrain, Bangladesh, Cameroon, China, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Nepal, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the band 1 215-1 300 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.331]: Additional allocation: in Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Belarus, Belgium, Benin, Bosnia and Herzegovina, Brazil, Burkina Faso, Burundi, Cameroon, China, Korea (Rep. of), Croatia, Denmark, Egypt, the United Arab Emirates, Estonia, the Russian Federation, Finland, France, Ghana, Greece, Guinea, Equatorial Guinea, Hungary, India, Indonesia, Iran (Islamic Republic of), Iraq, Ireland, Israel, Jordan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Mauritania, Montenegro, Nigeria, Norway, Oman, Pakistan, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sudan, South Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Thailand, Togo, Turkey, Venezuela and Viet Nam, the band 1 215-1 300 MHz is also allocated to the radionavigation service on a primary basis. In Canada and the United States, the band 1 240-1 300 MHz is also allocated to the radionavigation service, and use of the radionavigation service shall be limited to the aeronautical radionavigation service. (WRC-12)', '[5.332]: In the band 1 215-1 260 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service, the radionavigation-satellite service and other services allocated on a primary basis. (WRC-2000)']), (1240000000, 1300000001): (True, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation-Satellite (Space-To-Earth) [5.328B][5.329][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.328B][5.329][5.329A]', 'Space Research (Active)'], ['Amateur'], ['[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329]: Use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to, and no protection is claimed from, the radionavigation service authorized under No. 5.331. Furthermore, the use of the radionavigation-satellite service in the band 1 215-1 300 MHz shall be subject to the condition that no harmful interference is caused to the radiolocation service. No. 5.43 shall not apply in respect of the radiolocation service. Resolution 608 (WRC-03)* shall apply. (WRC-03)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.330]: Additional allocation: in Angola, Saudi Arabia, Bahrain, Bangladesh, Cameroon, China, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Nepal, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the band 1 215-1 300 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.331]: Additional allocation: in Algeria, Germany, Saudi Arabia, Australia, Austria, Bahrain, Belarus, Belgium, Benin, Bosnia and Herzegovina, Brazil, Burkina Faso, Burundi, Cameroon, China, Korea (Rep. of), Croatia, Denmark, Egypt, the United Arab Emirates, Estonia, the Russian Federation, Finland, France, Ghana, Greece, Guinea, Equatorial Guinea, Hungary, India, Indonesia, Iran (Islamic Republic of), Iraq, Ireland, Israel, Jordan, Kenya, Kuwait, The Former Yugoslav Republic of Macedonia, Lesotho, Latvia, Lebanon, Liechtenstein, Lithuania, Luxembourg, Madagascar, Mali, Mauritania, Montenegro, Nigeria, Norway, Oman, Pakistan, the Netherlands, Poland, Portugal, Qatar, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the United Kingdom, Serbia, Slovenia, Somalia, Sudan, South Sudan, Sri Lanka, South Africa, Sweden, Switzerland, Thailand, Togo, Turkey, Venezuela and Viet Nam, the band 1 215-1 300 MHz is also allocated to the radionavigation service on a primary basis. In Canada and the United States, the band 1 240-1 300 MHz is also allocated to the radionavigation service, and use of the radionavigation service shall be limited to the aeronautical radionavigation service. (WRC-12)', '[5.332]: In the band 1 215-1 260 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service, the radionavigation-satellite service and other services allocated on a primary basis. (WRC-2000)', '[5.335]: In Canada and the United States in the band 1 240-1 300 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause interference to, claim protection from, or otherwise impose constraints on operation or development of the aeronautical radionavigation service. (WRC-97)', '[5.335A]: In the band 1 260-1 300 MHz, active spaceborne sensors in the Earth exploration-satellite and space research services shall not cause harmful interference to, claim protection from, or otherwise impose constraints on operation or development of the radiolocation service and other services allocated by footnotes on a primary basis. (WRC-2000)']), (1300000000, 1350000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.337]', 'Radionavigation-Satellite (Earth-To-Space)'], [], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.337A]: The use of the band 1 300-1 350 MHz by earth stations in the radionavigation-satellite service and by stations in the radiolocation service shall not cause harmful interference to, nor constrain the operation and development of, the aeronautical-radionavigation service. (WRC-2000)']), (1350000000, 1400000001): (False, False, False, False, False, ['Radiolocation [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.334]: Additional allocation: in Canada and the United States, the band 1 350-1 370 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-03)', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.']), (1400000000, 1427000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1427000000, 1429000001): (False, True, True, False, False, ['Space Operation (Earth-To-Space)', 'Mobile Except Aeronautical Mobile [5.341A][5.341B][5.341C]'], [], ['[5.341A]: In Region 1, the frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any other application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of IMT stations is subject to agreement obtained under No. 9.21 with respect to the aeronautical mobile service used for aeronautical telemetry in accordance with No. 5.342. (WRC-15)', '[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.341C]: The frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). The use of these frequency bands by the above administrations for the implementation of IMT in the frequency bands 1 429-1 452 MHz and 1 492-1 518 MHz is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of these frequency bands by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1429000000, 1452000001): (False, True, True, False, False, ['Mobile [5.341B][5.341C][5.343]'], [], ['[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.341C]: The frequency bands 1 427-1 452 MHz and 1 492-1 518 MHz are identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). The use of these frequency bands by the above administrations for the implementation of IMT in the frequency bands 1 429-1 452 MHz and 1 492-1 518 MHz is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of these frequency bands by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1452000000, 1492000001): (False, True, True, True, False, ['Mobile [5.341B][5.343][5.346A]', 'Broadcasting', 'Broadcasting-Satellite [5.208B]'], [], ['[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.346A]: The frequency band 1 452-1 492 MHz is identified for use by administrations in Region 3 wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15) and Resolution 761 (WRC-15). The use of this frequency band by the above administrations for the implementation of IMT is subject to agreement obtained under No. 9.21 from countries using stations of the aeronautical mobile service. This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.344]: Alternative allocation: in the United States, the band 1 452-1 525 MHz is allocated to the fixed and mobile services on a primary basis (see also No. 5.343).', '[5.345]: Use of the band 1 452-1 492 MHz by the broadcasting-satellite service, and by the broadcasting service, is limited to digital audio broadcasting and is subject to the provisions of Resolution 528 (WARC-92)*.']), (1492000000, 1518000001): (False, True, True, False, False, ['Mobile [5.341B][5.343]'], [], ['[5.341B]: In Region 2, the frequency band 1 427-1 518 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of this frequency band by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.344]: Alternative allocation: in the United States, the band 1 452-1 525 MHz is allocated to the fixed and mobile services on a primary basis (see also No. 5.343).']), (1518000000, 1525000001): (False, True, True, False, False, ['Mobile [5.343]', 'Mobile-Satellite (Space-To-Earth) [5.348][5.348A][5.348B][5.351A]'], [], ['[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.348]: The use of the band 1 518-1 525 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 518-1 525 MHz stations in the mobile-satellite service shall not claim protection from the stations in the fixed service. No. 5.43A does not apply. (WRC-03)', '[5.348A]: In the band 1 518-1 525 MHz, the coordination threshold in terms of the power flux-density levels at the surface of the Earth in application of No. 9.11A for space stations in the mobile-satellite (space-to-Earth) service, with respect to the land mobile service use for specialized mobile radios or used in conjunction with public switched telecommunication networks (PSTN) operating within the territory of Japan, shall be –150 dB(W/m2) in any 4 kHz band for all angles of arrival, instead of those given in Table 5-2 of Appendix 5. In the band 1 518-1 525 MHz stations in the mobile-satellite service shall not claim protection from stations in the mobile service in the territory of Japan. No. 5.43A does not apply. (WRC-03)', '[5.348B]: In the band 1 518-1 525 MHz, stations in the mobile-satellite service shall not claim protection from aeronautical mobile telemetry stations in the mobile service in the territory of the United States (see Nos. 5.343 and 5.344) and in the countries listed in No. 5.342. No. 5.43A does not apply. (WRC-03)', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.344]: Alternative allocation: in the United States, the band 1 452-1 525 MHz is allocated to the fixed and mobile services on a primary basis (see also No. 5.343).']), (1525000000, 1530000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208B][5.351A]'], ['Earth Exploration-Satellite', 'Mobile [5.343]'], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.']), (1530000000, 1535000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth) [5.208B][5.351A][5.353A]'], ['Earth Exploration-Satellite', 'Mobile [5.343]'], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.343]: In Region 2, the use of the band 1 435-1 535 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile service.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.']), (1535000000, 1559000001): (False, False, False, False, False, ['Mobile-Satellite (Space-To-Earth) [5.208B][5.351A]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.356]: The use of the band 1 544-1 545 MHz by the mobile-satellite service (space-to-Earth) is limited to distress and safety communications (see Article 31).', '[5.357]: Transmissions in the band 1 545-1 555 MHz from terrestrial aeronautical stations directly to aircraft stations, or between aircraft stations, in the aeronautical mobile (R) service are also authorized when such transmissions are used to extend or supplement the satellite-to-aircraft links.', '[5.357A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the frequency bands 1 545-1 555 MHz and 1 646.5-1 656.5 MHz, priority shall be given to accommodating the spectrum requirements of the aeronautical mobile-satellite (R) service providing transmission of messages with priority 1 to 6 in Article 44. Aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44 shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (Rev.WRC-12)* shall apply.) (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)']), (1559000000, 1610000001): (False, False, False, False, False, ['Aeronautical Radionavigation', 'Radionavigation-Satellite (Space-To-Earth) [5.208B][5.328B][5.329A]', 'Radionavigation-Satellite (Space-To-Space) [5.208B][5.328B][5.329A]'], [], ['[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.329A]: Use of systems in the radionavigation-satellite service (space-to-space) operating in the bands 1 215-1 300 MHz and 1 559-1 610 MHz is not intended to provide safety service applications, and shall not impose any additional constraints on radionavigation-satellite service (space-to-Earth) systems or on other services operating in accordance with the Table of Frequency Allocations. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1610000000, 1610600001): (False, False, False, False, True, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Aeronautical Radionavigation', 'Radiodetermination- Satellite (Earth-To-Space)'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.370]: Different category of service: in Venezuela, the allocation to the radiodetermination-satellite service in the band 1 610-1 626.5 MHz (Earth-to-space) is on a secondary basis.', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1610600000, 1613800001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Radio Astronomy', 'Aeronautical Radionavigation', 'Radiodetermination-Satellite (Earth-To-Space)'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.370]: Different category of service: in Venezuela, the allocation to the radiodetermination-satellite service in the band 1 610-1 626.5 MHz (Earth-to-space) is on a secondary basis.', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1613800000, 1626500001): (False, False, False, False, True, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Aeronautical Radionavigation', 'Radiodetermination- Satellite (Earth-To-Space)'], ['Mobile-Satellite (Space-To-Earth) [5.208B]'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.364]: The use of the band 1 610-1 626.5 MHz by the mobile-satellite service (Earth-to-space) and by the radiodetermination-satellite service (Earth-to-space) is subject to coordination under No. 9.11A. A mobile earth station operating in either of the services in this band shall not produce a peak e.i.r.p. density in excess of -15 dB(W/4 kHz) in the part of the band used by systems operating in accordance with the provisions of No. 5.366 (to which No. 4.10 applies), unless otherwise agreed by the affected administrations. In the part of the band where such systems are not operating, the mean e.i.r.p. density of a mobile earth station shall not exceed –3 dB(W/4 kHz). Stations of the mobile-satellite service shall not claim protection from stations in the aeronautical radionavigation service, stations operating in accordance with the provisions of No. 5.366 and stations in the fixed service operating in accordance with the provisions of No. 5.359. Administrations responsible for the coordination of mobile-satellite networks shall make all practicable efforts to ensure protection of stations operating in accordance with the provisions of No. 5.366.', '[5.365]: The use of the band 1 613.8-1 626.5 MHz by the mobile-satellite service (space-to-Earth) is subject to coordination under No. 9.11A.', '[5.366]: The band 1 610-1 626.5 MHz is reserved on a worldwide basis for the use and development of airborne electronic aids to air navigation and any directly associated ground-based or satellite-borne facilities. Such satellite use is subject to agreement obtained under No. 9.21.', '[5.367]: Additional allocation: The frequency band 1 610-1 626.5 MHz is also allocated to the aeronautical mobile-satellite (R) service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.368]: With respect to the radiodetermination-satellite and mobile-satellite services the provisions of No. 4.10 do not apply in the band 1 610-1 626.5 MHz, with the exception of the aeronautical radionavigation-satellite service.', '[5.370]: Different category of service: in Venezuela, the allocation to the radiodetermination-satellite service in the band 1 610-1 626.5 MHz (Earth-to-space) is on a secondary basis.', '[5.372]: Harmful interference shall not be caused to stations of the radio astronomy service using the band 1 610.6-1 613.8 MHz by stations of the radiodetermination-satellite and mobile-satellite services (No. 29.13 applies).']), (1626500000, 1660000001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.353A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the bands 1 530-1 544 MHz and 1 626.5-1 645.5 MHz, priority shall be given to accommodating the spectrum requirements for distress, urgency and safety communications of the Global Maritime Distress and Safety System (GMDSS). Maritime mobile-satellite distress, urgency and safety communications shall have priority access and immediate availability over all other mobile satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, distress, urgency and safety communications of the GMDSS. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (WRC-2000)* shall apply.) (WRC-2000)', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.355]: Additional allocation: in Bahrain, Bangladesh, Congo (Rep. of the), Djibouti, Egypt, Eritrea, Iraq, Israel, Kuwait, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the bands 1 540-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.357A]: In applying the procedures of Section II of Article 9 to the mobile-satellite service in the frequency bands 1 545-1 555 MHz and 1 646.5-1 656.5 MHz, priority shall be given to accommodating the spectrum requirements of the aeronautical mobile-satellite (R) service providing transmission of messages with priority 1 to 6 in Article 44. Aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44 shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (The provisions of Resolution 222 (Rev.WRC-12)* shall apply.) (WRC-12)', '[5.359]: Additional allocation: in Germany, Saudi Arabia, Armenia, Azerbaijan, Belarus, Benin, Cameroon, the Russian Federation, France, Georgia, Guinea, Guinea-Bissau, Jordan, Kazakhstan, Kuwait, Lithuania, Mauritania, Uganda, Uzbekistan, Pakistan, Poland, the Syrian Arab Republic, Kyrgyzstan, the Dem. People’s Rep. of Korea, Romania, Tajikistan, Tunisia, Turkmenistan and Ukraine, the frequency bands 1 550-1 559 MHz, 1 610-1 645.5 MHz and 1 646.5-1 660 MHz are also allocated to the fixed service on a primary basis. Administrations are urged to make all practicable efforts to avoid the implementation of new fixed-service stations in these frequency bands. (WRC-15)', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)', '[5.374]: Mobile earth stations in the mobile-satellite service operating in the bands 1 631.5-1 634.5 MHz and 1 656.5-1 660 MHz shall not cause harmful interference to stations in the fixed service operating in the countries listed in No. 5.359. (WRC-97)', '[5.375]: The use of the band 1 645.5-1 646.5 MHz by the mobile-satellite service (Earth-to-space) and for inter-satellite links is limited to distress and safety communications (see Article 31).', '[5.376]: Transmissions in the band 1 646.5-1 656.5 MHz from aircraft stations in the aeronautical mobile (R) service directly to terrestrial aeronautical stations, or between aircraft stations, are also authorized when such transmissions are used to extend or supplement the aircraft-to-satellite links.']), (1660000000, 1660500001): (False, False, False, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]', 'Radio Astronomy'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.351]: The bands 1 525-1 544 MHz, 1 545-1 559 MHz, 1 626.5-1 645.5 MHz and 1 646.5-1 660.5 MHz shall not be used for feeder links of any service. In exceptional circumstances, however, an earth station at a specified fixed point in any of the mobile-satellite services may be authorized by an administration to communicate via space stations using these bands.', '[5.354]: The use of the bands 1 525-1 559 MHz and 1 626.5-1 660.5 MHz by the mobile-satellite services is subject to coordination under No. 9.11A.', '[5.362A]: In the United States, in the bands 1 555-1 559 MHz and 1 656.5-1 660.5 MHz, the aeronautical mobile-satellite (R) service shall have priority access and immediate availability, by pre-emption if necessary, over all other mobile-satellite communications operating within a network. Mobile-satellite systems shall not cause unacceptable interference to, or claim protection from, aeronautical mobile-satellite (R) service communications with priority 1 to 6 in Article 44. Account shall be taken of the priority of safety-related communications in the other mobile-satellite services. (WRC-97)', '[5.376A]: Mobile earth stations operating in the band 1 660-1 660.5 MHz shall not cause harmful interference to stations in the radio astronomy service. (WRC-97)']), (1660500000, 1668000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379]: Additional allocation: in Bangladesh, India, Indonesia, Nigeria and Pakistan, the band 1 660.5-1 668.4 MHz is also allocated to the meteorological aids service on a secondary basis.', '[5.379A]: Administrations are urged to give all practicable protection in the band 1 660.5-1 668.4 MHz for future research in radio astronomy, particularly by eliminating air-to-ground transmissions in the meteorological aids service in the band 1 664.4-1 668.4 MHz as soon as practicable.']), (1668000000, 1668400001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A][5.379B][5.379C]', 'Radio Astronomy', 'Space Research (Passive)'], ['Mobile Except Aeronautical Mobile'], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.379C]: In order to protect the radio astronomy service in the band 1 668-1 670 MHz, the aggregate power flux-density values produced by mobile earth stations in a network of the mobile-satellite service operating in this band shall not exceed –181 dB(W/m2) in 10 MHz and -194 dB(W/m2) in any 20 kHz at any radio astronomy station recorded in the Master International Frequency Register, for more than 2% of integration periods of 2 000 s. (WRC-03)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379]: Additional allocation: in Bangladesh, India, Indonesia, Nigeria and Pakistan, the band 1 660.5-1 668.4 MHz is also allocated to the meteorological aids service on a secondary basis.', '[5.379A]: Administrations are urged to give all practicable protection in the band 1 660.5-1 668.4 MHz for future research in radio astronomy, particularly by eliminating air-to-ground transmissions in the meteorological aids service in the band 1 664.4-1 668.4 MHz as soon as practicable.']), (1668400000, 1670000001): (False, True, True, False, False, ['Meteorological Aids', 'Mobile Except Aeronautical Mobile', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.379B][5.379C]', 'Radio Astronomy'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.379C]: In order to protect the radio astronomy service in the band 1 668-1 670 MHz, the aggregate power flux-density values produced by mobile earth stations in a network of the mobile-satellite service operating in this band shall not exceed –181 dB(W/m2) in 10 MHz and -194 dB(W/m2) in any 20 kHz at any radio astronomy station recorded in the Master International Frequency Register, for more than 2% of integration periods of 2 000 s. (WRC-03)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379D]: For sharing of the band 1 668.4-1 675 MHz between the mobile-satellite service and the fixed and mobile services, Resolution 744 (Rev.WRC-07) shall apply. (WRC-07)', '[5.379E]: In the band 1 668.4-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to stations in the meteorological aids service in China, Iran (Islamic Republic of), Japan and Uzbekistan. In the band 1 668.4-1 675 MHz, administrations are urged not to implement new systems in the meteorological aids service and are encouraged to migrate existing meteorological aids service operations to other bands as soon as practicable. (WRC-03)']), (1670000000, 1675000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile-Satellite (Earth-To-Space) [5.351A][5.379B]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.379B]: The use of the band 1 668-1 675 MHz by the mobile-satellite service is subject to coordination under No. 9.11A. In the band 1 668-1 668.4 MHz, Resolution 904 (WRC-07) shall apply. (WRC-07)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.379D]: For sharing of the band 1 668.4-1 675 MHz between the mobile-satellite service and the fixed and mobile services, Resolution 744 (Rev.WRC-07) shall apply. (WRC-07)', '[5.379E]: In the band 1 668.4-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to stations in the meteorological aids service in China, Iran (Islamic Republic of), Japan and Uzbekistan. In the band 1 668.4-1 675 MHz, administrations are urged not to implement new systems in the meteorological aids service and are encouraged to migrate existing meteorological aids service operations to other bands as soon as practicable. (WRC-03)', '[5.380A]: In the band 1 670-1 675 MHz, stations in the mobile-satellite service shall not cause harmful interference to, nor constrain the development of, existing earth stations in the meteorological-satellite service notified before 1 January 2004. Any new assignment to these earth stations in this band shall also be protected from harmful interference from stations in the mobile-satellite service. (WRC-07)']), (1675000000, 1690000001): (False, True, True, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1690000000, 1700000001): (False, False, False, False, False, ['Meteorological Aids', 'Meteorological-Satellite (Space-To-Earth)'], [], ['[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.381]: Additional allocation: in Afghanistan, Cuba, India, Iran (Islamic Republic of) and Pakistan, the band 1 690-1 700 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. (WRC-12)']), (1700000000, 1710000001): (False, True, True, False, False, ['Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.289]: Earth exploration-satellite service applications, other than the meteorological-satellite service, may also be used in the bands 460-470 MHz and 1 690-1 710 MHz for space-to-Earth transmissions subject to not causing harmful interference to stations operating in accordance with the Table.', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (1710000000, 1930000001): (False, True, True, False, False, ['Mobile [5.384A][5.388A][5.388B]'], [], ['[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.385]: Additional allocation: the band 1 718.8-1 722.2 MHz is also allocated to the radio astronomy service on a secondary basis for spectral line observations. (WRC-2000)', '[5.386]: Additional allocation: the frequency band 1 750-1 850 MHz is also allocated to the space operation (Earth-to-space) and space research (Earth-to-space) services in Region 2 (except in Mexico), in Australia, Guam, India, Indonesia and Japan on a primary basis, subject to agreement obtained under No. 9.21, having particular regard to troposcatter systems. (WRC-15)', '[5.387]: Additional allocation: in Belarus, Georgia, Kazakhstan, Kyrgyzstan, Romania, Tajikistan and Turkmenistan, the band 1 770-1 790 MHz is also allocated to the meteorological-satellite service on a primary basis, subject to agreement obtained under No. 9.21. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1930000000, 1970000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1970000000, 1980000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (1980000000, 2010000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389A]: The use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389B]: The use of the band 1 980-1 990 MHz by the mobile-satellite service shall not cause harmful interference to or constrain the development of the fixed and mobile services in Argentina, Brazil, Canada, Chile, Ecuador, the United States, Honduras, Jamaica, Mexico, Peru, Suriname, Trinidad and Tobago, Uruguay and Venezuela.', '[5.389F]: In Algeria, Benin, Cape Verde, Egypt, Iran (Islamic Republic of), Mali, Syrian Arab Republic and Tunisia, the use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service shall neither cause harmful interference to the fixed and mobile services, nor hamper the development of those services prior to 1 January 2005, nor shall the former service request protection from the latter services. (WRC-2000)']), (2010000000, 2025000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space)'], [], ['[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389C]: The use of the bands 2 010-2 025 MHz and 2 160-2 170 MHz in Region 2 by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389E]: The use of the bands 2 010-2 025 MHz and 2 160-2 170 MHz by the mobile-satellite service in Region 2 shall not cause harmful interference to or constrain the development of the fixed and mobile services in Regions 1 and 3.']), (2025000000, 2110000001): (False, True, True, False, False, ['Space Operation (Earth-To-Space)', 'Space Operation (Space-To-Space)', 'Earth Exploration-Satellite (Earth-To-Space)', 'Earth Exploration-Satellite (Space-To-Space)', 'Mobile [5.391]', 'Space Research (Earth-To-Space)', 'Space Research (Space-To-Space)'], [], ['[5.391]: In making assignments to the mobile service in the frequency bands 2 025-2 110 MHz and 2 200-2 290 MHz, administrations shall not introduce high-density mobile systems, as described in Recommendation ITU-R SA.1154-0, and shall take that Recommendation into account for the introduction of any other type of mobile system. (WRC-15)', '[5.392]: Administrations are urged to take all practicable measures to ensure that space-to-space transmissions between two or more non-geostationary satellites, in the space research, space operations and Earth exploration-satellite services in the bands 2 025-2 110 MHz and 2 200-2 290 MHz, shall not impose any constraints on Earth-to-space, space-to-Earth and other space-to-space transmissions of those services and in those bands between geostationary and non-geostationary satellites.']), (2110000000, 2120000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]', 'Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2120000000, 2160000001): (False, True, True, False, False, ['Mobile [5.388A][5.388B]'], ['Mobile-Satellite (Space-To-Earth)'], ['[5.388A]: In Regions 1 and 3, the bands 1 885-1 980 MHz, 2 010-2 025 MHz and 2 110-2 170 MHz and, in Region 2, the bands 1 885-1 980 MHz and 2 110-2 160 MHz may be used by high altitude platform stations as base stations to provide International Mobile Telecommunications (IMT), in accordance with Resolution 221 (Rev.WRC-07). Their use by IMT applications using high altitude platform stations as base stations does not preclude the use of these bands by any station in the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-12)', '[5.388B]: In Algeria, Saudi Arabia, Bahrain, Benin, Burkina Faso, Cameroon, Comoros, Côte d’Ivoire, China, Cuba, Djibouti, Egypt, United Arab Emirates, Eritrea, Ethiopia, Gabon, Ghana, India, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Libya, Mali, Morocco, Mauritania, Nigeria, Oman, Uganda, Pakistan, Qatar, the Syrian Arab Republic, Senegal, Singapore, Sudan, South Sudan, Tanzania, Chad, Togo, Tunisia, Yemen, Zambia and Zimbabwe, for the purpose of protecting fixed and mobile services, including IMT mobile stations, in their territories from co-channel interference, a high altitude platform station (HAPS) operating as an IMT base station in neighbouring countries, in the bands referred to in No. 5.388A, shall not exceed a co-channel power flux-density of −127 dB(W/(m2 · MHz)) at the Earth’s surface outside a country’s borders unless explicit agreement of the affected administration is provided at the time of the notification of HAPS. (WRC-12)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)']), (2160000000, 2170000001): (False, True, True, False, False, ['Mobile-Satellite (Space-To-Earth)'], [], ['[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389C]: The use of the bands 2 010-2 025 MHz and 2 160-2 170 MHz in Region 2 by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389E]: The use of the bands 2 010-2 025 MHz and 2 160-2 170 MHz by the mobile-satellite service in Region 2 shall not cause harmful interference to or constrain the development of the fixed and mobile services in Regions 1 and 3.']), (2170000000, 2200000001): (False, True, True, False, False, ['Mobile-Satellite (Space-To-Earth) [5.351A]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.388]: The frequency bands 1 885-2 025 MHz and 2 110-2 200 MHz are intended for use, on a worldwide basis, by administrations wishing to implement International Mobile Telecommunications (IMT). Such use does not preclude the use of these frequency bands by other services to which they are allocated. The frequency bands should be made available for IMT in accordance with Resolution 212 (Rev.WRC-15) (see also Resolution 223 (Rev.WRC-15)). (WRC-15)', '[5.389A]: The use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service is subject to coordination under No. 9.11A and to the provisions of Resolution 716 (Rev.WRC-2000)*. (WRC-07)', '[5.389F]: In Algeria, Benin, Cape Verde, Egypt, Iran (Islamic Republic of), Mali, Syrian Arab Republic and Tunisia, the use of the bands 1 980-2 010 MHz and 2 170-2 200 MHz by the mobile-satellite service shall neither cause harmful interference to the fixed and mobile services, nor hamper the development of those services prior to 1 January 2005, nor shall the former service request protection from the latter services. (WRC-2000)']), (2200000000, 2290000001): (False, True, True, False, False, ['Space Operation (Space-To-Earth)', 'Space Operation (Space-To-Space)', 'Earth Exploration-Satellite (Space-To-Earth)', 'Earth Exploration-Satellite (Space-To-Space)', 'Mobile [5.391]', 'Space Research (Space-To-Earth)', 'Space Research (Space-To-Space)'], [], ['[5.391]: In making assignments to the mobile service in the frequency bands 2 025-2 110 MHz and 2 200-2 290 MHz, administrations shall not introduce high-density mobile systems, as described in Recommendation ITU-R SA.1154-0, and shall take that Recommendation into account for the introduction of any other type of mobile system. (WRC-15)', '[5.392]: Administrations are urged to take all practicable measures to ensure that space-to-space transmissions between two or more non-geostationary satellites, in the space research, space operations and Earth exploration-satellite services in the bands 2 025-2 110 MHz and 2 200-2 290 MHz, shall not impose any constraints on Earth-to-space, space-to-Earth and other space-to-space transmissions of those services and in those bands between geostationary and non-geostationary satellites.']), (2290000000, 2300000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], []), (2300000000, 2450000001): (True, True, True, False, False, ['Mobile [5.384A]', 'Radiolocation'], ['Amateur'], ['[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.393]: Additional allocation: in Canada, the United States and India, the frequency band 2 310-2 360 MHz is also allocated to the broadcasting-satellite service (sound) and complementary terrestrial sound broadcasting service on a primary basis. Such use is limited to digital audio broadcasting and is subject to the provisions of Resolution 528 (Rev.WRC-15), with the exception of resolves 3 in regard to the limitation on broadcasting-satellite systems in the upper 25 MHz. (WRC-15)', '[5.394]: In the United States, the use of the band 2 300-2 390 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile services. In Canada, the use of the band 2 360-2 400 MHz by the aeronautical mobile service for telemetry has priority over other uses by the mobile services. (WRC-07)', '[5.396]: Space stations of the broadcasting-satellite service in the band 2 310-2 360 MHz operating in accordance with No. 5.393 that may affect the services to which this band is allocated in other countries shall be coordinated and notified in accordance with Resolution 33 (Rev.WRC-97)*. Complementary terrestrial broadcasting stations shall be subject to bilateral coordination with neighbouring countries prior to their bringing into use.']), (2450000000, 2483500001): (False, True, True, False, False, ['Radiolocation'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (2483500000, 2500000001): (False, True, True, False, True, ['Mobile-Satellite (Space-To-Earth) [5.351A]', 'Radiolocation', 'Radiodetermination- Satellite (Space-To-Earth) [5.398]'], [], ['[5.351A]: For the use of the bands 1 518-1 544 MHz, 1 545-1 559 MHz, 1 610-1 645.5 MHz, 1 646.5-1 660.5 MHz, 1 668-1 675 MHz, 1 980-2 010 MHz, 2 170-2 200 MHz, 2 483.5-2 520 MHz and 2 670-2 690 MHz by the mobile-satellite service, see Resolutions 212 (Rev.WRC-07)* and 225 (Rev.WRC-07)**. (WRC-07)', '[5.398]: In respect of the radiodetermination-satellite service in the band 2 483.5-2 500 MHz, the provisions of No. 4.10 do not apply.', '[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.402]: The use of the band 2 483.5-2 500 MHz by the mobile-satellite and the radiodetermination-satellite services is subject to the coordination under No. 9.11A. Administrations are urged to take all practicable steps to prevent harmful interference to the radio astronomy service from emissions in the 2 483.5-2 500 MHz band, especially those caused by second-harmonic radiation that would fall into the 4 990-5 000 MHz band allocated to the radio astronomy service worldwide.']), (2500000000, 2520000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Space-To-Earth) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)']), (2520000000, 2655000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Space-To-Earth) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.413][5.416]'], [], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.', '[5.418B]: Use of the band 2 630-2 655 MHz by non-geostationary-satellite systems in the broadcasting-satellite service (sound), pursuant to No. 5.418, for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000, is subject to the application of the provisions of No. 9.12. (WRC-03)', '[5.418C]: Use of the band 2 630-2 655 MHz by geostationary-satellite networks for which complete Appendix 4 coordination information, or notification information, has been received after 2 June 2000 is subject to the application of the provisions of No. 9.13 with respect to non-geostationary-satellite systems in the broadcasting-satellite service (sound), pursuant to No. 5.418 and No. 22.2 does not apply. (WRC-03)']), (2655000000, 2670000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Earth-To-Space) [5.415]', 'Fixed-Satellite (Space-To-Earth) [5.415]', 'Mobile Except Aeronautical Mobile [5.384A]', 'Broadcasting-Satellite [5.413][5.416]'], ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.413]: In the design of systems in the broadcasting-satellite service in the bands between 2 500 MHz and 2 690 MHz, administrations are urged to take all necessary steps to protect the radio astronomy service in the band 2 690-2 700 MHz.', '[5.416]: The use of the band 2 520-2 670 MHz by the broadcasting-satellite service is limited to national and regional systems for community reception, subject to agreement obtained under No. 9.21. The provisions of No. 9.19 shall be applied by administrations in this band in their bilateral and multilateral negotiations. (WRC-07)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15)']), (2670000000, 2690000001): (False, True, True, False, False, ['Fixed [5.410]', 'Fixed-Satellite (Earth-To-Space) [5.208B][5.415]', 'Fixed-Satellite (Space-To-Earth) [5.208B][5.415]', 'Mobile Except Aeronautical Mobile [5.384A]'], ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], ['[5.410]: The band 2 500-2 690 MHz may be used for tropospheric scatter systems in Region 1, subject to agreement obtained under No. 9.21. No. 9.21 does not apply to tropospheric scatter links situated entirely outside Region 1. Administrations shall make all practicable efforts to avoid developing new tropospheric scatter systems in this band. When planning new tropospheric scatter radio-relay links in this band, all possible measures shall be taken to avoid directing the antennas of these links towards the geostationary-satellite orbit. (WRC-12)', '[5.208B]: * In the frequency bands:137-138 MHz, 387-390 MHz, 400.15-401 MHz, 1 452-1 492 MHz, 1 525-1 610 MHz, 1 613.8-1 626.5 MHz, 2 655-2 690 MHz, 21.4-22 GHz, Resolution 739 (Rev.WRC-15) applies. (WRC-15) ', '[5.415]: The use of the bands 2 500-2 690 MHz in Region 2 and 2 500-2 535 MHz and 2 655-2 690 MHz in Region 3 by the fixed-satellite service is limited to national and regional systems, subject to agreement obtained under No. 9.21, giving particular attention to the broadcasting-satellite service in Region 1. (WRC-07)', '[5.384A]: The frequency bands 1 710-1 885 MHz, 2 300-2 400 MHz and 2 500-2 690 MHz, or portions thereof, are identified for use by administrations wishing to implement International Mobile Telecommunications (IMT) in accordance with Resolution 223 (Rev.WRC-15). This identification does not preclude the use of these frequency bands by any application of the services to which they are allocated and does not establish priority in the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (2690000000, 2700000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', "[5.422]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, Brunei Darussalam, Congo (Rep. of the), Côte d'Ivoire, Cuba, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Gabon, Georgia, Guinea, Guinea-Bissau, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Mauritania, Mongolia, Montenegro, Nigeria, Oman, Pakistan, the Philippines, Qatar, Syrian Arab Republic, Kyrgyzstan, the Dem. Rep. of the Congo, Romania, Somalia, Tajikistan, Tunisia, Turkmenistan, Ukraine and Yemen, the band 2 690-2 700 MHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. Such use is limited to equipment in operation by 1 January 1985. (WRC-12)"]), (2700000000, 2900000001): (False, False, False, False, False, ['Aeronautical Radionavigation [5.337]'], ['Radiolocation'], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.423]: In the band 2 700-2 900 MHz, ground-based radars used for meteorological purposes are authorized to operate on a basis of equality with stations of the aeronautical radionavigation service.', '[5.424]: Additional allocation: in Canada, the band 2 850-2 900 MHz is also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars.']), (2900000000, 3100000001): (False, False, False, False, False, ['Radiolocation [5.424A]', 'Radionavigation [5.426]'], [], ['[5.424A]: In the band 2 900-3 100 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the radionavigation service. (WRC-03)', '[5.426]: The use of the band 2 900-3 100 MHz by the aeronautical radionavigation service is limited to ground-based radars.', '[5.425]: In the band 2 900-3 100 MHz, the use of the shipborne interrogator-transponder (SIT) system shall be confined to the sub-band 2 930 -2 950 MHz.', '[5.427]: In the bands 2 900-3 100 MHz and 9 300-9 500 MHz, the response from radar transponders shall not be capable of being confused with the response from radar beacons (racons) and shall not cause interference to ship or aeronautical radars in the radionavigation service, having regard, however, to No. 4.9.']), (3100000000, 3300000001): (False, False, False, False, False, ['Radiolocation'], ['Earth Exploration-Satellite (Active)', 'Space Research (Active)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.428]: Additional allocation: in Azerbaijan, Kyrgyzstan and Turkmenistan, the frequency band 3 100-3 300 MHz is also allocated to the radionavigation service on a primary basis. (WRC-15)']), (3300000000, 3400000001): (True, True, True, False, False, ['Radiolocation'], ['Amateur'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.429C]: Different category of service: in Argentina, Brazil, Colombia, Costa Rica, Ecuador, Guatemala, Mexico, Paraguay and Uruguay, the frequency band 3 300-3 400 MHz is allocated to the mobile, except aeronautical mobile, service on a primary basis. In Argentina, Brazil, Guatemala, Mexico and Paraguay, the frequency band 3 300-3 400 MHz is also allocated to the fixed service on a primary basis. Stations in the fixed and mobile services operating in the frequency band 3 300-3 400 MHz shall not cause harmful interference to, or claim protection from, stations operating in the radiolocation service. (WRC-15)', '[5.429D]: In the following countries in Region 2: Argentina, Colombia, Costa Rica, Ecuador, Mexico and Uruguay, the use of the frequency band 3 300-3 400 MHz is identified for the implementation of International Mobile Telecommunications (IMT). Such use shall be in accordance with Resolution 223 (Rev.WRC-15). This use in Argentina and Uruguay is subject to the application of No. 9.21. The use of the frequency band 3 300-3 400 MHz by IMT stations in the mobile service shall not cause harmful interference to, or claim protection from, systems in the radiolocation service, and administrations wishing to implement IMT shall obtain the agreement of neighbouring countries to protect operations within the radiolocation service. This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. (WRC-15)']), (3400000000, 3500000001): (True, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile [5.431A][5.431B]'], ['Amateur', 'Radiolocation [5.433]'], ['[5.431A]: In Region 2, the allocation of the frequency band 3 400-3 500 MHz to the mobile, except aeronautical mobile, service on a primary basis is subject to agreement obtained under No. 9.21. (WRC-15)', '[5.431B]: In Region 2, the frequency band 3 400-3 600 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. At the stage of coordination the provisions of Nos. 9.17 and 9.18 also apply. Before an administration brings into use a base or mobile station of an IMT system, it shall seek agreement under No. 9.21 with other administrations and ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 × 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station), with the assistance of the Bureau if so requested. In case of disagreement, the calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service, including IMT systems, in the frequency band 3 400-3 600 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-15)', '[5.433]: In Regions 2 and 3, in the band 3 400-3 600 MHz the radiolocation service is allocated on a primary basis. However, all administrations operating radiolocation systems in this band are urged to cease operations by 1985. Thereafter, administrations shall take all practicable steps to protect the fixed-satellite service and coordination requirements shall not be imposed on the fixed-satellite service.', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.']), (3500000000, 3600000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile [5.431B]'], ['Radiolocation [5.433]'], ['[5.431B]: In Region 2, the frequency band 3 400-3 600 MHz is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. At the stage of coordination the provisions of Nos. 9.17 and 9.18 also apply. Before an administration brings into use a base or mobile station of an IMT system, it shall seek agreement under No. 9.21 with other administrations and ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 × 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station), with the assistance of the Bureau if so requested. In case of disagreement, the calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service, including IMT systems, in the frequency band 3 400-3 600 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-15)', '[5.433]: In Regions 2 and 3, in the band 3 400-3 600 MHz the radiolocation service is allocated on a primary basis. However, all administrations operating radiolocation systems in this band are urged to cease operations by 1985. Thereafter, administrations shall take all practicable steps to protect the fixed-satellite service and coordination requirements shall not be imposed on the fixed-satellite service.']), (3600000000, 3700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile [5.434]'], ['Radiolocation [5.433]'], ['[5.434]: In Canada, Colombia, Costa Rica and the United States, the frequency band 3 600-3 700 MHz, or portions thereof, is identified for use by these administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. At the stage of coordination the provisions of Nos. 9.17 and 9.18 also apply. Before an administration brings into use a base or mobile station of an IMT system, it shall seek agreement under No. 9.21 with other administrations and ensure that the power flux-density (pfd) produced at 3 m above ground does not exceed −154.5 dB(W/(m2 ⋅ 4 kHz)) for more than 20% of time at the border of the territory of any other administration. This limit may be exceeded on the territory of any country whose administration has so agreed. In order to ensure that the pfd limit at the border of the territory of any other administration is met, the calculations and verification shall be made, taking into account all relevant information, with the mutual agreement of both administrations (the administration responsible for the terrestrial station and the administration responsible for the earth station), with the assistance of the Bureau if so requested. In case of disagreement, the calculation and verification of the pfd shall be made by the Bureau, taking into account the information referred to above. Stations of the mobile service, including IMT systems, in the frequency band 3 600-3 700 MHz shall not claim more protection from space stations than that provided in Table 21-4 of the Radio Regulations (Edition of 2004). (WRC-15)', '[5.433]: In Regions 2 and 3, in the band 3 400-3 600 MHz the radiolocation service is allocated on a primary basis. However, all administrations operating radiolocation systems in this band are urged to cease operations by 1985. Thereafter, administrations shall take all practicable steps to protect the fixed-satellite service and coordination requirements shall not be imposed on the fixed-satellite service.']), (3700000000, 4200000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], []), (4200000000, 4400000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.436]', 'Aeronautical Radionavigation [5.438]'], [], ['[5.436]: Use of the frequency band 4 200-4 400 MHz by stations in the aeronautical mobile (R) service is reserved exclusively for wireless avionics intra-communication systems that operate in accordance with recognized international aeronautical standards. Such use shall be in accordance with Resolution 424 (WRC-15). (WRC-15)', '[5.438]: Use of the frequency band 4 200-4 400 MHz by the aeronautical radionavigation service is reserved exclusively for radio altimeters installed on board aircraft and for the associated transponders on the ground. (WRC-15)', '[5.437]: Passive sensing in the Earth exploration-satellite and space research services may be authorized in the frequency band 4 200-4 400 MHz on a secondary basis. (WRC-15)', '[5.439]: Additional allocation: in Iran (Islamic Republic of), the band 4 200-4 400 MHz is also allocated to the fixed service on a secondary basis. (WRC-12)', '[5.440]: The standard frequency and time signal-satellite service may be authorized to use the frequency 4 202 MHz for space-to-Earth transmissions and the frequency 6 427 MHz for Earth-to-space transmissions. Such transmissions shall be confined within the limits of ± 2 MHz of these frequencies, subject to agreement obtained under No. 9.21.']), (4400000000, 4500000001): (False, True, True, False, False, ['Mobile [5.440A]'], [], ['[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)']), (4500000000, 4800000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile [5.440A]'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)']), (4800000000, 4990000001): (False, True, True, False, False, ['Mobile [5.440A][5.441A][5.441B][5.442]'], ['Radio Astronomy'], ['[5.440A]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Paraguay, Uruguay and Venezuela), and in Australia, the band 4 400-4 940 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, nor claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this band by other mobile service applications or by other services to which this band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-07)', '[5.441A]: In Uruguay, the frequency band 4 800-4 900 MHz, or portions thereof, is identified for the implementation of International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained with neighbouring countries, and IMT stations shall not claim protection from stations of other applications of the mobile service. Such use shall be in accordance with Resolution 223 (Rev.WRC-15). (WRC-15)', '[5.441B]: In Cambodia, Lao P.D.R. and Viet Nam, the frequency band 4 800-4 990 MHz, or portions thereof, is identified for use by administrations wishing to implement International Mobile Telecommunications (IMT). This identification does not preclude the use of this frequency band by any application of the services to which it is allocated and does not establish priority in the Radio Regulations. The use of this frequency band for the implementation of IMT is subject to agreement obtained under No. 9.21 with concerned administrations, and IMT stations shall not claim protection from stations of other applications of the mobile service. In addition, before an administration brings into use an IMT station in the mobile service, it shall ensure that the power flux-density produced by this station does not exceed −155 dB(W/(m2 · 1 MHz)) produced up to 19 km above sea level at 20 km from the coast, defined as the low-water mark, as officially recognized by the coastal State. This criterion is subject to review at WRC-19. See Resolution 223 (Rev.WRC-15). This identification shall be effective after WRC-19. (WRC-15)', '[5.442]: In the frequency bands 4 825-4 835 MHz and 4 950-4 990 MHz, the allocation to the mobile service is restricted to the mobile, except aeronautical mobile, service. In Region 2 (except Brazil, Cuba, Guatemala, Mexico, Paraguay, Uruguay and Venezuela), and in Australia, the frequency band 4 825-4 835 MHz is also allocated to the aeronautical mobile service, limited to aeronautical mobile telemetry for flight testing by aircraft stations. Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to the fixed service. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.', '[5.443]: Different category of service: in Argentina, Australia and Canada, the allocation of the bands 4 825-4 835 MHz and 4 950-4 990 MHz to the radio astronomy service is on a primary basis (see No. 5.33).']), (4990000000, 5000000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Radio Astronomy'], ['Space Research (Passive)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (5000000000, 5010000001): (False, False, False, False, False, ['Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation', 'Radionavigation-Satellite (Earth-To-Space)'], [], ['[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)']), (5010000000, 5030000001): (False, False, False, False, False, ['Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation', 'Radionavigation-Satellite (Space-To-Earth)', 'Radionavigation-Satellite (Space-To-Space)'], [], ['[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.328B]: The use of the bands 1 164-1 300 MHz, 1 559-1 610 MHz and 5 010-5 030 MHz by systems and networks in the radionavigation-satellite service for which complete coordination or notification information, as appropriate, is received by the Radiocommunication Bureau after 1 January 2005 is subject to the application of the provisions of Nos. 9.12, 9.12A and 9.13. Resolution 610 (WRC-03) shall also apply; however, in the case of radionavigation-satellite service (space-to-space) networks and systems, Resolution 610 (WRC-03) shall only apply to transmitting space stations. In accordance with No. 5.329A, for systems and networks in the radionavigation-satellite service (space-to-space) in the bands 1 215-1 300 MHz and 1 559-1 610 MHz, the provisions of Nos. 9.7, 9.12, 9.12A and 9.13 shall only apply with respect to other systems and networks in the radionavigation-satellite service (space-to-space). (WRC-07)', '[5.443B]: In order not to cause harmful interference to the microwave landing system operating above 5 030 MHz, the aggregate power flux-density produced at the Earth’s surface in the frequency band 5 030-5 150 MHz by all the space stations within any radionavigation-satellite service system (space-to-Earth) operating in the frequency band 5 010-5 030 MHz shall not exceed −124.5 dB(W/m2) in a 150 kHz band. In order not to cause harmful interference to the radio astronomy service in the frequency band 4 990-5 000 MHz, radionavigation-satellite service systems operating in the frequency band 5 010-5 030 MHz shall comply with the limits in the frequency band 4 990-5 000 MHz defined in Resolution 741 (Rev.WRC-15). (WRC-15)']), (5030000000, 5091000001): (False, False, True, False, False, ['Aeronautical Mobile (R) [5.443C]', 'Aeronautical Mobile-Satellite (R) [5.443D]', 'Aeronautical Radionavigation'], [], ['[5.443C]: The use of the frequency band 5 030-5 091 MHz by the aeronautical mobile (R) service is limited to internationally standardized aeronautical systems. Unwanted emissions from the aeronautical mobile (R) service in the frequency band 5 030-5 091 MHz shall be limited to protect RNSS system downlinks in the adjacent 5 010-5 030 MHz band. Until such time that an appropriate value is established in a relevant ITU-R Recommendation, the e.i.r.p. density limit of −75 dBW/MHz in the frequency band 5 010-5 030 MHz for any AM(R)S station unwanted emission should be used. (WRC-12)', '[5.443D]: In the frequency band 5 030-5 091 MHz, the aeronautical mobile-satellite (R) service is subject to coordination under No. 9.11A. The use of this frequency band by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.444]: The frequency band 5 030-5 150 MHz is to be used for the operation of the international standard system (microwave landing system) for precision approach and landing. In the frequency band 5 030-5 091 MHz, the requirements of this system shall have priority over other uses of this frequency band. For the use of the frequency band 5 091-5 150 MHz, No. 5.444A and Resolution 114 (Rev.WRC-15) apply. (WRC-15)']), (5091000000, 5150000001): (False, False, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.444A]', 'Aeronautical Mobile [5.444B]', 'Aeronautical Mobile-Satellite (R) [5.443Aa]', 'Aeronautical Radionavigation'], [], ['[5.444A]: The use of the allocation to the fixed-satellite service (Earth-to-space) in the frequency band 5 091-5 150 MHz is limited to feeder links of non-geostationary satellite systems in the mobile-satellite service and is subject to coordination under No. 9.11A. The use of the frequency band 5 091-5 150 MHz by feeder links of non-geostationary satellite systems in the mobile-satellite service shall be subject to application of Resolution 114 (Rev.WRC-15). Moreover, to ensure that the aeronautical radionavigation service is protected from harmful interference, coordination is required for feeder-link earth stations of the non-geostationary satellite systems in the mobile-satellite service which are separated by less than 450 km from the territory of an administration operating ground stations in the aeronautical radionavigation service. (WRC-15)', '[5.444B]: The use of the frequency band 5 091-5 150 MHz by the aeronautical mobile service is limited to:– systems operating in the aeronautical mobile (R) service and in accordance with international aeronautical standards, limited to surface applications at airports. Such use shall be in accordance with Resolution 748 (Rev.WRC-15); – aeronautical telemetry transmissions from aircraft stations (see No. 1.83) in accordance with Resolution 418 (Rev.WRC-15). (WRC-15) ', '[5.443AA]: In the frequency bands 5 000-5 030 MHz and 5 091-5 150 MHz, the aeronautical mobile-satellite (R) service is subject to agreement obtained under No. 9.21. The use of these bands by the aeronautical mobile-satellite (R) service is limited to internationally standardized aeronautical systems. (WRC-12)', '[5.444]: The frequency band 5 030-5 150 MHz is to be used for the operation of the international standard system (microwave landing system) for precision approach and landing. In the frequency band 5 030-5 091 MHz, the requirements of this system shall have priority over other uses of this frequency band. For the use of the frequency band 5 091-5 150 MHz, No. 5.444A and Resolution 114 (Rev.WRC-15) apply. (WRC-15)']), (5150000000, 5250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.447A]', '(,5.446A,5.446B)', 'Aeronautical Radionavigation'], [], ['[5.447A]: The allocation to the fixed-satellite service (Earth-to-space) in the band 5 150-5 250 MHz is limited to feeder links of non-geostationary-satellite systems in the mobile-satellite service and is subject to coordination under No. 9.11A.', '[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.446B]: In the band 5 150-5 250 MHz, stations in the mobile service shall not claim protection from earth stations in the fixed-satellite service. No. 5.43A does not apply to the mobile service with respect to fixed-satellite service earth stations. (WRC-03)', '[5.446]: Additional allocation: in the countries listed in No. 5.369, the frequency band 5 150-5 216 MHz is also allocated to the radiodetermination-satellite service (space-to-Earth) on a primary basis, subject to agreement obtained under No. 9.21. In Region 2 (except in Mexico), the frequency band is also allocated to the radiodetermination-satellite service (space-to-Earth) on a primary basis. In Regions 1 and 3, except those countries listed in No. 5.369 and Bangladesh, the frequency band is also allocated to the radiodetermination-satellite service (space-to-Earth) on a secondary basis. The use by the radiodetermination-satellite service is limited to feeder links in conjunction with the radiodetermination-satellite service operating in the frequency bands 1 610-1 626.5 MHz and/or 2 483.5-2 500 MHz. The total power flux-density at the Earth’s surface shall in no case exceed −159 dB(W/m2) in any 4 kHz band for all angles of arrival. (WRC-15)', '[5.446C]: Additional allocation: in Region 1 (except in Algeria, Saudi Arabia, Bahrain, Egypt, United Arab Emirates, Jordan, Kuwait, Lebanon, Morocco, Oman, Qatar, Syrian Arab Republic, Sudan, South Sudan and Tunisia) and in Brazil, the band 5 150-5 250 MHz is also allocated to the aeronautical mobile service on a primary basis, limited to aeronautical telemetry transmissions from aircraft stations (see No. 1.83), in accordance with Resolution 418 (Rev.WRC-12)*. These stations shall not claim protection from other stations operating in accordance with Article 5. No. 5.43A does not apply. (WRC-12)', "[5.447]: Additional allocation: in Côte d'Ivoire, Egypt, Israel, Lebanon, the Syrian Arab Republic and Tunisia, the band 5 150-5 250 MHz is also allocated to the mobile service, on a primary basis, subject to agreement obtained under No. 9.21. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)", '[5.447B]: Additional allocation: the band 5 150-5 216 MHz is also allocated to the fixed-satellite service (space-to-Earth) on a primary basis. This allocation is limited to feeder links of non-geostationary-satellite systems in the mobile-satellite service and is subject to provisions of No. 9.11A. The power flux-density at the Earth’s surface produced by space stations of the fixed-satellite service operating in the space-to-Earth direction in the band 5 150-5 216 MHz shall in no case exceed –164 dB(W/m2) in any 4 kHz band for all angles of arrival.', '[5.447C]: Administrations responsible for fixed-satellite service networks in the band 5 150-5 250 MHz operated under Nos. 5.447A and 5.447B shall coordinate on an equal basis in accordance with No. 9.11A with administrations responsible for non-geostationary-satellite networks operated under No. 5.446 and brought into use prior to 17 November 1995. Satellite networks operated under No. 5.446 brought into use after 17 November 1995 shall not claim protection from, and shall not cause harmful interference to, stations of the fixed-satellite service operated under Nos. 5.447A and 5.447B.']), (5250000000, 5255000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', '(,5.446A,5.447F)', 'Radiolocation', 'Space Research [5.447D]'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.447F]: In the frequency band 5 250-5 350 MHz, stations in the mobile service shall not claim protection from the radiolocation service, the Earth exploration-satellite service (active) and the space research service (active). These services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendations ITU-R M.1638-0 and ITU-R RS.1632-0. (WRC-15)', '[5.447D]: The allocation of the band 5 250-5 255 MHz to the space research service on a primary basis is limited to active spaceborne sensors. Other uses of the band by the space research service are on a secondary basis. (WRC-97)', '[5.447E]: Additional allocation: The frequency band 5 250-5 350 MHz is also allocated to the fixed service on a primary basis in the following countries in Region 3: Australia, Korea (Rep. of), India, Indonesia, Iran (Islamic Republic of), Japan, Malaysia, Papua New Guinea, the Philippines, Dem. People’s Rep. of Korea, Sri Lanka, Thailand and Viet Nam. The use of this frequency band by the fixed service is intended for the implementation of fixed wireless access systems and shall comply with Recommendation ITU-R F.1613-0. In addition, the fixed service shall not claim protection from the radiodetermination, Earth exploration-satellite (active) and space research (active) services, but the provisions of No. 5.43A do not apply to the fixed service with respect to the Earth exploration-satellite (active) and space research (active) services. After implementation of fixed wireless access systems in the fixed service with protection for the existing radiodetermination systems, no more stringent constraints should be imposed on the fixed wireless access systems by future radiodetermination implementations. (WRC-15)', '[5.448]: Additional allocation: in Azerbaijan, Kyrgyzstan, Romania and Turkmenistan, the band 5 250-5 350 MHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.448A]: The Earth exploration-satellite (active) and space research (active) services in the frequency band 5 250-5 350 MHz shall not claim protection from the radiolocation service. No. 5.43A does not apply. (WRC-03)']), (5255000000, 5350000001): (False, False, True, False, False, ['Earth Exploration-Satellite (Active)', 'Mobile Except Aeronautical Mobile [5.446A][5.447F]', 'Radiolocation', 'Space Research (Active)'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.447F]: In the frequency band 5 250-5 350 MHz, stations in the mobile service shall not claim protection from the radiolocation service, the Earth exploration-satellite service (active) and the space research service (active). These services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendations ITU-R M.1638-0 and ITU-R RS.1632-0. (WRC-15)', '[5.447E]: Additional allocation: The frequency band 5 250-5 350 MHz is also allocated to the fixed service on a primary basis in the following countries in Region 3: Australia, Korea (Rep. of), India, Indonesia, Iran (Islamic Republic of), Japan, Malaysia, Papua New Guinea, the Philippines, Dem. People’s Rep. of Korea, Sri Lanka, Thailand and Viet Nam. The use of this frequency band by the fixed service is intended for the implementation of fixed wireless access systems and shall comply with Recommendation ITU-R F.1613-0. In addition, the fixed service shall not claim protection from the radiodetermination, Earth exploration-satellite (active) and space research (active) services, but the provisions of No. 5.43A do not apply to the fixed service with respect to the Earth exploration-satellite (active) and space research (active) services. After implementation of fixed wireless access systems in the fixed service with protection for the existing radiodetermination systems, no more stringent constraints should be imposed on the fixed wireless access systems by future radiodetermination implementations. (WRC-15)', '[5.448]: Additional allocation: in Azerbaijan, Kyrgyzstan, Romania and Turkmenistan, the band 5 250-5 350 MHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.448A]: The Earth exploration-satellite (active) and space research (active) services in the frequency band 5 250-5 350 MHz shall not claim protection from the radiolocation service. No. 5.43A does not apply. (WRC-03)']), (5350000000, 5460000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.448B]', 'Radiolocation [5.448D]', 'Aeronautical Radionavigation [5.449]', '(,5.448C)'], [], ['[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)', '[5.448D]: In the frequency band 5 350-5 470 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the aeronautical radionavigation service operating in accordance with No. 5.449. (WRC-03)', '[5.449]: The use of the band 5 350-5 470 MHz by the aeronautical radionavigation service is limited to airborne radars and associated airborne beacons.', '[5.448C]: The space research service (active) operating in the band 5 350-5 460 MHz shall not cause harmful interference to nor claim protection from other services to which this band is allocated. (WRC-03)']), (5460000000, 5470000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation [5.448D]', 'Radionavigation [5.449]', 'Space Research (Active)'], [], ['[5.448D]: In the frequency band 5 350-5 470 MHz, stations in the radiolocation service shall not cause harmful interference to, nor claim protection from, radar systems in the aeronautical radionavigation service operating in accordance with No. 5.449. (WRC-03)', '[5.449]: The use of the band 5 350-5 470 MHz by the aeronautical radionavigation service is limited to airborne radars and associated airborne beacons.', '[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)']), (5470000000, 5570000001): (False, False, True, False, False, ['Earth Exploration-Satellite (Active)', 'Mobile Except Aeronautical Mobile [5.446A][5.450A]', 'Radiolocation [5.450B]', 'Maritime Radionavigation', ''], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.450B]: In the frequency band 5 470-5 650 MHz, stations in the radiolocation service, except ground-based radars used for meteorological purposes in the band 5 600-5 650 MHz, shall not cause harmful interference to, nor claim protection from, radar systems in the maritime radionavigation service. (WRC-03)', '[5.448B]: The Earth exploration-satellite service (active) operating in the band 5 350-5 570 MHz and space research service (active) operating in the band 5 460-5 570 MHz shall not cause harmful interference to the aeronautical radionavigation service in the band 5 350-5 460 MHz, the radionavigation service in the band 5 460-5 470 MHz and the maritime radionavigation service in the band 5 470-5 570 MHz. (WRC-03)', '[5.450]: Additional allocation: in Austria, Azerbaijan, Iran (Islamic Republic of), Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 5 470-5 650 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.']), (5570000000, 5650000001): (False, False, True, False, False, ['Mobile Except Aeronautical Mobile [5.446A][5.450A]', '(,5.450B)', 'Maritime Radionavigation'], [], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.450B]: In the frequency band 5 470-5 650 MHz, stations in the radiolocation service, except ground-based radars used for meteorological purposes in the band 5 600-5 650 MHz, shall not cause harmful interference to, nor claim protection from, radar systems in the maritime radionavigation service. (WRC-03)', '[5.450]: Additional allocation: in Austria, Azerbaijan, Iran (Islamic Republic of), Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 5 470-5 650 MHz is also allocated to the aeronautical radionavigation service on a primary basis. (WRC-12)', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.452]: Between 5 600 MHz and 5 650 MHz, ground-based radars used for meteorological purposes are authorized to operate on a basis of equality with stations of the maritime radionavigation service.']), (5650000000, 5725000001): (True, False, True, False, False, ['Mobile Except Aeronautical Mobile [5.446A][5.450A]', 'Radiolocation'], ['Amateur', 'Space Research (Deep Space)'], ['[5.446A]: The use of the bands 5 150-5 350 MHz and 5 470-5 725 MHz by the stations in the mobile, except aeronautical mobile, service shall be in accordance with Resolution 229 (Rev.WRC-12). (WRC-12)', '[5.450A]: In the frequency band 5 470-5 725 MHz, stations in the mobile service shall not claim protection from radiodetermination services. Radiodetermination services shall not impose on the mobile service more stringent protection criteria, based on system characteristics and interference criteria, than those stated in Recommendation ITU-R M.1638-0. (WRC-15)', '[5.282]: In the bands 435-438 MHz, 1 260-1 270 MHz, 2 400-2 450 MHz, 3 400-3 410 MHz (in Regions 2 and 3 only) and 5 650-5 670 MHz, the amateur-satellite service may operate subject to not causing harmful interference to other services operating in accordance with the Table (see No. 5.43). Administrations authorizing such use shall ensure that any harmful interference caused by emissions from a station in the amateur-satellite service is immediately eliminated in accordance with the provisions of No. 25.11. The use of the bands 1 260-1 270 MHz and 5 650-5 670 MHz by the amateur-satellite service is limited to the Earth-to-space direction.', '[5.451]: Additional allocation: in the United Kingdom, the band 5 470-5 850 MHz is also allocated to the land mobile service on a secondary basis. The power limits specified in Nos. 21.2, 21.3, 21.4 and 21.5 shall apply in the band 5 725-5 850 MHz.', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.454]: Different category of service: in Azerbaijan, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 5 670-5 725 MHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5725000000, 5830000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5830000000, 5850000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite (Space-To-Earth)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13. ', '[5.453]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Côte d’Ivoire, Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, Equatorial Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kenya, Kuwait, Lebanon, Libya, Madagascar, Malaysia, Niger, Nigeria, Oman, Uganda, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Sri Lanka, Swaziland, Tanzania, Chad, Thailand, Togo, Viet Nam and Yemen, the band 5 650-5 850 MHz is also allocated to the fixed and mobile services on a primary basis. In this case, the provisions of Resolution 229 (Rev.WRC-12) do not apply. (WRC-12)', '[5.455]: Additional allocation: in Armenia, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Kazakhstan, Moldova, Mongolia, Uzbekistan, Kyrgyzstan, Tajikistan, Turkmenistan and Ukraine, the band 5 670-5 850 MHz is also allocated to the fixed service on a primary basis. (WRC-07)']), (5850000000, 5925000001): (True, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)'], ['Amateur', 'Radiolocation'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (5925000000, 6700000001): (False, True, True, False, False, ['Fixed [5.457]', 'Fixed-Satellite (Earth-To-Space) [5.457A][5.457B]', 'Mobile [5.457C]'], [], ["[5.457]: In Australia, Burkina Faso, Cote d'Ivoire, Mali and Nigeria, the allocation to the fixed service in the bands 6 440-6 520 MHz (HAPS-to-ground direction) and 6 560-6 640 MHz (ground-to-HAPS direction) may also be used by gateway links for high-altitude platform stations (HAPS) within the territory of these countries. Such use is limited to operation in HAPS gateway links and shall not cause harmful interference to, and shall not claim protection from, existing services, and shall be in compliance with Resolution 150 (WRC-12). Existing services shall not be constrained in future development by HAPS gateway links. The use of HAPS gateway links in these bands requires explicit agreement with other administrations whose territories are located within 1 000 kilometres from the border of an administration intending to use the HAPS gateway links. (WRC-12)", '[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.457C]: In Region 2 (except Brazil, Cuba, French overseas departments and communities, Guatemala, Mexico, Paraguay, Uruguay and Venezuela), the frequency band 5 925-6 700 MHz may be used for aeronautical mobile telemetry for flight testing by aircraft stations (see No. 1.83). Such use shall be in accordance with Resolution 416 (WRC-07) and shall not cause harmful interference to, or claim protection from, the fixed-satellite and fixed services. Any such use does not preclude the use of this frequency band by other mobile service applications or by other services to which this frequency band is allocated on a co-primary basis and does not establish priority in the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.440]: The standard frequency and time signal-satellite service may be authorized to use the frequency 4 202 MHz for space-to-Earth transmissions and the frequency 6 427 MHz for Earth-to-space transmissions. Such transmissions shall be confined within the limits of ± 2 MHz of these frequencies, subject to agreement obtained under No. 9.21.', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.']), (6700000000, 7075000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.441]', 'Fixed-Satellite (Space-To-Earth) [5.441]'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.458A]: In making assignments in the band 6 700-7 075 MHz to space stations of the fixed-satellite service, administrations are urged to take all practicable steps to protect spectral line observations of the radio astronomy service in the band 6 650-6 675.2 MHz from harmful interference from unwanted emissions.', '[5.458B]: The space-to-Earth allocation to the fixed-satellite service in the band 6 700-7 075 MHz is limited to feeder links for non-geostationary satellite systems of the mobile-satellite service and is subject to coordination under No. 9.11A. The use of the band 6 700-7 075 MHz (space-to-Earth) by feeder links for non-geostationary satellite systems in the mobile-satellite service is not subject to No. 22.2.']), (7075000000, 7145000001): (False, True, True, False, False, [], [], ['[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7145000000, 7190000001): (False, True, True, False, False, ['Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7190000000, 7235000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space) [5.460A][5.460B]', 'Space Research (Earth-To-Space) [5.460]'], [], ['[5.460A]: The use of the frequency band 7 190-7 250 MHz (Earth-to-space) by the Earth exploration-satellite service shall be limited to tracking, telemetry and command for the operation of spacecraft. Space stations operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 250 MHz shall not claim protection from existing and future stations in the fixed and mobile services, and No. 5.43A does not apply. No. 9.17 applies. Additionally, to ensure protection of the existing and future deployment of fixed and mobile services, the location of earth stations supporting spacecraft in the Earth exploration-satellite service in non-geostationary orbits or geostationary orbit shall maintain a separation distance of at least 10 km and 50 km, respectively, from the respective border(s) of neighbouring countries, unless a shorter distance is otherwise agreed between the corresponding administrations. (WRC-15)', '[5.460B]: Space stations on the geostationary orbit operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 235 MHz shall not claim protection from existing and future stations of the space research service, and No. 5.43A does not apply. (WRC-15)', '[5.460]: No emissions from space research service (Earth-to-space) systems intended for deep space shall be effected in the frequency band 7 190-7 235 MHz. Geostationary satellites in the space research service operating in the frequency band 7 190-7 235 MHz shall not claim protection from existing and future stations of the fixed and mobile services and No. 5.43A does not apply. (WRC-15)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.', '[5.459]: Additional allocation: in the Russian Federation, the frequency bands 7 100-7 155 MHz and 7 190-7 235 MHz are also allocated to the space operation service (Earth-to-space) on a primary basis, subject to agreement obtained under No. 9.21. In the frequency band 7 190-7 235 MHz, with respect to the Earth exploration-satellite service (Earth-to-space), No. 9.21 does not apply. (WRC-15)']), (7235000000, 7250000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space) [5.460A]'], [], ['[5.460A]: The use of the frequency band 7 190-7 250 MHz (Earth-to-space) by the Earth exploration-satellite service shall be limited to tracking, telemetry and command for the operation of spacecraft. Space stations operating in the Earth exploration-satellite service (Earth-to-space) in the frequency band 7 190-7 250 MHz shall not claim protection from existing and future stations in the fixed and mobile services, and No. 5.43A does not apply. No. 9.17 applies. Additionally, to ensure protection of the existing and future deployment of fixed and mobile services, the location of earth stations supporting spacecraft in the Earth exploration-satellite service in non-geostationary orbits or geostationary orbit shall maintain a separation distance of at least 10 km and 50 km, respectively, from the respective border(s) of neighbouring countries, unless a shorter distance is otherwise agreed between the corresponding administrations. (WRC-15)', '[5.458]: In the band 6 425-7 075 MHz, passive microwave sensor measurements are carried out over the oceans. In the band 7 075-7 250 MHz, passive microwave sensor measurements are carried out. Administrations should bear in mind the needs of the Earth exploration-satellite (passive) and space research (passive) services in their future planning of the bands 6 425-7 075 MHz and 7 075-7 250 MHz.']), (7250000000, 7300000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (7300000000, 7375000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (7375000000, 7450000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)']), (7450000000, 7550000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Meteorological-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)', '[5.461A]: The use of the band 7 450-7 550 MHz by the meteorological-satellite service (space-to-Earth) is limited to geostationary-satellite systems. Non-geostationary meteorological-satellite systems in this band notified before 30 November 1997 may continue to operate on a primary basis until the end of their lifetime. (WRC-97)']), (7550000000, 7750000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Maritime Mobile-Satellite (Space-To-Earth) [5.461Aa][5.461Ab]'], [], ['[5.461AA]: The use of the frequency band 7 375-7 750 MHz by the maritime mobile-satellite service is limited to geostationary-satellite networks. (WRC-15)', '[5.461AB]: In the frequency band 7 375-7 750 MHz, earth stations in the maritime mobile-satellite service shall not claim protection from, nor constrain the use and development of, stations in the fixed and mobile, except aeronautical mobile, services. No. 5.43A does not apply. (WRC-15)']), (7750000000, 7900000001): (False, True, True, False, False, ['Meteorological-Satellite (Space-To-Earth) [5.461B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.461B]: The use of the band 7 750-7 900 MHz by the meteorological-satellite service (space-to-Earth) is limited to non-geostationary satellite systems. (WRC-12)']), (7900000000, 8025000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)'], [], ['[5.461]: Additional allocation: the bands 7 250-7 375 MHz (space-to-Earth) and 7 900-8 025 MHz (Earth-to-space) are also allocated to the mobile-satellite service on a primary basis, subject to agreement obtained under No. 9.21.']), (8025000000, 8175000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8175000000, 8215000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Meteorological-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8215000000, 8400000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To-Earth)', 'Fixed-Satellite (Earth-To-Space)', 'Mobile [5.463]'], [], ['[5.463]: Aircraft stations are not permitted to transmit in the band 8 025-8 400 MHz. (WRC-97)', '[5.462A]: In Regions 1 and 3 (except for Japan), in the band 8 025-8 400 MHz, the Earth exploration-satellite service using geostationary satellites shall not produce a power flux-density in excess of the following values for angles of arrival (q), without the consent of the affected administration:']), (8400000000, 8500000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth) [5.465][5.466]'], [], ['[5.465]: In the space research service, the use of the band 8 400-8 450 MHz is limited to deep space.', '[5.466]: Different category of service: in Singapore and Sri Lanka, the allocation of the band 8 400-8 500 MHz to the space research service is on a secondary basis (see No. 5.32). (WRC-12)']), (8500000000, 8550000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)']), (8550000000, 8650000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)', '[5.469A]: In the band 8 550-8 650 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, or constrain the use and development of, stations of the radiolocation service. (WRC-97)']), (8650000000, 8750000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.468]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Burundi, Cameroon, China, Congo (Rep. of the), Djibouti, Egypt, the United Arab Emirates, Gabon, Guyana, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Senegal, Singapore, Somalia, Sudan, Swaziland, Chad, Togo, Tunisia and Yemen, the frequency band 8 500-8 750 MHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.469]: Additional allocation: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Hungary, Lithuania, Mongolia, Uzbekistan, Poland, Kyrgyzstan, the Czech Rep., Romania, Tajikistan, Turkmenistan and Ukraine, the band 8 500-8 750 MHz is also allocated to the land mobile and radionavigation services on a primary basis. (WRC-12)']), (8750000000, 8850000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.470]'], [], ['[5.470]: The use of the band 8 750-8 850 MHz by the aeronautical radionavigation service is limited to airborne Doppler navigation aids on a centre frequency of 8 800 MHz.', '[5.471]: Additional allocation: in Algeria, Germany, Bahrain, Belgium, China, Egypt, the United Arab Emirates, France, Greece, Indonesia, Iran (Islamic Republic of), Libya, the Netherlands, Qatar and Sudan, the frequency bands 8 825-8 850 MHz and 9 000-9 200 MHz are also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars only. (WRC-15)']), (8850000000, 9000000001): (False, False, False, False, False, ['Radiolocation', 'Maritime Radionavigation [5.472]'], [], ['[5.472]: In the bands 8 850-9 000 MHz and 9 200-9 225 MHz, the maritime radionavigation service is limited to shore-based radars.', '[5.473]: Additional allocation: in Armenia, Austria, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Mongolia, Uzbekistan, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the bands 8 850-9 000 MHz and 9 200-9 300 MHz are also allocated to the radionavigation service on a primary basis. (WRC-07)']), (9000000000, 9200000001): (False, False, False, False, False, ['Radiolocation', 'Aeronautical Radionavigation [5.337]'], [], ['[5.337]: The use of the bands 1 300-1 350 MHz, 2 700-2 900 MHz and 9 000-9 200 MHz by the aeronautical radionavigation service is restricted to ground-based radars and to associated airborne transponders which transmit only on frequencies in these bands and only when actuated by radars operating in the same band.', '[5.471]: Additional allocation: in Algeria, Germany, Bahrain, Belgium, China, Egypt, the United Arab Emirates, France, Greece, Indonesia, Iran (Islamic Republic of), Libya, the Netherlands, Qatar and Sudan, the frequency bands 8 825-8 850 MHz and 9 000-9 200 MHz are also allocated to the maritime radionavigation service, on a primary basis, for use by shore-based radars only. (WRC-15)', '[5.473A]: In the band 9 000-9 200 MHz, stations operating in the radiolocation service shall not cause harmful interference to, nor claim protection from, systems identified in No. 5.337 operating in the aeronautical radionavigation service, or radar systems in the maritime radionavigation service operating in this band on a primary basis in the countries listed in No. 5.471. (WRC-07)']), (9200000000, 9300000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation', 'Maritime Radionavigation [5.472]'], [], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.472]: In the bands 8 850-9 000 MHz and 9 200-9 225 MHz, the maritime radionavigation service is limited to shore-based radars.', '[5.473]: Additional allocation: in Armenia, Austria, Azerbaijan, Belarus, Cuba, the Russian Federation, Georgia, Hungary, Mongolia, Uzbekistan, Poland, Kyrgyzstan, Romania, Tajikistan, Turkmenistan and Ukraine, the bands 8 850-9 000 MHz and 9 200-9 300 MHz are also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.474]: In the band 9 200-9 500 MHz, search and rescue transponders (SART) may be used, having due regard to the appropriate ITU-R Recommendation (see also Article 31).', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)']), (9300000000, 9500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation', 'Space Research (Active)'], [], ['[5.427]: In the bands 2 900-3 100 MHz and 9 300-9 500 MHz, the response from radar transponders shall not be capable of being confused with the response from radar beacons (racons) and shall not cause interference to ship or aeronautical radars in the radionavigation service, having regard, however, to No. 4.9.', '[5.474]: In the band 9 200-9 500 MHz, search and rescue transponders (SART) may be used, having due regard to the appropriate ITU-R Recommendation (see also Article 31).', '[5.475]: The use of the band 9 300-9 500 MHz by the aeronautical radionavigation service is limited to airborne weather radars and ground-based radars. In addition, ground-based radar beacons in the aeronautical radionavigation service are permitted in the band 9 300-9 320 MHz on condition that harmful interference is not caused to the maritime radionavigation service. (WRC-07)', '[5.475A]: The use of the band 9 300-9 500 MHz by the Earth exploration-satellite service (active) and the space research service (active) is limited to systems requiring necessary bandwidth greater than 300 MHz that cannot be fully accommodated within the 9 500-9 800 MHz band. (WRC-07)', '[5.475B]: In the band 9 300-9 500 MHz, stations operating in the radiolocation service shall not cause harmful interference to, nor claim protection from, radars operating in the radionavigation service in conformity with the Radio Regulations. Ground-based radars used for meteorological purposes have priority over other radiolocation uses. (WRC-07)', '[5.476A]: In the band 9 300-9 800 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from, stations of the radionavigation and radiolocation services. (WRC-07)']), (9500000000, 9800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Radionavigation', 'Space Research (Active)'], [], ['[5.476A]: In the band 9 300-9 800 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from, stations of the radionavigation and radiolocation services. (WRC-07)']), (9800000000, 9900000001): (False, True, False, False, False, ['Radiolocation'], ['Earth Exploration-Satellite (Active)', 'Space Research (Active)'], ['[5.477]: Different category of service: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Japan, Jordan, Kuwait, Lebanon, Liberia, Malaysia, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Trinidad and Tobago, and Yemen, the allocation of the frequency band 9 800-10 000 MHz to the fixed service is on a primary basis (see No. 5.33). (WRC-15)', '[5.478]: Additional allocation: in Azerbaijan, Mongolia, Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 9 800-10 000 MHz is also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.478A]: The use of the band 9 800-9 900 MHz by the Earth exploration-satellite service (active) and the space research service (active) is limited to systems requiring necessary bandwidth greater than 500 MHz that cannot be fully accommodated within the 9 300-9 800 MHz band. (WRC-07)', '[5.478B]: In the band 9 800-9 900 MHz, stations in the Earth exploration-satellite service (active) and space research service (active) shall not cause harmful interference to, nor claim protection from stations of the fixed service to which this band is allocated on a secondary basis. (WRC-07)']), (9900000000, 10000000001): (False, True, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation'], [], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)', '[5.477]: Different category of service: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Djibouti, Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guyana, India, Indonesia, Iran (Islamic Republic of), Iraq, Jamaica, Japan, Jordan, Kuwait, Lebanon, Liberia, Malaysia, Nigeria, Oman, Uganda, Pakistan, Qatar, Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Trinidad and Tobago, and Yemen, the allocation of the frequency band 9 800-10 000 MHz to the fixed service is on a primary basis (see No. 5.33). (WRC-15)', '[5.478]: Additional allocation: in Azerbaijan, Mongolia, Kyrgyzstan, Romania, Turkmenistan and Ukraine, the band 9 800-10 000 MHz is also allocated to the radionavigation service on a primary basis. (WRC-07)', '[5.479]: The band 9 975-10 025 MHz is also allocated to the meteorological-satellite service on a secondary basis for use by weather radars.']), (10000000000, 10400000001): (True, False, False, False, False, ['Earth Exploration-Satellite (Active) [5.474A][5.474B][5.474C]', 'Radiolocation'], ['Amateur'], ['[5.474A]: The use of the frequency bands 9 200-9 300 MHz and 9 900-10 400 MHz by the Earth exploration-satellite service (active) is limited to systems requiring necessary bandwidth greater than 600 MHz that cannot be fully accommodated within the frequency band 9 300-9 900 MHz. Such use is subject to agreement to be obtained under No. 9.21 from Algeria, Saudi Arabia, Bahrain, Egypt, Indonesia, Iran (Islamic Republic of), Lebanon and Tunisia. An administration that has not replied under No. 9.52 is considered as not having agreed to the coordination request. In this case, the notifying administration of the satellite system operating in the Earth exploration-satellite service (active) may request the assistance of the Bureau under Sub-Section IID of Article 9. (WRC-15)', '[5.474B]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2066-0. (WRC-15)', '[5.474C]: Stations operating in the Earth exploration-satellite (active) service shall comply with Recommendation ITU-R RS.2065-0. (WRC-15)', '[5.474D]: Stations in the Earth exploration-satellite service (active) shall not cause harmful interference to, or claim protection from, stations of the maritime radionavigation and radiolocation services in the frequency band 9 200-9 300 MHz, the radionavigation and radiolocation services in the frequency band 9 900-10 000 MHz and the radiolocation service in the frequency band 10.0-10.4 GHz. (WRC-15)', '[5.479]: The band 9 975-10 025 MHz is also allocated to the meteorological-satellite service on a secondary basis for use by weather radars.', '[5.480]: Additional allocation: in Argentina, Brazil, Chile, Cuba, El Salvador, Ecuador, Guatemala, Honduras, Paraguay, the Netherlands Antilles, Peru and Uruguay, the frequency band 10-10.45 GHz is also allocated to the fixed and mobile services on a primary basis. In Colombia, Costa Rica, Mexico and Venezuela, the frequency band 10-10.45 GHz is also allocated to the fixed service on a primary basis. (WRC-15)']), (10400000000, 10450000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur'], ['[5.480]: Additional allocation: in Argentina, Brazil, Chile, Cuba, El Salvador, Ecuador, Guatemala, Honduras, Paraguay, the Netherlands Antilles, Peru and Uruguay, the frequency band 10-10.45 GHz is also allocated to the fixed and mobile services on a primary basis. In Colombia, Costa Rica, Mexico and Venezuela, the frequency band 10-10.45 GHz is also allocated to the fixed service on a primary basis. (WRC-15)']), (10450000000, 10500000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite'], ["[5.481]: Additional allocation: in Algeria, Germany, Angola, Brazil, China, Côte d'Ivoire, El Salvador, Ecuador, Spain, Guatemala, Hungary, Japan, Kenya, Morocco, Nigeria, Oman, Uzbekistan, Pakistan, Paraguay, Peru, the Dem. People’s Rep. of Korea, Romania and Uruguay, the frequency band 10.45-10.5 GHz is also allocated to the fixed and mobile services on a primary basis. In Costa Rica, the frequency band 10.45-10.5 GHz is also allocated to the fixed service on a primary basis. (WRC-15)"]), (10500000000, 10550000001): (False, True, True, False, False, ['Radiolocation'], [], []), (10550000000, 10600000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], ['Radiolocation'], []), (10600000000, 10680000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy', 'Space Research (Passive)'], ['Radiolocation'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.482]: In the band 10.6-10.68 GHz, the power delivered to the antenna of stations of the fixed and mobile, except aeronautical mobile, services shall not exceed −3 dBW. This limit may be exceeded, subject to agreement obtained under No. 9.21. However, in Algeria, Saudi Arabia, Armenia, Azerbaijan, Bahrain, Bangladesh, Belarus, Egypt, United Arab Emirates, Georgia, India, Indonesia, Iran (Islamic Republic of), Iraq, Jordan, Kazakhstan, Kuwait, Lebanon, Libya, Morocco, Mauritania, Moldova, Nigeria, Oman, Uzbekistan, Pakistan, Philippines, Qatar, Syrian Arab Republic, Kyrgyzstan, Singapore, Tajikistan, Tunisia, Turkmenistan and Viet Nam, this restriction on the fixed and mobile, except aeronautical mobile, services is not applicable. (WRC-07)', '[5.482A]: For sharing of the band 10.6-10.68 GHz between the Earth exploration-satellite (passive) service and the fixed and mobile, except aeronautical mobile, services, Resolution 751 (WRC-07) applies. (WRC-07)']), (10680000000, 10700000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.483]: Additional allocation: in Saudi Arabia, Armenia, Azerbaijan, Bahrain, Belarus, China, Colombia, Korea (Rep. of), Costa Rica, Egypt, the United Arab Emirates, Georgia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kazakhstan, Kuwait, Lebanon, Mongolia, Qatar, Kyrgyzstan, the Dem. People’s Rep. of Korea, Tajikistan, Turkmenistan and Yemen, the band 10.68-10.7 GHz is also allocated to the fixed and mobile, except aeronautical mobile, services on a primary basis. Such use is limited to equipment in operation by 1 January 1985. (WRC-12)']), (10700000000, 10950000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile Except Aeronautical Mobile'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (10950000000, 11200000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)']), (11200000000, 11450000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.441]', 'Mobile Except Aeronautical Mobile'], [], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (11450000000, 11700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B]', 'Mobile Except Aeronautical Mobile'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)']), (11700000000, 12100000001): (False, True, True, False, False, ['Fixed [5.486]', 'Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.488]'], ['Mobile Except Aeronautical Mobile'], ['[5.486]: Different category of service: in the United States, the allocation of the frequency band 11.7-12.1 GHz to the fixed service is on a secondary basis (see No. 5.32). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.488]: The use of the band 11.7-12.2 GHz by geostationary-satellite networks in the fixed-satellite service in Region 2 is subject to application of the provisions of No. 9.14 for coordination with stations of terrestrial services in Regions 1, 2 and 3. For the use of the band 12.2-12.7 GHz by the broadcasting-satellite service in Region 2, see Appendix 30. (WRC-03)', '[5.485]: In Region 2, in the band 11.7-12.2 GHz, transponders on space stations in the fixed-satellite service may be used additionally for transmissions in the broadcasting-satellite service, provided that such transmissions do not have a maximum e.i.r.p. greater than 53 dBW per television channel and do not cause greater interference or require more protection from interference than the coordinated fixed-satellite service frequency assignments. With respect to the space services, this band shall be used principally for the fixed-satellite service.']), (12100000000, 12200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.488]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.488]: The use of the band 11.7-12.2 GHz by geostationary-satellite networks in the fixed-satellite service in Region 2 is subject to application of the provisions of No. 9.14 for coordination with stations of terrestrial services in Regions 1, 2 and 3. For the use of the band 12.2-12.7 GHz by the broadcasting-satellite service in Region 2, see Appendix 30. (WRC-03)', '[5.485]: In Region 2, in the band 11.7-12.2 GHz, transponders on space stations in the fixed-satellite service may be used additionally for transmissions in the broadcasting-satellite service, provided that such transmissions do not have a maximum e.i.r.p. greater than 53 dBW per television channel and do not cause greater interference or require more protection from interference than the coordinated fixed-satellite service frequency assignments. With respect to the space services, this band shall be used principally for the fixed-satellite service.', '[5.489]: Additional allocation: in Peru, the band 12.1-12.2 GHz is also allocated to the fixed service on a primary basis.']), (12200000000, 12700000001): (False, True, True, True, False, ['Mobile Except Aeronautical Mobile', 'Broadcasting', 'Broadcasting-Satellite [5.492]'], [], ['[5.492]: Assignments to stations of the broadcasting-satellite service which are in conformity with the appropriate regional Plan or included in the Regions 1 and 3 List in Appendix 30 may also be used for transmissions in the fixed-satellite service (space-to-Earth), provided that such transmissions do not cause more interference, or require more protection from interference, than the broadcasting-satellite service transmissions operating in conformity with the Plan or the List, as appropriate. (WRC-2000)', '[5.487A]: Additional allocation: in Region 1, the band 11.7-12.5 GHz, in Region 2, the band 12.2-12.7 GHz and, in Region 3, the band 11.7-12.2 GHz, are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis, limited to non-geostationary systems and subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the broadcasting-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-03)', '[5.488]: The use of the band 11.7-12.2 GHz by geostationary-satellite networks in the fixed-satellite service in Region 2 is subject to application of the provisions of No. 9.14 for coordination with stations of terrestrial services in Regions 1, 2 and 3. For the use of the band 12.2-12.7 GHz by the broadcasting-satellite service in Region 2, see Appendix 30. (WRC-03)', '[5.490]: In Region 2, in the band 12.2-12.7 GHz, existing and future terrestrial radiocommunication services shall not cause harmful interference to the space services operating in conformity with the broadcasting-satellite Plan for Region 2 contained in Appendix 30.']), (12700000000, 12750000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Mobile Except Aeronautical Mobile'], [], []), (12750000000, 13250000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.441]'], ['Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], ['[5.441]: The use of the bands 4 500-4 800 MHz (space-to-Earth), 6 725-7 025 MHz (Earth-to-space) by the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by geostationary-satellite systems in the fixed-satellite service shall be in accordance with the provisions of Appendix 30B. The use of the bands 10.7-10.95 GHz (space-to-Earth), 11.2-11.45 GHz (space-to-Earth) and 12.75-13.25 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)']), (13250000000, 13400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Aeronautical Radionavigation [5.497]', 'Space Research (Active)'], [], ['[5.497]: The use of the band 13.25-13.4 GHz by the aeronautical radionavigation service is limited to Doppler navigation aids.', '[5.498A]: The Earth exploration-satellite (active) and space research (active) services operating in the band 13.25-13.4 GHz shall not cause harmful interference to, or constrain the use and development of, the aeronautical radionavigation service. (WRC-97)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)']), (13400000000, 13650000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research [5.499C][5.499D]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.499C]: The allocation of the frequency band 13.4-13.65 GHz to the space research service on a primary basis is limited to:– satellite systems operating in the space research service (space-to-space) to relay data from space stations in the geostationary-satellite orbit to associated space stations in non-geostationary satellite orbits for which advance publication information has been received by the Bureau by 27 November 2015, – active spaceborne sensors, – satellite systems operating in the space research service (space-to-Earth) to relay data from space stations in the geostationary-satellite orbit to associated earth stations. Other uses of the frequency band by the space research service are on a secondary basis. (WRC-15) ', '[5.499D]: In the frequency band 13.4-13.65 GHz, satellite systems in the space research service (space-to-Earth) and/or the space research service (space-to-space) shall not cause harmful interference to, nor claim protection from, stations in the fixed, mobile, radiolocation and Earth exploration-satellite (active) services. (WRC-15)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.501B]: In the band 13.4-13.75 GHz, the Earth exploration-satellite (active) and space research (active) services shall not cause harmful interference to, or constrain the use and development of, the radiolocation service. (WRC-97)']), (13650000000, 13750000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research [5.501A]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.501A]: The allocation of the frequency band 13.65-13.75 GHz to the space research service on a primary basis is limited to active spaceborne sensors. Other uses of the frequency band by the space research service are on a secondary basis. (WRC-15)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.501B]: In the band 13.4-13.75 GHz, the Earth exploration-satellite (active) and space research (active) services shall not cause harmful interference to, or constrain the use and development of, the radiolocation service. (WRC-97)']), (13750000000, 14000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A]', 'Radiolocation'], ['Earth Exploration-Satellite', 'Standard Frequency And Time Signal-Satellite (Earth-To-Space)', 'Space Research'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.499]: Additional allocation: in Bangladesh and India, the band 13.25-14 GHz is also allocated to the fixed service on a primary basis. In Pakistan, the band 13.25-13.75 GHz is allocated to the fixed service on a primary basis. (WRC-12)', '[5.500]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Madagascar, Malaysia, Mali, Morocco, Mauritania, Niger, Nigeria, Oman, Qatar, the Syrian Arab Republic, Singapore, Sudan, South Sudan, Chad and Tunisia, the frequency band 13.4-14 GHz is also allocated to the fixed and mobile services on a primary basis. In Pakistan, the frequency band 13.4-13.75 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.501]: Additional allocation: in Azerbaijan, Hungary, Japan, Kyrgyzstan, Romania and Turkmenistan, the band 13.4-14 GHz is also allocated to the radionavigation service on a primary basis. (WRC-12)', '[5.502]: In the band 13.75-14 GHz, an earth station of a geostationary fixed-satellite service network shall have a minimum antenna diameter of 1.2 m and an earth station of a non-geostationary fixed-satellite service system shall have a minimum antenna diameter of 4.5 m. In addition, the e.i.r.p., averaged over one second, radiated by a station in the radiolocation or radionavigation services shall not exceed 59 dBW for elevation angles above 2° and 65 dBW at lower angles. Before an administration brings into use an earth station in a geostationary-satellite network in the fixed-satellite service in this band with an antenna diameter smaller than 4.5 m, it shall ensure that the power flux-density produced by this earth station does not exceed:– –115 dB(W/(m2 · 10 MHz)) for more than 1% of the time produced at 36 m above sea level at the low water mark, as officially recognized by the coastal State; – –115 dB(W/(m2 · 10 MHz)) for more than 1% of the time produced 3 m above ground at the border of the territory of an administration deploying or planning to deploy land mobile radars in this band, unless prior agreement has been obtained. For earth stations within the fixed-satellite service having an antenna diameter greater than or equal to 4.5 m, the e.i.r.p. of any emission should be at least 68 dBW and should not exceed 85 dBW. (WRC-03) ', '[5.503]: In the band 13.75-14 GHz, geostationary space stations in the space research service for which information for advance publication has been received by the Bureau prior to 31 January 1992 shall operate on an equal basis with stations in the fixed-satellite service; after that date, new geostationary space stations in the space research service will operate on a secondary basis. Until those geostationary space stations in the space research service for which information for advance publication has been received by the Bureau prior to 31 January 1992 cease to operate in this band:– in the band 13.77-13.78 GHz, the e.i.r.p. density of emissions from any earth station in the fixed-satellite service operating with a space station in geostationary-satellite orbit shall not exceed: i) 4.7D + 28 dB(W/40 kHz), where D is the fixed-satellite service earth station antenna diameter (m) for antenna diameters equal to or greater than 1.2 m and less than 4.5 m; ii) 49.2 + 20 log(D/4.5) dB(W/40 kHz), where D is the fixed-satellite service earth station antenna diameter (m) for antenna diameters equal to or greater than 4.5 m and less than 31.9 m; iii) 66.2 dB(W/40 kHz) for any fixed-satellite service earth station for antenna diameters (m) equal to or greater than 31.9 m; iv) 56.2 dB(W/4 kHz) for narrow-band (less than 40 kHz of necessary bandwidth) fixed-satellite service earth station emissions from any fixed-satellite service earth station having an antenna diameter of 4.5 m or greater; – the e.i.r.p. density of emissions from any earth station in the fixed-satellite service operating with a space station in non-geostationary-satellite orbit shall not exceed 51 dBW in the 6 MHz band from 13.772 to 13.778 GHz. Automatic power control may be used to increase the e.i.r.p. density in these frequency ranges to compensate for rain attenuation, to the extent that the power flux-density at the fixed-satellite service space station does not exceed the value resulting from use by an earth station of an e.i.r.p. meeting the above limits in clear-sky conditions. (WRC-03)']), (14000000000, 14250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Radionavigation [5.504]'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.504C][5.506A]', 'Space Research'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504]: The use of the band 14-14.3 GHz by the radionavigation service shall be such as to provide sufficient protection to space stations of the fixed-satellite service.', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.504C]: In the frequency band 14-14.25 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Côte d’Ivoire, Egypt, Guinea, India, Iran (Islamic Republic of), Kuwait, Nigeria, Oman, the Syrian Arab Republic and Tunisia by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)', '[5.505]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Botswana, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Oman, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Swaziland, Chad, Viet Nam and Yemen, the frequency band 14-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-15)']), (14250000000, 14300000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Radionavigation [5.504]'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.508A]', 'Space Research'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504]: The use of the band 14-14.3 GHz by the radionavigation service shall be such as to provide sufficient protection to space stations of the fixed-satellite service.', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.508A]: In the frequency band 14.25-14.3 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, China, Côte d’Ivoire, Egypt, France, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom and Tunisia by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)', '[5.505]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Botswana, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Korea (Rep. of), Djibouti, Egypt, the United Arab Emirates, Gabon, Guinea, India, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Oman, the Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Swaziland, Chad, Viet Nam and Yemen, the frequency band 14-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-15)', '[5.508]: Additional allocation: in Germany, France, Italy, Libya, The Former Yugoslav Rep. of Macedonia and the United Kingdom, the band 14.25-14.3 GHz is also allocated to the fixed service on a primary basis. (WRC-12)']), (14300000000, 14400000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.484A][5.484B][5.506][5.506B]'], ['Mobile-Satellite (Earth-To-Space) [5.506A]', 'Radionavigation-Satellite'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14400000000, 14470000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.484B][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Space Research (Space-To-Earth)'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14470000000, 14500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.457A][5.457B][5.484A][5.506][5.506B]', 'Mobile Except Aeronautical Mobile'], ['Mobile-Satellite (Earth-To-Space) [5.504B][5.506A][5.509A]', 'Radio Astronomy'], ['[5.457A]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may communicate with space stations of the fixed-satellite service. Such use shall be in accordance with Resolution 902 (WRC-03). In the frequency band 5 925-6 425 MHz, earth stations located on board vessels and communicating with space stations of the fixed-satellite service may employ transmit antennas with minimum diameter of 1.2 m and operate without prior agreement of any administration if located at least 330 km away from the low-water mark as officially recognized by the coastal State. All other provisions of Resolution 902 (WRC-03) shall apply. (WRC-15)', '[5.457B]: In the frequency bands 5 925-6 425 MHz and 14-14.5 GHz, earth stations located on board vessels may operate with the characteristics and under the conditions contained in Resolution 902 (WRC-03) in Algeria, Saudi Arabia, Bahrain, Comoros, Djibouti, Egypt, United Arab Emirates, Jordan, Kuwait, Libya, Morocco, Mauritania, Oman, Qatar, the Syrian Arab Republic, Sudan, Tunisia and Yemen, in the maritime mobile-satellite service on a secondary basis. Such use shall be in accordance with Resolution 902 (WRC-03). (WRC-15)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.506]: The band 14-14.5 GHz may be used, within the fixed-satellite service (Earth-to-space), for feeder links for the broadcasting-satellite service, subject to coordination with other networks in the fixed-satellite service. Such use of feeder links is reserved for countries outside Europe.', '[5.506B]: Earth stations located on board vessels communicating with space stations in the fixed-satellite service may operate in the frequency band 14-14.5 GHz without the need for prior agreement from Cyprus and Malta, within the minimum distance given in Resolution 902 (WRC-03) from these countries. (WRC-15)', '[5.504B]: Aircraft earth stations operating in the aeronautical mobile-satellite service in the frequency band 14-14.5 GHz shall comply with the provisions of Annex 1, Part C of Recommendation ITU-R M.1643-0, with respect to any radio astronomy station performing observations in the 14.47-14.5 GHz frequency band located on the territory of Spain, France, India, Italy, the United Kingdom and South Africa. (WRC-15)', '[5.506A]: In the band 14-14.5 GHz, ship earth stations with an e.i.r.p. greater than 21 dBW shall operate under the same conditions as earth stations located on board vessels, as provided in Resolution 902 (WRC-03). This footnote shall not apply to ship earth stations for which the complete Appendix 4 information has been received by the Bureau prior to 5 July 2003. (WRC-03)', '[5.509A]: In the frequency band 14.3-14.5 GHz, the power flux-density produced on the territory of the countries of Saudi Arabia, Bahrain, Botswana, Cameroon, China, Côte d’Ivoire, Egypt, France, Gabon, Guinea, India, Iran (Islamic Republic of), Italy, Kuwait, Morocco, Nigeria, Oman, the Syrian Arab Republic, the United Kingdom, Sri Lanka, Tunisia and Viet Nam by any aircraft earth station in the aeronautical mobile-satellite service shall not exceed the limits given in Annex 1, Part B of Recommendation ITU-R M.1643-0, unless otherwise specifically agreed by the affected administration(s). The provisions of this footnote in no way derogate the obligations of the aeronautical mobile-satellite service to operate as a secondary service in accordance with No. 5.29. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.504A]: In the band 14-14.5 GHz, aircraft earth stations in the secondary aeronautical mobile-satellite service may also communicate with space stations in the fixed-satellite service. The provisions of Nos. 5.29, 5.30 and 5.31 apply. (WRC-03)']), (14500000000, 14750000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.509B][5.509C][5.509D][5.509E][5.509F][5.510]'], ['Space Research [5.509G]'], ['[5.509B]: The use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service is limited to geostationary-satellites. (WRC-15)', '[5.509C]: For the use of the frequency bands 14.5-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.5-14.8 GHz in countries listed in Resolution 164 (WRC-15) by the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service, the fixed-satellite service earth stations shall have a minimum antenna diameter of 6 m and a maximum power spectral density of −44.5 dBW/Hz at the input of the antenna. The earth stations shall be notified at known locations on land. (WRC-15)', '[5.509D]: Before an administration brings into use an earth station in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service in the frequency bands 14.5-14.75 GHz (in countries listed in Resolution 163 (WRC-15)) and 14.5-14.8 GHz (in countries listed in Resolution 164 (WRC-15)), it shall ensure that the power flux-density produced by this earth station does not exceed −151.5 dB(W/(m2 · 4 kHz)) produced at all altitudes from 0 m to 19 000 m above sea level at 22 km seaward from all coasts, defined as the low-water mark, as officially recognized by each coastal State. (WRC-15)', '[5.509E]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), the location of earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall maintain a separation distance of at least 500 km from the border(s) of other countries unless shorter distances are explicitly agreed by those administrations. No. 9.17 does not apply. When applying this provision, administrations should consider the relevant parts of these Regulations and the latest relevant ITU-R Recommendations. (WRC-15)', '[5.509F]: In the frequency bands 14.50-14.75 GHz in countries listed in Resolution 163 (WRC-15) and 14.50-14.8 GHz in countries listed in Resolution 164 (WRC-15), earth stations in the fixed-satellite service (Earth-to-space) not for feeder links for the broadcasting-satellite service shall not constrain the future deployment of the fixed and mobile services. (WRC-15)', '[5.510]: Except for use in accordance with Resolution 163 (WRC-15) and Resolution 164 (WRC-15), the use of the frequency band 14.5-14.8 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. This use is reserved for countries outside Europe. Uses other than feeder links for the broadcasting-satellite service are not authorized in Regions 1 and 2 in the frequency band 14.75-14.8 GHz. (WRC-15)', '[5.509G]: The frequency band 14.5-14.8 GHz is also allocated to the space research service on a primary basis. However, such use is limited to the satellite systems operating in the space research service (Earth-to-space) to relay data to space stations in the geostationary-satellite orbit from associated earth stations. Stations in the space research service shall not cause harmful interference to, or claim protection from, stations in the fixed and mobile services and in the fixed-satellite service limited to feeder links for the broadcasting-satellite service and associated space operations functions using the guardbands under Appendix 30A and feeder links for the broadcasting-satellite service in Region 2. Other uses of this frequency band by the space research service are on a secondary basis. (WRC-15)']), (14750000000, 14800000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.510]'], ['Space Research [5.509G]'], ['[5.510]: Except for use in accordance with Resolution 163 (WRC-15) and Resolution 164 (WRC-15), the use of the frequency band 14.5-14.8 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. This use is reserved for countries outside Europe. Uses other than feeder links for the broadcasting-satellite service are not authorized in Regions 1 and 2 in the frequency band 14.75-14.8 GHz. (WRC-15)', '[5.509G]: The frequency band 14.5-14.8 GHz is also allocated to the space research service on a primary basis. However, such use is limited to the satellite systems operating in the space research service (Earth-to-space) to relay data to space stations in the geostationary-satellite orbit from associated earth stations. Stations in the space research service shall not cause harmful interference to, or claim protection from, stations in the fixed and mobile services and in the fixed-satellite service limited to feeder links for the broadcasting-satellite service and associated space operations functions using the guardbands under Appendix 30A and feeder links for the broadcasting-satellite service in Region 2. Other uses of this frequency band by the space research service are on a secondary basis. (WRC-15)']), (14800000000, 15350000001): (False, True, True, False, False, [], ['Space Research'], ['[5.339]: The bands 1 370-1 400 MHz, 2 640-2 655 MHz, 4 950-4 990 MHz and 15.20-15.35 GHz are also allocated to the space research (passive) and Earth exploration-satellite (passive) services on a secondary basis.']), (15350000000, 15400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.511]: Additional allocation: in Saudi Arabia, Bahrain, Cameroon, Egypt, the United Arab Emirates, Guinea, Iran (Islamic Republic of), Iraq, Israel, Kuwait, Lebanon, Oman, Pakistan, Qatar, the Syrian Arab Republic and Somalia, the band 15.35-15.4 GHz is also allocated to the fixed and mobile services on a secondary basis. (WRC-12)']), (15400000000, 15430000001): (False, False, False, False, False, ['Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)']), (15430000000, 15630000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.511A]', 'Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511A]: Use of the frequency band 15.43-15.63 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links of non-geostationary systems in the mobile-satellite service, subject to coordination under No. 9.11A. (WRC-15)', '[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)', '[5.511C]: Stations operating in the aeronautical radionavigation service shall limit the effective e.i.r.p. in accordance with Recommendation ITU-R S.1340-0. The minimum coordination distance required to protect the aeronautical radionavigation stations (No. 4.10 applies) from harmful interference from feeder-link earth stations and the maximum e.i.r.p. transmitted towards the local horizontal plane by a feeder-link earth station shall be in accordance with Recommendation ITU-R S.1340-0. (WRC-15)']), (15630000000, 15700000001): (False, False, False, False, False, ['Radiolocation [5.511E][5.511F]', 'Aeronautical Radionavigation'], [], ['[5.511E]: In the frequency band 15.4-15.7 GHz, stations operating in the radiolocation service shall not cause harmful interference to, or claim protection from, stations operating in the aeronautical radionavigation service. (WRC-12)', '[5.511F]: In order to protect the radio astronomy service in the frequency band 15.35-15.4 GHz, radiolocation stations operating in the frequency band 15.4-15.7 GHz shall not exceed the power flux-density level of −156 dB(W/m2) in a 50 MHz bandwidth in the frequency band 15.35-15.4 GHz, at any radio astronomy observatory site for more than 2 per cent of the time. (WRC-12)']), (15700000000, 16600000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (16600000000, 17100000001): (False, False, False, False, False, ['Radiolocation'], ['Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (17100000000, 17200000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.']), (17200000000, 17300000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.512]: Additional allocation: in Algeria, Saudi Arabia, Austria, Bahrain, Bangladesh, Brunei Darussalam, Cameroon, Congo (Rep. of the), Egypt, El Salvador, the United Arab Emirates, Eritrea, Finland, Guatemala, India, Indonesia, Iran (Islamic Republic of), Jordan, Kenya, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Montenegro, Nepal, Nicaragua, Niger, Oman, Pakistan, Qatar, Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Yemen, the frequency band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-15)', '[5.513]: Additional allocation: in Israel, the band 15.7-17.3 GHz is also allocated to the fixed and mobile services on a primary basis. These services shall not claim protection from or cause harmful interference to services operating in accordance with the Table in countries other than those included in No. 5.512.', '[5.513A]: Spaceborne active sensors operating in the band 17.2-17.3 GHz shall not cause harmful interference to, or constrain the development of, the radiolocation and other services allocated on a primary basis. (WRC-97)']), (17300000000, 17700000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516]', 'Broadcasting-Satellite'], ['Radiolocation'], ['[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.514]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Bangladesh, Cameroon, El Salvador, the United Arab Emirates, Guatemala, India, Iran (Islamic Republic of), Iraq, Israel, Italy, Japan, Jordan, Kuwait, Libya, Lithuania, Nepal, Nicaragua, Nigeria, Oman, Uzbekistan, Pakistan, Qatar, Kyrgyzstan, Sudan and South Sudan, the frequency band 17.3-17.7 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits given in Nos. 21.3 and 21.5 shall apply. (WRC-15)', '[5.515]: In the band 17.3-17.8 GHz, sharing between the fixed-satellite service (Earth-to-space) and the broadcasting-satellite service shall also be in accordance with the provisions of § 1 of Annex 4 of Appendix 30A.']), (17700000000, 17800000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.517]', 'Fixed-Satellite (Earth-To-Space) [5.516]', 'Broadcasting-Satellite'], [], ['[5.517]: In Region 2, use of the fixed-satellite (space-to-Earth) service in the band 17.7-17.8 GHz shall not cause harmful interference to nor claim protection from assignments in the broadcasting-satellite service operating in conformity with the Radio Regulations. (WRC-07)', '[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.515]: In the band 17.3-17.8 GHz, sharing between the fixed-satellite service (Earth-to-space) and the broadcasting-satellite service shall also be in accordance with the provisions of § 1 of Annex 4 of Appendix 30A.']), (17800000000, 18100000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A]', 'Fixed-Satellite (Earth-To-Space) [5.516]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516]: The use of the band 17.3-18.1 GHz by geostationary-satellite systems in the fixed-satellite service (Earth-to-space) is limited to feeder links for the broadcasting-satellite service. The use of the band 17.3-17.8 GHz in Region 2 by systems in the fixed-satellite service (Earth-to-space) is limited to geostationary satellites. For the use of the band 17.3-17.8 GHz in Region 2 by feeder links for the broadcasting-satellite service in the band 12.2-12.7 GHz, see Article 11. The use of the bands 17.3-18.1 GHz (Earth-to-space) in Regions 1 and 3 and 17.8-18.1 GHz (Earth-to-space) in Region 2 by non-geostationary-satellite systems in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.519]: Additional allocation: the bands 18-18.3 GHz in Region 2 and 18.1-18.4 GHz in Regions 1 and 3 are also allocated to the meteorological-satellite service (space-to-Earth) on a primary basis. Their use is limited to geostationary satellites. (WRC-07)']), (18100000000, 18400000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.516B]', 'Fixed-Satellite (Earth-To-Space) [5.520]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.520]: The use of the band 18.1-18.4 GHz by the fixed-satellite service (Earth-to-space) is limited to feeder links of geostationary-satellite systems in the broadcasting-satellite service. (WRC-2000)', '[5.519]: Additional allocation: the bands 18-18.3 GHz in Region 2 and 18.1-18.4 GHz in Regions 1 and 3 are also allocated to the meteorological-satellite service (space-to-Earth) on a primary basis. Their use is limited to geostationary satellites. (WRC-07)', '[5.521]: Alternative allocation: in the United Arab Emirates and Greece, the frequency band 18.1-18.4 GHz is allocated to the fixed, fixed-satellite (space-to-Earth) and mobile services on a primary basis (see No. 5.33). The provisions of No. 5.519 also apply. (WRC-15)']), (18400000000, 18600000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.516B]'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03)']), (18600000000, 18800000001): (False, True, True, False, True, ['Earth Exploration- Satellite (Passive)', 'Fixed-Satellite (Space-To-Earth) [5.516B][5.522B]', 'Mobile Except Aeronautical Mobile', 'Space Research (Passive)'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.522B]: The use of the band 18.6-18.8 GHz by the fixed-satellite service is limited to geostationary systems and systems with an orbit of apogee greater than 20 000 km. (WRC-2000)', '[5.522A]: The emissions of the fixed service and the fixed-satellite service in the band 18.6-18.8 GHz are limited to the values given in Nos. 21.5A and 21.16.2, respectively. (WRC-2000)']), (18800000000, 19300000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.516B][5.523A]'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523A]: The use of the bands 18.8-19.3 GHz (space-to-Earth) and 28.6-29.1 GHz (Earth-to-space) by geostationary and non-geostationary fixed-satellite service networks is subject to the application of the provisions of No. 9.11A and No. 22.2 does not apply. Administrations having geostationary-satellite networks under coordination prior to 18 November 1995 shall cooperate to the maximum extent possible to coordinate pursuant to No. 9.11A with non-geostationary-satellite networks for which notification information has been received by the Bureau prior to that date, with a view to reaching results acceptable to all the parties concerned. Non-geostationary-satellite networks shall not cause unacceptable interference to geostationary fixed-satellite service networks for which complete Appendix 4 notification information is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)']), (19300000000, 19700000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.523B][5.523C][5.523D][5.523E]', 'Fixed-Satellite (Earth-To-Space) [5.523B][5.523C][5.523D][5.523E]'], [], ['[5.523B]: The use of the band 19.3-19.6 GHz (Earth-to-space) by the fixed-satellite service is limited to feeder links for non-geostationary-satellite systems in the mobile-satellite service. Such use is subject to the application of the provisions of No. 9.11A, and No. 22.2 does not apply.', '[5.523C]: No. 22.2 shall continue to apply in the bands 19.3-19.6 GHz and 29.1-29.4 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.523D]: The use of the band 19.3-19.7 GHz (space-to-Earth) by geostationary fixed-satellite service systems and by feeder links for non-geostationary-satellite systems in the mobile-satellite service is subject to the application of the provisions of No. 9.11A, but not subject to the provisions of No. 22.2. The use of this band for other non-geostationary fixed-satellite service systems, or for the cases indicated in Nos. 5.523C and 5.523E, is not subject to the provisions of No. 9.11A and shall continue to be subject to Articles 9 (except No. 9.11A) and 11 procedures, and to the provisions of No. 22.2. (WRC-97)', '[5.523E]: No. 22.2 shall continue to apply in the bands 19.6-19.7 GHz and 29.4-29.5 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau by 21 November 1997. (WRC-97)']), (19700000000, 20100000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.516B][5.527A]', 'Mobile-Satellite (Space-To-Earth)'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.528]: The allocation to the mobile-satellite service is intended for use by networks which use narrow spot-beam antennas and other advanced technology at the space stations. Administrations operating systems in the mobile-satellite service in the band 19.7-20.1 GHz in Region 2 and in the band 20.1-20.2 GHz shall take all practicable steps to ensure the continued availability of these bands for administrations operating fixed and mobile systems in accordance with the provisions of No. 5.524.', '[5.529]: The use of the bands 19.7-20.1 GHz and 29.5-29.9 GHz by the mobile-satellite service in Region 2 is limited to satellite networks which are both in the fixed-satellite service and in the mobile-satellite service as described in No. 5.526.']), (20100000000, 20200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth) [5.484A][5.484B][5.516B][5.527A]', 'Mobile-Satellite (Space-To-Earth)'], [], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.528]: The allocation to the mobile-satellite service is intended for use by networks which use narrow spot-beam antennas and other advanced technology at the space stations. Administrations operating systems in the mobile-satellite service in the band 19.7-20.1 GHz in Region 2 and in the band 20.1-20.2 GHz shall take all practicable steps to ensure the continued availability of these bands for administrations operating fixed and mobile systems in accordance with the provisions of No. 5.524.']), (20200000000, 21200000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)'], ['[5.524]: Additional allocation: in Afghanistan, Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Costa Rica, Egypt, the United Arab Emirates, Gabon, Guatemala, Guinea, India, Iran (Islamic Republic of), Iraq, Israel, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, the Dem. People’s Rep. of Korea, Singapore, Somalia, Sudan, South Sudan, Chad, Togo and Tunisia, the frequency band 19.7-21.2 GHz is also allocated to the fixed and mobile services on a primary basis. This additional use shall not impose any limitation on the power flux-density of space stations in the fixed-satellite service in the frequency band 19.7-21.2 GHz and of space stations in the mobile-satellite service in the frequency band 19.7-20.2 GHz where the allocation to the mobile-satellite service is on a primary basis in the latter frequency band. (WRC-15)']), (21200000000, 21400000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], []), (21400000000, 22000000001): (False, True, True, False, False, [], [], ['[5.530A]: Unless otherwise agreed between the administrations concerned, any station in the fixed or mobile services of an administration shall not produce a power flux-density in excess of −120.4 dB(W/(m2 · MHz)) at 3 m above the ground of any point of the territory of any other administration in Regions 1 and 3 for more than 20% of the time. In conducting the calculations, administrations should use the most recent version of Recommendation ITU-R P.452 (see also the most recent version of Recommendation ITU-R BO.1898). (WRC-15)']), (22000000000, 22210000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (22210000000, 22500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.532]: The use of the band 22.21-22.5 GHz by the Earth exploration-satellite (passive) and space research (passive) services shall not impose constraints upon the fixed and mobile, except aeronautical mobile, services.']), (22500000000, 22550000001): (False, True, True, False, False, [], [], []), (22550000000, 23150000001): (False, True, True, False, False, ['Inter-Satellite [5.338A]', 'Space Research (Earth-To-Space) [5.532A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.532A]: The location of earth stations in the space research service shall maintain a separation distance of at least 54 km from the respective border(s) of neighbouring countries to protect the existing and future deployment of fixed and mobile services unless a shorter distance is otherwise agreed between the corresponding administrations. Nos. 9.17 and 9.18 do not apply. (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (23150000000, 23550000001): (False, True, True, False, False, ['Inter-Satellite [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)']), (23550000000, 23600000001): (False, True, True, False, False, [], [], []), (23600000000, 24000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (24000000000, 24050000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (24050000000, 24250000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Earth Exploration-Satellite (Active)'], ['[5.150]: The following bands:13 553-13 567 kHz (centre frequency 13 560 kHz), 26 957-27 283 kHz (centre frequency 27 120 kHz), 40.66-40.70 MHz (centre frequency 40.68 MHz), 902-928 MHz in Region 2 (centre frequency 915 MHz), 2 400-2 500 MHz (centre frequency 2 450 MHz), 5 725-5 875 MHz (centre frequency 5 800 MHz), and 24-24.25 GHz (centre frequency 24.125 GHz) are also designated for industrial, scientific and medical (ISM) applications. Radiocommunication services operating within these bands must accept harmful interference which may be caused by these applications. ISM equipment operating in these bands is subject to the provisions of No. 15.13.']), (24250000000, 24450000001): (False, False, False, False, False, ['Radionavigation'], [], []), (24450000000, 24650000001): (False, False, False, False, False, ['Inter-Satellite', 'Radionavigation'], [], ['[5.533]: The inter-satellite service shall not claim protection from harmful interference from airport surface detection equipment stations of the radionavigation service.']), (24650000000, 24750000001): (False, False, False, False, True, ['Inter-Satellite', 'Radiolocation- Satellite (Earth-To-Space)'], [], []), (24750000000, 25250000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.535]'], [], ['[5.535]: In the band 24.75-25.25 GHz, feeder links to stations of the broadcasting-satellite service shall have priority over other uses in the fixed-satellite service (Earth-to-space). Such other uses shall protect and shall not claim protection from existing and future operating feeder-link networks to such broadcasting satellite stations.']), (25250000000, 25500000001): (False, True, True, False, False, ['Inter-Satellite [5.536]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.']), (25500000000, 27000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Space-To Earth) [5.536B]', 'Inter-Satellite [5.536]', 'Space Research (Space-To-Earth) [5.536C]'], ['Standard Frequency And Time Signal-Satellite (Earth-To-Space)'], ['[5.536B]: In Saudi Arabia, Austria, Bahrain, Belgium, Brazil, China, Korea (Rep. of), Denmark, Egypt, United Arab Emirates, Estonia, Finland, Hungary, India, Iran (Islamic Republic of), Ireland, Israel, Italy, Jordan, Kenya, Kuwait, Lebanon, Libya, Lithuania, Moldova, Norway, Oman, Uganda, Pakistan, the Philippines, Poland, Portugal, the Syrian Arab Republic, Dem. People’s Rep. of Korea, Slovakia, the Czech Rep., Romania, the United Kingdom, Singapore, Sweden, Tanzania, Turkey, Viet Nam and Zimbabwe, earth stations operating in the Earth exploration-satellite service in the frequency band 25.5-27 GHz shall not claim protection from, or constrain the use and deployment of, stations of the fixed and mobile services. (WRC-15)', '[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.', '[5.536C]: In Algeria, Saudi Arabia, Bahrain, Botswana, Brazil, Cameroon, Comoros, Cuba, Djibouti, Egypt, United Arab Emirates, Estonia, Finland, Iran (Islamic Republic of), Israel, Jordan, Kenya, Kuwait, Lithuania, Malaysia, Morocco, Nigeria, Oman, Qatar, Syrian Arab Republic, Somalia, Sudan, South Sudan, Tanzania, Tunisia, Uruguay, Zambia and Zimbabwe, earth stations operating in the space research service in the band 25.5-27 GHz shall not claim protection from, or constrain the use and deployment of, stations of the fixed and mobile services. (WRC-12)', '[5.536A]: Administrations operating earth stations in the Earth exploration-satellite service or the space research service shall not claim protection from stations in the fixed and mobile services operated by other administrations. In addition, earth stations in the Earth exploration-satellite service or in the space research service should be operated taking into account the most recent version of Recommendation ITU-R SA.1862. (WRC-12)']), (27000000000, 27500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Inter-Satellite [5.536][5.537]'], [], ['[5.536]: Use of the 25.25-27.5 GHz band by the inter-satellite service is limited to space research and Earth exploration-satellite applications, and also transmissions of data originating from industrial and medical activities in space.', '[5.537]: Space services using non-geostationary satellites operating in the inter-satellite service in the band 27-27.5 GHz are exempt from the provisions of No. 22.2.']), (27500000000, 28500000001): (False, True, True, False, False, ['Fixed [5.537A]', 'Fixed-Satellite (Earth-To-Space) [5.484A][5.516B][5][.539]'], [], ['[5.537A]: In Bhutan, Cameroon, Korea (Rep. of), the Russian Federation, India, Indonesia, Iran (Islamic Republic of), Iraq, Japan, Kazakhstan, Malaysia, Maldives, Mongolia, Myanmar, Uzbekistan, Pakistan, the Philippines, Kyrgyzstan, the Dem. People’s Rep. of Korea, Sudan, Sri Lanka, Thailand and Viet Nam, the allocation to the fixed service in the band 27.9-28.2 GHz may also be used by high altitude platform stations (HAPS) within the territory of these countries. Such use of 300 MHz of the fixed-service allocation by HAPS in the above countries is further limited to operation in the HAPS-to-ground direction and shall not cause harmful interference to, nor claim protection from, other types of fixed-service systems or other co-primary services. Furthermore, the development of these other services shall not be constrained by HAPS. See Resolution 145 (Rev.WRC-12). (WRC-12)', '[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.538]: Additional allocation: the bands 27.500-27.501 GHz and 29.999-30.000 GHz are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis for the beacon transmissions intended for up-link power control. Such space-to-Earth transmissions shall not exceed an equivalent isotropically radiated power (e.i.r.p.) of +10 dBW in the direction of adjacent satellites on the geostationary-satellite orbit. (WRC-07)', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (28500000000, 29100000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.516B][5.523A][5.539]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523A]: The use of the bands 18.8-19.3 GHz (space-to-Earth) and 28.6-29.1 GHz (Earth-to-space) by geostationary and non-geostationary fixed-satellite service networks is subject to the application of the provisions of No. 9.11A and No. 22.2 does not apply. Administrations having geostationary-satellite networks under coordination prior to 18 November 1995 shall cooperate to the maximum extent possible to coordinate pursuant to No. 9.11A with non-geostationary-satellite networks for which notification information has been received by the Bureau prior to that date, with a view to reaching results acceptable to all the parties concerned. Non-geostationary-satellite networks shall not cause unacceptable interference to geostationary fixed-satellite service networks for which complete Appendix 4 notification information is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29100000000, 29500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516B][5.523C][5.523E][5.535A][5.539][5.541A]'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.523C]: No. 22.2 shall continue to apply in the bands 19.3-19.6 GHz and 29.1-29.4 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau prior to 18 November 1995. (WRC-97)', '[5.523E]: No. 22.2 shall continue to apply in the bands 19.6-19.7 GHz and 29.4-29.5 GHz, between feeder links of non-geostationary mobile-satellite service networks and those fixed-satellite service networks for which complete Appendix 4 coordination information, or notification information, is considered as having been received by the Bureau by 21 November 1997. (WRC-97)', '[5.535A]: The use of the band 29.1-29.5 GHz (Earth-to-space) by the fixed-satellite service is limited to geostationary-satellite systems and feeder links to non-geostationary-satellite systems in the mobile-satellite service. Such use is subject to the application of the provisions of No. 9.11A, but not subject to the provisions of No. 22.2, except as indicated in Nos. 5.523C and 5.523E where such use is not subject to the provisions of No. 9.11A and shall continue to be subject to Articles 9 (except No. 9.11A) and 11 procedures, and to the provisions of No. 22.2. (WRC-97)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541A]: Feeder links of non-geostationary networks in the mobile-satellite service and geostationary networks in the fixed-satellite service operating in the band 29.1-29.5 GHz (Earth-to-space) shall employ uplink adaptive power control or other methods of fade compensation, such that the earth station transmissions shall be conducted at the power level required to meet the desired link performance while reducing the level of mutual interference between both networks. These methods shall apply to networks for which Appendix 4 coordination information is considered as having been received by the Bureau after 17 May 1996 and until they are changed by a future competent world radiocommunication conference. Administrations submitting Appendix 4 information for coordination before this date are encouraged to utilize these techniques to the extent practicable. (WRC-2000)', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29500000000, 29900000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.484B][5.516B][5.527A][5.539]', 'Mobile-Satellite (Earth-To-Space)'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.529]: The use of the bands 19.7-20.1 GHz and 29.5-29.9 GHz by the mobile-satellite service in Region 2 is limited to satellite networks which are both in the fixed-satellite service and in the mobile-satellite service as described in No. 5.526.', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.']), (29900000000, 30000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.484A][5.484B][5.516B][5.527A][5.539]', 'Mobile-Satellite (Earth-To-Space)'], ['Earth Exploration-Satellite (Earth-To-Space) [5.541][5.543]'], ['[5.484A]: The use of the bands 10.95-11.2 GHz (space-to-Earth), 11.45-11.7 GHz (space-to-Earth), 11.7-12.2 GHz (space-to-Earth) in Region 2, 12.2-12.75 GHz (space-to-Earth) in Region 3, 12.5-12.75 GHz (space-to-Earth) in Region 1, 13.75-14.5 GHz (Earth-to-space), 17.8-18.6 GHz (space-to-Earth), 19.7-20.2 GHz (space-to-Earth), 27.5-28.6 GHz (Earth-to-space), 29.5-30 GHz (Earth-to-space) by a non-geostationary-satellite system in the fixed-satellite service is subject to application of the provisions of No. 9.12 for coordination with other non-geostationary-satellite systems in the fixed-satellite service. Non-geostationary-satellite systems in the fixed-satellite service shall not claim protection from geostationary-satellite networks in the fixed-satellite service operating in accordance with the Radio Regulations, irrespective of the dates of receipt by the Bureau of the complete coordination or notification information, as appropriate, for the non-geostationary-satellite systems in the fixed-satellite service and of the complete coordination or notification information, as appropriate, for the geostationary-satellite networks, and No. 5.43A does not apply. Non-geostationary-satellite systems in the fixed-satellite service in the above bands shall be operated in such a way that any unacceptable interference that may occur during their operation shall be rapidly eliminated. (WRC-2000)', '[5.484B]: Resolution 155 (WRC-15) shall apply. (WRC-15)', '[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.527A]: The operation of earth stations in motion communicating with the FSS is subject to Resolution 156 (WRC-15). (WRC-15)', '[5.539]: The band 27.5-30 GHz may be used by the fixed-satellite service (Earth-to-space) for the provision of feeder links for the broadcasting-satellite service.', '[5.541]: In the band 28.5-30 GHz, the earth exploration-satellite service is limited to the transfer of data between stations and not to the primary collection of information by means of active or passive sensors.', '[5.543]: The band 29.95-30 GHz may be used for space-to-space links in the Earth exploration-satellite service for telemetry, tracking, and control purposes, on a secondary basis.', '[5.525]: In order to facilitate interregional coordination between networks in the mobile-satellite and fixed-satellite services, carriers in the mobile-satellite service that are most susceptible to interference shall, to the extent practicable, be located in the higher parts of the bands 19.7-20.2 GHz and 29.5-30 GHz.', '[5.526]: In the bands 19.7-20.2 GHz and 29.5-30 GHz in Region 2, and in the bands 20.1-20.2 GHz and 29.9-30 GHz in Regions 1 and 3, networks which are both in the fixed-satellite service and in the mobile-satellite service may include links between earth stations at specified or unspecified points or while in motion, through one or more satellites for point-to-point and point-to-multipoint communications.', '[5.527]: In the bands 19.7-20.2 GHz and 29.5-30 GHz, the provisions of No. 4.10 do not apply with respect to the mobile-satellite service.', '[5.538]: Additional allocation: the bands 27.500-27.501 GHz and 29.999-30.000 GHz are also allocated to the fixed-satellite service (space-to-Earth) on a primary basis for the beacon transmissions intended for up-link power control. Such space-to-Earth transmissions shall not exceed an equivalent isotropically radiated power (e.i.r.p.) of +10 dBW in the direction of adjacent satellites on the geostationary-satellite orbit. (WRC-07)', '[5.540]: Additional allocation: the band 27.501-29.999 GHz is also allocated to the fixed-satellite service (space-to-Earth) on a secondary basis for beacon transmissions intended for up-link power control.', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (30000000000, 31000000001): (False, False, False, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A]', 'Mobile-Satellite (Earth-To-Space)'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.542]: Additional allocation: in Algeria, Saudi Arabia, Bahrain, Brunei Darussalam, Cameroon, China, Congo (Rep. of the), Egypt, the United Arab Emirates, Eritrea, Ethiopia, Guinea, India, Iran (Islamic Republic of), Iraq, Japan, Jordan, Kuwait, Lebanon, Malaysia, Mali, Morocco, Mauritania, Nepal, Oman, Pakistan, Philippines, Qatar, the Syrian Arab Republic, the Dem. People’s Rep. of Korea, Somalia, Sudan, South Sudan, Sri Lanka and Chad, the band 29.5-31 GHz is also allocated to the fixed and mobile services on a secondary basis. The power limits specified in Nos. 21.3 and 21.5 shall apply. (WRC-12)']), (31000000000, 31300000001): (False, True, True, False, False, ['Fixed [5.338A][5.543A]'], ['Standard Frequency And Time Signal-Satellite (Space-To-Earth)', 'Space Research [5.544][5.545]'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.543A]: In Bhutan, Cameroon, Korea (Rep. of), the Russian Federation, India, Indonesia, Iran (Islamic Republic of), Iraq, Japan, Kazakhstan, Malaysia, Maldives, Mongolia, Myanmar, Uzbekistan, Pakistan, the Philippines, Kyrgyzstan, the Dem. People’s Rep. of Korea, Sudan, Sri Lanka, Thailand and Viet Nam, the allocation to the fixed service in the frequency band 31-31.3 GHz may also be used by systems using high altitude platform stations (HAPS) in the ground-to-HAPS direction. The use of the frequency band 31-31.3 GHz by systems using HAPS is limited to the territory of the countries listed above and shall not cause harmful interference to, nor claim protection from, other types of fixed-service systems, systems in the mobile service and systems operated under No. 5.545. Furthermore, the development of these services shall not be constrained by HAPS. Systems using HAPS in the frequency band 31-31.3 GHz shall not cause harmful interference to the radio astronomy service having a primary allocation in the frequency band 31.3-31.8 GHz, taking into account the protection criterion as given in the most recent version of Recommendation ITU-R RA.769. In order to ensure the protection of satellite passive services, the level of unwanted power density into a HAPS ground station antenna in the frequency band 31.3-31.8 GHz shall be limited to −106 dB(W/MHz) under clear-sky conditions, and may be increased up to −100 dB(W/MHz) under rainy conditions to mitigate fading due to rain, provided the effective impact on the passive satellite does not exceed the impact under clear-sky conditions. See Resolution 145 (Rev.WRC-12). (WRC-15)', '[5.544]: In the band 31-31.3 GHz the power flux-density limits specified in Article 21, Table 21-4 shall apply to the space research service.', '[5.545]: Different category of service: in Armenia, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 31-31.3 GHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (31300000000, 31500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (31500000000, 31800000001): (False, False, False, False, True, ['Earth Exploration- Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (31800000000, 32000000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547B]: Alternative allocation: in the United States, the band 31.8-32 GHz is allocated to the radionavigation and space research (deep space) (space-to-Earth) services on a primary basis. (WRC-97)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (32000000000, 32300000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation', 'Space Research (Deep Space)', 'Space Research (Space-To-Earth)'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547C]: Alternative allocation: in the United States, the band 32-32.3 GHz is allocated to the radionavigation and space research (deep space) (space-to-Earth) services on a primary basis. (WRC-03)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (32300000000, 33000000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Inter-Satellite', 'Radionavigation'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547D]: Alternative allocation: in the United States, the band 32.3-33 GHz is allocated to the inter-satellite and radionavigation services on a primary basis. (WRC-97)', '[5.548]: In designing systems for the inter-satellite service in the band 32.3-33 GHz, for the radionavigation service in the band 32-33 GHz, and for the space research service (deep space) in the band 31.8-32.3 GHz, administrations shall take all necessary measures to prevent harmful interference between these services, bearing in mind the safety aspects of the radionavigation service (see Recommendation 707). (WRC-03)']), (33000000000, 33400000001): (False, True, False, False, False, ['Fixed [5.547A]', 'Radionavigation'], [], ['[5.547A]: Administrations should take practical measures to minimize the potential interference between stations in the fixed service and airborne stations in the radionavigation service in the 31.8-33.4 GHz band, taking into account the operational needs of the airborne radar systems. (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.547E]: Alternative allocation: in the United States, the band 33-33.4 GHz is allocated to the radionavigation service on a primary basis. (WRC-97)']), (33400000000, 34200000001): (False, False, False, False, False, ['Radiolocation'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (34200000000, 34700000001): (False, False, False, False, False, ['Radiolocation', 'Space Research (Deep Space)', 'Space Research (Earth-To-Space)'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (34700000000, 35200000001): (False, False, False, False, False, ['Radiolocation'], ['Space Research [5.550]'], ['[5.550]: Different category of service: in Armenia, Azerbaijan, Belarus, the Russian Federation, Georgia, Kyrgyzstan, Tajikistan and Turkmenistan, the allocation of the band 34.7-35.2 GHz to the space research service is on a primary basis (see No. 5.33). (WRC-12)', '[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (35200000000, 35500000001): (False, False, False, False, False, ['Meteorological Aids', 'Radiolocation'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)']), (35500000000, 36000000001): (False, False, False, False, False, ['Meteorological Aids', 'Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], [], ['[5.549]: Additional allocation: in Saudi Arabia, Bahrain, Bangladesh, Egypt, the United Arab Emirates, Gabon, Indonesia, Iran (Islamic Republic of), Iraq, Israel, Jordan, Kuwait, Lebanon, Libya, Malaysia, Mali, Morocco, Mauritania, Nepal, Nigeria, Oman, Pakistan, the Philippines, Qatar, the Syrian Arab Republic, the Dem. Rep. of the Congo, Singapore, Somalia, Sudan, South Sudan, Sri Lanka, Togo, Tunisia and Yemen, the band 33.4-36 GHz is also allocated to the fixed and mobile services on a primary basis. (WRC-12)', '[5.549A]: In the band 35.5-36.0 GHz, the mean power flux-density at the Earth’s surface, generated by any spaceborne sensor in the Earth exploration-satellite service (active) or space research service (active), for any angle greater than 0.8° from the beam centre shall not exceed -73.3 dB(W/m2) in this band. (WRC-03)']), (36000000000, 37000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.550A]: For sharing of the band 36-37 GHz between the Earth exploration-satellite (passive) service and the fixed and mobile services, Resolution 752 (WRC-07) shall apply. (WRC-07)']), (37000000000, 37500000001): (False, True, True, False, False, ['Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth)'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (37500000000, 38000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile Except Aeronautical Mobile', 'Space Research (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (38000000000, 39500000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (39500000000, 40000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Mobile-Satellite (Space-To-Earth)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (40000000000, 40500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Earth-To-Space)', 'Fixed-Satellite (Space-To-Earth) [5.516B]', 'Mobile-Satellite (Space-To-Earth)', 'Space Research (Earth-To-Space)'], ['Earth Exploration-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03)']), (40500000000, 41000000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Broadcasting', 'Broadcasting-Satellite'], ['Mobile-Satellite (Space-To-Earth)'], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (41000000000, 42500000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth) [5.516B]', 'Broadcasting', 'Broadcasting-Satellite'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.551F]: Different category of service: in Japan, the allocation of the band 41.5-42.5 GHz to the mobile service is on a primary basis (see No. 5.33). (WRC-97)', '[5.551H]: The equivalent power flux-density (epfd) produced in the frequency band 42.5-43.5 GHz by all space stations in any non-geostationary-satellite system in the fixed-satellite service (space-to-Earth), or in the broadcasting-satellite service operating in the frequency band 42-42.5 GHz, shall not exceed the following values at the site of any radio astronomy station for more than 2% of the time:−230 dB(W/m2) in 1 GHz and −246 dB(W/m2) in any 500 kHz of the frequency band 42.5-43.5 GHz at the site of any radio astronomy station registered as a single-dish telescope; and −209 dB(W/m2) in any 500 kHz of the frequency band 42.5-43.5 GHz at the site of any radio astronomy station registered as a very long baseline interferometry station. These epfd values shall be evaluated using the methodology given in Recommendation ITU-R S.1586-1 and the reference antenna pattern and the maximum gain of an antenna in the radio astronomy service given in Recommendation ITU-R RA.1631-0 and shall apply over the whole sky and for elevation angles higher than the minimum operating angle θmin of the radiotelescope (for which a default value of 5° should be adopted in the absence of notified information). These values shall apply at any radio astronomy station that either: – was in operation prior to 5 July 2003 and has been notified to the Bureau before 4 January 2004; or – was notified before the date of receipt of the complete Appendix 4 information for coordination or notification, as appropriate, for the space station to which the limits apply. Other radio astronomy stations notified after these dates may seek an agreement with administrations that have authorized the space stations. In Region 2, Resolution 743 (WRC-03) shall apply. The limits in this footnote may be exceeded at the site of a radio astronomy station of any country whose administration so agreed. (WRC-15) ', '[5.551I]: The power flux-density in the band 42.5-43.5 GHz produced by any geostationary space station in the fixed-satellite service (space-to-Earth), or the broadcasting-satellite service operating in the 42-42.5 GHz band, shall not exceed the following values at the site of any radio astronomy station:–137 dB(W/m2) in 1 GHz and –153 dB(W/m2) in any 500 kHz of the 42.5-43.5 GHz band at the site of any radio astronomy station registered as a single-dish telescope; and –116 dB(W/m2) in any 500 kHz of the 42.5-43.5 GHz band at the site of any radio astronomy station registered as a very long baseline interferometry station. These values shall apply at the site of any radio astronomy station that either: – was in operation prior to 5 July 2003 and has been notified to the Bureau before 4 January 2004; or – was notified before the date of receipt of the complete Appendix 4 information for coordination or notification, as appropriate, for the space station to which the limits apply. Other radio astronomy stations notified after these dates may seek an agreement with administrations that have authorized the space stations. In Region 2, Resolution 743 (WRC-03) shall apply. The limits in this footnote may be exceeded at the site of a radio astronomy station of any country whose administration so agreed. (WRC-03)']), (42500000000, 43500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]', 'Mobile Except Aeronautical Mobile', 'Radio Astronomy'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (43500000000, 47000000001): (False, False, True, False, False, ['Mobile [5.553]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.553]: In the bands 43.5-47 GHz and 66-71 GHz, stations in the land mobile service may be operated subject to not causing harmful interference to the space radiocommunication services to which these bands are allocated (see No. 5.43). (WRC-2000)', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (47000000000, 47200000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], [], []), (47200000000, 47500000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.552A]: The allocation to the fixed service in the bands 47.2-47.5 GHz and 47.9-48.2 GHz is designated for use by high altitude platform stations. The use of the bands 47.2-47.5 GHz and 47.9-48.2 GHz is subject to the provisions of Resolution 122 (Rev.WRC-07). (WRC-07)']), (47500000000, 47900000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.']), (47900000000, 48200000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.552]'], [], ['[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.552A]: The allocation to the fixed service in the bands 47.2-47.5 GHz and 47.9-48.2 GHz is designated for use by high altitude platform stations. The use of the bands 47.2-47.5 GHz and 47.9-48.2 GHz is subject to the provisions of Resolution 122 (Rev.WRC-07). (WRC-07)']), (48200000000, 50200000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.516B][5.338A][5.552]'], [], ['[5.516B]: The following bands are identified for use by high-density applications in the fixed-satellite service:17.3-17.7 GHz (space-to-Earth) in Region 1, 18.3-19.3 GHz (space-to-Earth) in Region 2, 19.7-20.2 GHz (space-to-Earth) in all Regions, 39.5-40 GHz (space-to-Earth) in Region 1, 40-40.5 GHz (space-to-Earth) in all Regions, 40.5-42 GHz (space-to-Earth) in Region 2, 47.5-47.9 GHz (space-to-Earth) in Region 1, 48.2-48.54 GHz (space-to-Earth) in Region 1, 49.44-50.2 GHz (space-to-Earth) in Region 1, and 27.5-27.82 GHz (Earth-to-space) in Region 1, 28.35-28.45 GHz (Earth-to-space) in Region 2, 28.45-28.94 GHz (Earth-to-space) in all Regions, 28.94-29.1 GHz (Earth-to-space) in Region 2 and 3, 29.25-29.46 GHz (Earth-to-space) in Region 2, 29.46-30 GHz (Earth-to-space) in all Regions, 48.2-50.2 GHz (Earth-to-space) in Region 2. This identification does not preclude the use of these bands by other fixed-satellite service applications or by other services to which these bands are allocated on a co-primary basis and does not establish priority in these Radio Regulations among users of the bands. Administrations should take this into account when considering regulatory provisions in relation to these bands. See Resolution 143 (WRC-03)*. (WRC-03) ', '[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.552]: The allocation of the spectrum for the fixed-satellite service in the bands 42.5-43.5 GHz and 47.2-50.2 GHz for Earth-to-space transmission is greater than that in the band 37.5-39.5 GHz for space-to-Earth transmission in order to accommodate feeder links to broadcasting satellites. Administrations are urged to take all practicable steps to reserve the band 47.2-49.2 GHz for feeder links for the broadcasting-satellite service operating in the band 40.5-42.5 GHz.', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.555]: Additional allocation: the band 48.94-49.04 GHz is also allocated to the radio astronomy service on a primary basis. (WRC-2000)']), (50200000000, 50400000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (50400000000, 51400000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space) [5.338A]'], ['Mobile-Satellite (Earth-To-Space)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)']), (51400000000, 52600000001): (False, True, True, False, False, ['Fixed [5.338A]'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (52600000000, 54250000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (54250000000, 55780000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.556B]: Additional allocation: in Japan, the band 54.25-55.78 GHz is also allocated to the mobile service on a primary basis for low-density use. (WRC-97)']), (55780000000, 56900000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed [5.557A]', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.557A]: In the band 55.78-56.26 GHz, in order to protect stations in the Earth exploration-satellite service (passive), the maximum power density delivered by a transmitter to the antenna of a fixed service station is limited to –26 dB(W/MHz). (WRC-2000)', '[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (56900000000, 57000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.558A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.558A]: Use of the band 56.9-57 GHz by inter-satellite systems is limited to links between satellites in geostationary-satellite orbit and to transmissions from non-geostationary satellites in high-Earth orbit to those in low-Earth orbit. For links between satellites in the geostationary-satellite orbit, the single entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (57000000000, 58200000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.557]: Additional allocation: in Japan, the band 55.78-58.2 GHz is also allocated to the radiolocation service on a primary basis. (WRC-97)']), (58200000000, 59000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (59000000000, 59300000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.556A]', 'Mobile [5.558]', 'Radiolocation [5.559]', 'Space Research (Passive)'], [], ['[5.556A]: Use of the bands 54.25-56.9 GHz, 57-58.2 GHz and 59-59.3 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density at all altitudes from 0 km to 1 000 km above the Earth’s surface produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, shall not exceed –147 dB(W/(m2 × 100 MHz)) for all angles of arrival. (WRC-97)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.559]: In the band 59-64 GHz, airborne radars in the radiolocation service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)']), (59300000000, 64000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]', 'Radiolocation [5.559]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.559]: In the band 59-64 GHz, airborne radars in the radiolocation service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (64000000000, 65000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile Except Aeronautical Mobile'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)', '[5.556]: In the bands 51.4-54.25 GHz, 58.2-59 GHz and 64-65 GHz, radio astronomy observations may be carried out under national arrangements. (WRC-2000)']), (65000000000, 66000000001): (False, True, True, False, False, ['Earth Exploration-Satellite', 'Inter-Satellite', 'Mobile Except Aeronautical Mobile', 'Space Research'], [], ['[5.547]: The bands 31.8-33.4 GHz, 37-40 GHz, 40.5-43.5 GHz, 51.4-52.6 GHz, 55.78-59 GHz and 64-66 GHz are available for high-density applications in the fixed service (see Resolution 75 (WRC-2000)*). Administrations should take this into account when considering regulatory provisions in relation to these bands. Because of the potential deployment of high-density applications in the fixed-satellite service in the bands 39.5-40 GHz and 40.5-42 GHz (see No. 5.516B), administrations should further take into account potential constraints to high-density applications in the fixed service, as appropriate. (WRC-07)']), (66000000000, 71000000001): (False, False, True, False, False, ['Inter-Satellite', 'Mobile [5.553][5.558]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.553]: In the bands 43.5-47 GHz and 66-71 GHz, stations in the land mobile service may be operated subject to not causing harmful interference to the space radiocommunication services to which these bands are allocated (see No. 5.43). (WRC-2000)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (71000000000, 74000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], [], []), (74000000000, 76000000001): (False, True, True, True, False, ['Fixed-Satellite (Space-To-Earth)', 'Broadcasting', 'Broadcasting-Satellite'], ['Space Research (Space-To-Earth)'], ['[5.561]: In the band 74-76 GHz, stations in the fixed, mobile and broadcasting services shall not cause harmful interference to stations of the fixed-satellite service or stations of the broadcasting-satellite service operating in accordance with the decisions of the appropriate frequency assignment planning conference for the broadcasting-satellite service. (WRC-2000)']), (76000000000, 77500000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (77500000000, 78000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite', 'Radiolocation [5.559B]'], ['Radio Astronomy', 'Space Research (Space-To-Earth)'], ['[5.559B]: The use of the frequency band 77.5-78 GHz by the radiolocation service shall be limited to short-range radar for ground-based applications, including automotive radars. The technical characteristics of these radars are provided in the most recent version of Recommendation ITU-R M.2057. The provisions of No. 4.10 do not apply. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (78000000000, 79000000001): (True, False, False, False, False, ['Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Radio Astronomy', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.560]: In the band 78-79 GHz radars located on space stations may be operated on a primary basis in the Earth exploration-satellite service and in the space research service.']), (79000000000, 81000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite', 'Space Research (Space-To-Earth)'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (81000000000, 84000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Fixed-Satellite (Earth-To-Space)', 'Mobile-Satellite (Earth-To-Space)', 'Radio Astronomy'], ['Space Research (Space-To-Earth)'], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.561A]: The 81-81.5 GHz band is also allocated to the amateur and amateur-satellite services on a secondary basis. (WRC-2000)']), (84000000000, 86000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Fixed-Satellite (Earth-To-Space) [5.561B]', 'Radio Astronomy'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.561B]: In Japan, use of the band 84-86 GHz, by the fixed-satellite service (Earth-to-space) is limited to feeder links in the broadcasting-satellite service using the geostationary-satellite orbit. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (86000000000, 92000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (92000000000, 94000000001): (False, True, True, False, False, ['Fixed [5.338A]', 'Radio Astronomy', 'Radiolocation'], [], ['[5.338A]: In the frequency bands 1 350-1 400 MHz, 1 427-1 452 MHz, 22.55-23.55 GHz, 30-31.3 GHz, 49.7-50.2 GHz, 50.4-50.9 GHz, 51.4-52.6 GHz, 81-86 GHz and 92-94 GHz, Resolution 750 (Rev.WRC-15) applies. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (94000000000, 94100000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Active)', 'Radiolocation', 'Space Research (Active)'], ['Radio Astronomy'], ['[5.562]: The use of the band 94-94.1 GHz by the Earth exploration-satellite (active) and space research (active) services is limited to spaceborne cloud radars. (WRC-97)', '[5.562A]: In the bands 94-94.1 GHz and 130-134 GHz, transmissions from space stations of the Earth exploration-satellite service (active) that are directed into the main beam of a radio astronomy antenna have the potential to damage some radio astronomy receivers. Space agencies operating the transmitters and the radio astronomy stations concerned should mutually plan their operations so as to avoid such occurrences to the maximum extent possible. (WRC-2000)']), (94100000000, 95000000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (95000000000, 100000000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (100000000000, 102000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (102000000000, 105000000001): (False, True, True, False, False, ['Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (105000000000, 109500000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (109500000000, 111800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (111800000000, 114250000001): (False, True, True, False, False, ['Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (114250000000, 116000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (116000000000, 119980000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562C]', 'Space Research (Passive)'], [], ['[5.562C]: Use of the band 116-122.25 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 km to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed –148 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (119980000000, 122250000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562C]', 'Space Research (Passive)'], [], ['[5.562C]: Use of the band 116-122.25 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 km to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed –148 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (122250000000, 123000000001): (True, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]'], ['Amateur'], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations.']), (123000000000, 130000000001): (False, False, False, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)', 'Radionavigation', 'Radionavigation-Satellite'], ['Radio Astronomy [5.562D]'], ['[5.562D]: Additional allocation: In Korea (Rep. of), the frequency bands 128-130 GHz, 171-171.6 GHz, 172.2-172.8 GHz and 173.3-174 GHz are also allocated to the radio astronomy service on a primary basis. Radio astronomy stations in Korea (Rep. of) operating in the frequency bands referred to in this footnote shall not claim protection from, or constrain the use and development of, services in other countries operating in accordance with the Radio Regulations. (WRC-15)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (130000000000, 134000000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Active) [5.562E]', 'Inter-Satellite', 'Mobile [5.558]', 'Radio Astronomy'], [], ['[5.562E]: The allocation to the Earth exploration-satellite service (active) is limited to the band 133.5-134 GHz. (WRC-2000)', '[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562A]: In the bands 94-94.1 GHz and 130-134 GHz, transmissions from space stations of the Earth exploration-satellite service (active) that are directed into the main beam of a radio astronomy antenna have the potential to damage some radio astronomy receivers. Space agencies operating the transmitters and the radio astronomy stations concerned should mutually plan their operations so as to avoid such occurrences to the maximum extent possible. (WRC-2000)']), (134000000000, 136000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], ['Radio Astronomy'], []), (136000000000, 141000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (141000000000, 148500000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (148500000000, 151500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (151500000000, 155500000001): (False, True, True, False, False, ['Radio Astronomy', 'Radiolocation'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (155500000000, 158500000001): (False, True, True, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562F]: In the band 155.5-158.5 GHz, the allocation to the Earth exploration-satellite (passive) and space research (passive) services shall terminate on 1 January 2018. (WRC-2000)', '[5.562G]: The date of entry into force of the allocation to the fixed and mobile services in the band 155.5-158.5 GHz shall be 1 January 2018. (WRC-2000)']), (158500000000, 164000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Mobile-Satellite (Space-To-Earth)'], [], []), (164000000000, 167000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (167000000000, 174500000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Inter-Satellite', 'Mobile [5.558]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.562D]: Additional allocation: In Korea (Rep. of), the frequency bands 128-130 GHz, 171-171.6 GHz, 172.2-172.8 GHz and 173.3-174 GHz are also allocated to the radio astronomy service on a primary basis. Radio astronomy stations in Korea (Rep. of) operating in the frequency bands referred to in this footnote shall not claim protection from, or constrain the use and development of, services in other countries operating in accordance with the Radio Regulations. (WRC-15)']), (174500000000, 174800000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)']), (174800000000, 182000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562H]', 'Space Research (Passive)'], [], ['[5.562H]: Use of the bands 174.8-182 GHz and 185-190 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed -144 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)']), (182000000000, 185000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (185000000000, 190000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Inter-Satellite [5.562H]', 'Space Research (Passive)'], [], ['[5.562H]: Use of the bands 174.8-182 GHz and 185-190 GHz by the inter-satellite service is limited to satellites in the geostationary-satellite orbit. The single-entry power flux-density produced by a station in the inter-satellite service, for all conditions and for all methods of modulation, at all altitudes from 0 to 1 000 km above the Earth’s surface and in the vicinity of all geostationary orbital positions occupied by passive sensors, shall not exceed -144 dB(W/(m2 × MHz)) for all angles of arrival. (WRC-2000)']), (190000000000, 191800000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (191800000000, 200000000001): (False, True, True, False, False, ['Inter-Satellite', 'Mobile [5.558]', 'Mobile-Satellite', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.558]: In the bands 55.78-58.2 GHz, 59-64 GHz, 66-71 GHz, 122.25-123 GHz, 130-134 GHz, 167-174.8 GHz and 191.8-200 GHz, stations in the aeronautical mobile service may be operated subject to not causing harmful interference to the inter-satellite service (see No. 5.43). (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (200000000000, 209000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (209000000000, 217000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (217000000000, 226000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy', 'Space Research (Passive) [5.562B]'], [], ['[5.562B]: In the bands 105-109.5 GHz, 111.8-114.25 GHz, 155.5-158.5 GHz and 217-226 GHz, the use of this allocation is limited to space-based radio astronomy only. (WRC-2000)', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.341]: In the bands 1 400-1 727 MHz, 101-120 GHz and 197-220 GHz, passive research is being conducted by some countries in a programme for the search for intentional emissions of extraterrestrial origin.']), (226000000000, 231500000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03)']), (231500000000, 232000000001): (False, True, True, False, False, [], ['Radiolocation'], []), (232000000000, 235000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)'], ['Radiolocation'], []), (235000000000, 238000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Fixed-Satellite (Space-To-Earth)', 'Space Research (Passive)'], [], ['[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)', '[5.563B]: The band 237.9-238 GHz is also allocated to the Earth exploration-satellite service (active) and the space research service (active) for spaceborne cloud radars only. (WRC-2000)']), (238000000000, 240000000001): (False, True, True, False, False, ['Fixed-Satellite (Space-To-Earth)', 'Radiolocation', 'Radionavigation', 'Radionavigation-Satellite'], [], []), (240000000000, 241000000001): (False, True, True, False, False, ['Radiolocation'], [], []), (241000000000, 248000000001): (True, False, False, False, False, ['Radio Astronomy', 'Radiolocation'], ['Amateur', 'Amateur-Satellite'], ['[5.138]: The following bands:6 765-6 795 kHz (centre frequency 6 780 kHz), 433.05-434.79 MHz (centre frequency 433.92 MHz) in Region 1 except in the countries mentioned in No. 5.280, 61-61.5 GHz (centre frequency 61.25 GHz), 122-123 GHz (centre frequency 122.5 GHz), and 244-246 GHz (centre frequency 245 GHz) are designated for industrial, scientific and medical (ISM) applications. The use of these frequency bands for ISM applications shall be subject to special authorization by the administration concerned, in agreement with other administrations whose radiocommunication services might be affected. In applying this provision, administrations shall have due regard to the latest relevant ITU-R Recommendations. ', '[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (248000000000, 250000000001): (True, False, False, False, False, ['Amateur', 'Amateur-Satellite'], ['Radio Astronomy'], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07)']), (250000000000, 252000000001): (False, False, False, False, False, ['Earth Exploration-Satellite (Passive)', 'Radio Astronomy', 'Space Research (Passive)'], [], ['[5.340]: All emissions are prohibited in the following bands:1 400-1 427 MHz, 2 690-2 700 MHz, except those provided for by No. 5.422, 10.68-10.7 GHz, except those provided for by No. 5.483, 15.35-15.4 GHz, except those provided for by No. 5.511, 23.6-24 GHz, 31.3-31.5 GHz, 31.5-31.8 GHz, in Region 2, 48.94-49.04 GHz, from airborne stations 50.2-50.4 GHz2, 52.6-54.25 GHz, 86-92 GHz, 100-102 GHz, 109.5-111.8 GHz, 114.25-116 GHz, 148.5-151.5 GHz, 164-167 GHz, 182-185 GHz, 190-191.8 GHz, 200-209 GHz, 226-231.5 GHz, 250-252 GHz. (WRC-03) ', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (252000000000, 265000000001): (False, True, True, False, False, ['Mobile-Satellite (Earth-To-Space)', 'Radio Astronomy', 'Radionavigation', 'Radionavigation-Satellite'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.554]: In the bands 43.5-47 GHz, 66-71 GHz, 95-100 GHz, 123-130 GHz, 191.8-200 GHz and 252-265 GHz, satellite links connecting land stations at specified fixed points are also authorized when used in conjunction with the mobile-satellite service or the radionavigation-satellite service. (WRC-2000)']), (265000000000, 275000000001): (False, True, True, False, False, ['Fixed-Satellite (Earth-To-Space)', 'Radio Astronomy'], [], ['[5.149]: In making assignments to stations of other services to which the bands:13 360-13 410 kHz, 25 550-25 670 kHz, 37.5-38.25 MHz, 73-74.6 MHz in Regions 1 and 3, 150.05-153 MHz in Region 1, 322-328.6 MHz, 406.1-410 MHz, 608-614 MHz in Regions 1 and 3, 1 330-1 400 MHz, 1 610.6-1 613.8 MHz, 1 660-1 670 MHz, 1 718.8-1 722.2 MHz, 2 655-2 690 MHz, 3 260-3 267 MHz, 3 332-3 339 MHz, 3 345.8-3 352.5 MHz, 4 825-4 835 MHz, 4 950-4 990 MHz, 4 990-5 000 MHz, 6 650-6 675.2 MHz, 10.6-10.68 GHz, 14.47-14.5 GHz, 22.01-22.21 GHz, 22.21-22.5 GHz, 22.81-22.86 GHz, 23.07-23.12 GHz, 31.2-31.3 GHz, 31.5-31.8 GHz in Regions 1 and 3, 36.43-36.5 GHz, 42.5-43.5 GHz, 48.94-49.04 GHz, 76-86 GHz, 92-94 GHz, 94.1-100 GHz, 102-109.5 GHz, 111.8-114.25 GHz, 128.33-128.59 GHz, 129.23-129.49 GHz, 130-134 GHz, 136-148.5 GHz, 151.5-158.5 GHz, 168.59-168.93 GHz, 171.11-171.45 GHz, 172.31-172.65 GHz, 173.52-173.85 GHz, 195.75-196.15 GHz, 209-226 GHz, 241-250 GHz, 252-275 GHz are allocated, administrations are urged to take all practicable steps to protect the radio astronomy service from harmful interference. Emissions from spaceborne or airborne stations can be particularly serious sources of interference to the radio astronomy service (see Nos. 4.5 and 4.6 and Article 29). (WRC-07) ', '[5.563A]: In the bands 200-209 GHz, 235-238 GHz, 250-252 GHz and 265-275 GHz, ground-based passive atmospheric sensing is carried out to monitor atmospheric constituents. (WRC-2000)']), (275000000000, 3000000000001): (False, False, False, False, False, ['(Not Allocated) [5.565]'], [], ['[5.565]: The following frequency bands in the range 275-1 000 GHz are identified for use by administrations for passive service applications:– radio astronomy service: 275-323 GHz, 327-371 GHz, 388-424 GHz, 426-442 GHz, 453-510 GHz, 623-711 GHz, 795-909 GHz and 926-945 GHz; – Earth exploration-satellite service (passive) and space research service (passive): 275-286 GHz, 296-306 GHz, 313-356 GHz, 361-365 GHz, 369-392 GHz, 397-399 GHz, 409-411 GHz, 416-434 GHz, 439-467 GHz, 477-502 GHz, 523-527 GHz, 538-581 GHz, 611-630 GHz, 634-654 GHz, 657-692 GHz, 713-718 GHz, 729-733 GHz, 750-754 GHz, 771-776 GHz, 823-846 GHz, 850-854 GHz, 857-862 GHz, 866-882 GHz, 905-928 GHz, 951-956 GHz, 968-973 GHz and 985-990 GHz.']), })
/rf_info-0.8.0.tar.gz/rf_info-0.8.0/rf_info/data/a_allocations.py
0.584034
0.740644
a_allocations.py
pypi
from rf_info.data.rangekeydict import RangeKeyDict ISM = RangeKeyDict({ (6765000, 6795000): ('A', 'Fixed & Mobile Service'), (13553000, 13567000): ('B', 'Fixed & Mobile services except Aeronautical mobile service'), (26957000, 27283000): ('B', 'Fixed & Mobile Service except Aeronautical mobile service, CB Radio'), (40660000, 40700000): ('B', 'Fixed, Mobile & Earth exploration-satellite service'), (433050000, 434790000): ('A', 'Amateur & Radiolocation Service,'), (902000000, 928000000): ('B', 'Fixed, Mobile except aeronautical mobile & Radiolocation service; in Region 2 additional Amateur service'), (2400000000, 2500000000): ('B', 'Fixed, Mobile, Radiolocation, Amateur & Amateur-satellite service'), (5725000000, 5875000000): ('B', 'Fixed-Satellite, Radiolocation, Moblie, Amateur & Amateur-satellite service'), (24000000000, 24250000000): ('B', 'Amateur, Amateur-Satellite, Radiolocation & Earth exploration-satellite service (active)'), (61000000000, 61500000000): ('A', 'Fixed, Inter-Satellite, Moblie & Radiolocation Service'), (122000000000, 123000000000): ('A', 'Earth Exploration-Satellite (passive), Fixed, Inter-Satellite, Moblie, Space Research (passive) & Amateur service'), (244000000000, 246000000000): ('A', 'Radiolocation, Radio Astronomy, Amateur & Amateur-satellite service'), }) MICROWAVE = RangeKeyDict({ (1000000000, 2000000000): ('L', 'Military telemetry, GPS, mobile phones (GSM), amateur radio'), (2000000000, 4000000000): ('S', 'Weather radar, surface ship radar, and some communications satellites (microwave ovens, microwave devices/communications, radio astronomy, mobile phones, wireless LAN, Bluetooth, ZigBee, GPS, amateur radio)'), (4000000000, 8000000000): ('C', 'Long-distance radio telecommunications'), (8000000000, 12000000000): ('X', 'Satellite communications, radar, terrestrial broadband, space communications, amateur radio, molecular rotational spectroscopy'), (12000000000, 18000000000): ('Ku', 'Satellite communications, molecular rotational spectroscopy'), (18000000000, 26500000000): ('K', 'Radar, satellite communications, astronomical observations, automotive radar, molecular rotational spectroscopy'), (26500000000, 40000000000): ('Ka', 'Satellite communications, molecular rotational spectroscopy'), (33000000000, 50000000000): ('Q', 'Satellite communications, terrestrial microwave communications, radio astronomy, automotive radar, molecular rotational spectroscopy'), (40000000000, 60000000000): ('U', 'Overlaps with Q band'), (50000000000, 75000000000): ('V', 'Millimeter wave radar research, molecular rotational spectroscopy and other kinds of scientific research'), (75000000000, 110000000000): ('W', 'Satellite communications, millimeter-wave radar research, military radar targeting and tracking applications, and some non-military applications, automotive radar'), (90000000000, 140000000000): ('F', 'SHF transmissions: Radio astronomy, microwave devices/communications, wireless LAN, most modern radars, communications satellites, satellite television broadcasting, DBS, amateur radio'), (110000000000, 170000000000): ('D', 'EHF transmissions: Radio astronomy, high-frequency microwave radio relay, microwave remote sensing, amateur radio, directed-energy weapon, millimeter wave scanner'), }) WAVEGUIDE = RangeKeyDict({ (0, 1700000001): None, (1700000001, 2200000001): 'R', (2200000001, 2600000001): 'R & D', (2600000001, 3300000001): 'D & S', (3300000001, 3950000001): 'S & E', (3950000001, 4900000001): 'E & G', (4900000001, 5850000001): 'G & F', (5850000001, 7050000001): 'F & C', (7050000001, 8200000001): 'C & H', (8200000001, 10100000001): 'H & X', (10100000001, 12400000001): 'X', (12400000001, 18000000001): 'Ku', (18000000001, 26500000001): 'K', (26500000001, 33000000001): 'Ka', (33000000001, 40000000001): 'Ka & Q', (40000000001, 50000000001): 'Q & U', (50000000001, 60000000001): 'U & V', (60000000001, 75000000001): 'V & E', (75000000001, 90000000001): 'E & W', (90000000001, 110000000001): 'W & F', (110000000001, 140000000001): 'F & D', (140000000001, 170000000001): 'D', (170000000001, 325000000001): 'N/A', (325000000001, 500000000001): 'Y', }) ITU = RangeKeyDict({ (0, 31): (1, 'ELF', 'Extremely Low Frequency'), (31, 301): (2, 'SLF', 'Super Low Frequency'), (301, 3001): (3, 'ULF', 'Ultra Low Frequency'), (3001, 30001): (4, 'VLF', 'Very Low Frequency'), (30001, 300001): (5, 'LF', 'Low Frequency'), (300001, 3000001): (6, 'MF', 'Medium Frequency'), (3000001, 30000001): (7, 'HF', 'High Frequency'), (30000001, 300000001): (8, 'VHF', 'Very High Frequency'), (300000001, 3000000001): (9, 'UHF', 'Ultra High Frequency'), (3000000001, 30000000001): (10, 'SHF', 'Super High Frequency'), (30000000001, 300000000001): (11, 'EHF', 'Extremely High Frequency'), (300000000001, 3000000000001): (12, 'THF', 'Terehertz Frequency'), }) IEEE = RangeKeyDict({ (0, 3000001): None, (3000001, 30000001): ('HF', 'High Frequency'), (30000001, 300000001): ('VHF', 'Very High Frequency'), (300000001, 1000000001): ('UHF', 'Ultra High Frequency'), (1000000001, 2000000001): ('L', 'Long Wave'), (2000000001, 4000000001): ('S', 'Short Wave'), (4000000001, 8000000001): ('C', 'S and X Compromise'), (8000000001, 12000000001): ('X', 'WWII Fire Control, Exotic'), (12000000001, 18000000001): ('Ku', 'Kurz-under'), (18000000001, 27000000001): ('K', 'Kurz (Short)'), (27000000001, 40000000001): ('Ka', 'Kurz-above'), (40000000001, 75000000001): ('V', 'N/A'), (75000000001, 110000000001): ('W', 'N/A'), (110000000001, 300000000001): ('G', '(mm)'), }) NATO = RangeKeyDict({ (0, 250000001): 'A', (250000000, 500000001): 'B', (500000000, 1000000001): 'C', (1000000000, 2000000001): 'D', (2000000000, 3000000001): 'E', (3000000000, 4000000001): 'F', (4000000000, 6000000001): 'G', (6000000000, 8000000001): 'H', (8000000000, 10000000001): 'I', (10000000000, 20000000001): 'J', (20000000000, 40000000001): 'K', (40000000000, 60000000001): 'L', (60000000000, 100000000001): 'M', (100000000000, 200000000001): 'N', })
/rf_info-0.8.0.tar.gz/rf_info-0.8.0/rf_info/data/international.py
0.548432
0.442817
international.py
pypi
from rflint.common import SuiteRule, ERROR, WARNING, normalize_name from rflint.parser import SettingTable import re class PeriodInSuiteName(SuiteRule): '''Warn about periods in the suite name Since robot uses "." as a path separator, using a "." in a suite name can lead to ambiguity. ''' severity = WARNING def apply(self,suite): if "." in suite.name: self.report(suite, "'.' in suite name '%s'" % suite.name, 0) class InvalidTable(SuiteRule): '''Verify that there are no invalid table headers''' severity = WARNING def apply(self, suite): for table in suite.tables: if (not re.match(r'^(comments?|settings?|metadata|(test )?cases?|(user )?keywords?|variables?)$', table.name, re.IGNORECASE)): self.report(suite, "Unknown table name '%s'" % table.name, table.linenumber) class DuplicateKeywordNames(SuiteRule): '''Verify that no keywords have a name of an existing keyword in the same file''' severity = ERROR def apply(self, suite): cache = [] for keyword in suite.keywords: # normalize the name, so we catch things like # Smoke Test vs Smoke_Test, vs SmokeTest, which # robot thinks are all the same name = normalize_name(keyword.name) if name in cache: self.report(suite, "Duplicate keyword name '%s'" % keyword.name, keyword.linenumber) cache.append(name) class DuplicateTestNames(SuiteRule): '''Verify that no tests have a name of an existing test in the same suite''' severity = ERROR def apply(self, suite): cache = [] for testcase in suite.testcases: # normalize the name, so we catch things like # Smoke Test vs Smoke_Test, vs SmokeTest, which # robot thinks are all the same name = normalize_name(testcase.name) if name in cache: self.report(suite, "Duplicate testcase name '%s'" % testcase.name, testcase.linenumber) cache.append(name) class RequireSuiteDocumentation(SuiteRule): '''Verify that a test suite has documentation''' severity=WARNING def apply(self, suite): for table in suite.tables: if isinstance(table, SettingTable): for row in table.rows: if row[0].lower() == "documentation": return # we never found documentation; find the first line of the first # settings table, default to the first line of the file linenum = 1 for table in suite.tables: if isinstance(table, SettingTable): linenum = table.linenumber + 1 break self.report(suite, "No suite documentation", linenum) class TooManyTestCases(SuiteRule): ''' Should not have too many tests in one suite. The exception is if they are data-driven. https://code.google.com/p/robotframework/wiki/HowToWriteGoodTestCases#Test_suite_structure You can configure the maximum number of tests. The default is 10. ''' severity = WARNING max_allowed = 10 def configure(self, max_allowed): self.max_allowed = int(max_allowed) def apply(self, suite): # check for template (data-driven tests) for table in suite.tables: if isinstance(table, SettingTable): for row in table.rows: if row[0].lower() == "test template": return # we didn't find a template, so these aren't data-driven testcases = list(suite.testcases) if len(testcases) > self.max_allowed: self.report( suite, "Too many test cases (%s > %s) in test suite" % (len(testcases), self.max_allowed), testcases[self.max_allowed].linenumber )
/rf-lint-1.0.2.tar.gz/rf-lint-1.0.2/rflint/rules/suiteRules.py
0.524151
0.325949
suiteRules.py
pypi
from rflint.common import SuiteRule, ResourceRule, ERROR, normalize_name def check_duplicates(report_duplicate, table, permitted_dups=None, normalize_itemname=normalize_name): # `table` is a SettingsTable or a VariableTable; either contains rows, # but only VariableTable also contains statements. seen_rows = {} for row in table.rows: item = normalize_itemname(row[0]) # skip empty lines, comments and continuation lines if item == "": continue if item.startswith("#"): continue if item.startswith("..."): continue # some tables allow duplicates if permitted_dups and item in permitted_dups: continue if item in seen_rows: prev_row = seen_rows[item] report_duplicate(row, prev_row) else: seen_rows[item] = row class DuplicateSettingsCommon(object): '''Verify that settings are not repeated in a Settings table This has been made an error in Robot3.0 https://github.com/robotframework/robotframework/issues/2204''' severity = ERROR def apply(self, suite): def report_duplicate_setting(setting, prev_setting): self.report(suite, "Setting '%s' used multiple times (previously used line %d)" % \ (setting[0], prev_setting.linenumber), setting.linenumber) for table in suite.tables: if table.name == "Settings": check_duplicates(report_duplicate_setting, table, permitted_dups=["library", "resource", "variables"]) class DuplicateSettingsInSuite(DuplicateSettingsCommon, SuiteRule): pass class DuplicateSettingsInResource(DuplicateSettingsCommon, ResourceRule): pass def strip_variable_name(varname): return varname.lstrip("${").rstrip("}= ") def normalize_variable_name(varname): return normalize_name(strip_variable_name(varname)) class DuplicateVariablesCommon(object): '''Verify that variables are not defined twice in the same table This is not an error, but leads to surprising result (first definition wins, later is ignored).''' def apply(self, suite): def report_duplicate_variable(variable, prev_variable): self.report(suite, "Variable '%s' defined twice, previous definition line %d" % \ (strip_variable_name(variable[0]), prev_variable.linenumber), variable.linenumber) for table in suite.tables: if table.name == "Variables": check_duplicates(report_duplicate_variable, table, normalize_itemname=normalize_variable_name) class DuplicateVariablesInSuite(DuplicateVariablesCommon, SuiteRule): pass class DuplicateVariablesInResource(DuplicateVariablesCommon, ResourceRule): pass
/rf-lint-1.0.2.tar.gz/rf-lint-1.0.2/rflint/rules/duplicates.py
0.516839
0.153454
duplicates.py
pypi
from rflint.common import TestRule, KeywordRule, GeneralRule, ERROR, WARNING import re class LineTooLong(GeneralRule): '''Check that a line is not too long (configurable; default=100)''' severity = WARNING maxchars = 100 def configure(self, maxchars): self.maxchars = int(maxchars) def apply(self, robot_file): for linenumber, line in enumerate(robot_file.raw_text.split("\n")): if len(line) > self.maxchars: message = "Line is too long (exceeds %s characters)" % self.maxchars self.report(robot_file, message, linenumber+1, self.maxchars) class TrailingBlankLines(GeneralRule): '''Check for multiple blank lines at the end of a file This is a configurable. The default value is 2. ''' severity = WARNING max_allowed = 2 def configure(self, max_allowed): self.max_allowed=int(max_allowed) def apply(self, robot_file): # I realize I'm making two full passes over the data, but # python is plenty fast enough. Even processing a file with # over six thousand lines, this takes a couple of # milliseconds. Plenty fast enough for the intended use case, # since most files should be about two orders of magnitude # smaller than that. match=re.search(r'(\s*)$', robot_file.raw_text) if match: count = len(re.findall(r'\n', match.group(0))) if count > self.max_allowed: numlines = len(robot_file.raw_text.split("\n")) message = "Too many trailing blank lines" linenumber = numlines-count self.report(robot_file, message, linenumber+self.max_allowed, 0) class TrailingWhitespace(GeneralRule): severity = WARNING def apply(self, robot_file): for linenumber, line in enumerate(robot_file.raw_text.splitlines()): if len(line) != len(line.rstrip()): message = "Line has trailing whitespace" self.report(robot_file, message, linenumber+1) class FileTooLong(GeneralRule): '''Verify the file has fewer lines than a given threshold. You can configure the maximum number of lines. The default is 300. ''' severity = WARNING max_allowed = 300 def configure(self, max_allowed): self.max_allowed = int(max_allowed) def apply(self, robot_file): lines = robot_file.raw_text.split("\n") if len(lines) > self.max_allowed: message = "File has too many lines (%s)" % len(lines) linenumber = self.max_allowed+1 self.report(robot_file, message, linenumber, 0)
/rf-lint-1.0.2.tar.gz/rf-lint-1.0.2/rflint/rules/otherRules.py
0.479991
0.200851
otherRules.py
pypi
from __future__ import print_function import re class RobotStatements(object): def append(self, linenumber, raw_text, cells): """Add another row of data from a test suite""" self.rows.append(Row(linenumber, raw_text, cells)) @property def path(self): # this property exists so that the linter doesn't # have to have this logic return self.parent.path @property def steps(self): """Return a list of steps (statements that are not settings or comments)""" steps = [] for statement in self.statements: if ((not statement.is_comment()) and (not statement.is_setting())): steps.append(statement) return steps @property def settings(self): """Return a list of settings (statements with cell[1] matching \[.*?\]) Note: this returns any statement that *looks* like a setting. If you have a misspelled or completely bogus setting, it'll return that too (eg: | | [Blockumentation] | hello, world) """ return [statement for statement in self.statements if (statement.is_setting() and not statement.is_comment())] @property def statements(self): """Return a list of statements This is done by joining together any rows that have continuations """ # FIXME: no need to do this every time; we should cache the # result if len(self.rows) == 0: return [] current_statement = Statement(self.rows[0]) current_statement.startline = self.rows[0].linenumber current_statement.endline = self.rows[0].linenumber statements = [] for row in self.rows[1:]: if len(row) > 1 and row[0] == "" and row[1] == "...": # we found a continuation current_statement += row[2:] current_statement.endline = row.linenumber else: if len(current_statement) > 0: # append current statement to the list of statements... statements.append(current_statement) # start a new statement current_statement = Statement(row) current_statement.startline = row.linenumber current_statement.endline = row.linenumber if len(current_statement) > 0: statements.append(current_statement) return statements # TODO: make Row and Statement more similar -- either # both should inherit from list, or neither should. class Row(object): """A row is made up of a list of cells plus metadata""" def __init__(self, linenumber, raw_text, cells): self.linenumber = linenumber self.raw_text = raw_text self.cells = cells def dump(self): print("|" + " | ".join([cell.strip() for cell in self.cells])) def __len__(self): return len(self.cells) def __setitem__(self, key, value): self.cells[key] = value return self.cells[key] def __getitem__(self, key): return self.cells[key] def __repr__(self): return "<line: %s cells: %s>" % (self.linenumber, str(self.cells)) def __contains__(self, key): return key in self.cells class Comment(Row): # this isn't entirely correct or well thought out. # I need a way to capture comments rather than # throw them away (mainly so I can recreate the original # file from the parsed data) pass class Statement(list): """A Statement is a list of cells, plus some metadata""" startline = None endline = None def is_setting(self): if ((len(self) > 1) and (re.match(r'\[.*?\]', self[1]))): return True return False def is_comment(self): '''Return True if the first non-empty cell starts with "#"''' for cell in self[:]: if cell == "": continue # this is the first non-empty cell. Check whether it is # a comment or not. if cell.lstrip().startswith("#"): return True else: return False return False def __repr__(self): return "(%.4s-%.4s)%s" % (self.startline, self.endline, list.__repr__(self))
/rf-lint-1.0.2.tar.gz/rf-lint-1.0.2/rflint/parser/common.py
0.434821
0.413063
common.py
pypi
import ctypes import threading import time from matplotlib.mlab import psd import numpy import rtlsdr from rfmonitor.constants import SAMPLE_RATE, SAMPLES, BINS from rfmonitor.events import Event, Events, post_event class Receive(threading.Thread): def __init__(self, eventHandler, freq, gain, cal): threading.Thread.__init__(self) self.name = 'Receive' self.daemon = True self._cancel = False self._freq = freq self._gain = gain self._cal = cal self._eventHandler = eventHandler self._sdr = None self._capture = (ctypes.c_ubyte * SAMPLES)() devices = rtlsdr.librtlsdr.rtlsdr_get_device_count() if devices == 0: event = Event(Events.SCAN_ERROR, msg='No device found') post_event(eventHandler, event) else: self.start() def __capture(self, data, _sdr): timestamp = time.time() dst = ctypes.byref(self._capture, 0) ctypes.memmove(dst, data, len(data)) iq = self.__stream_to_complex(self._capture) l, f = psd(iq, BINS, SAMPLE_RATE, scale_by_freq=False, noverlap=-SAMPLES / 64) f /= 1e6 f += self._freq event = Event(Events.SCAN_DATA, timestamp=timestamp, l=l, f=f) post_event(self._eventHandler, event) def __stream_to_complex(self, stream): bytes_np = numpy.ctypeslib.as_array(stream) iq = bytes_np.astype(numpy.float32).view(numpy.complex64) iq /= 255 / 2 iq -= 1 + 1j return iq def set_frequency(self, frequency): self._freq = frequency self._sdr.set_center_freq(self._freq * 1e6) def run(self): self._sdr = rtlsdr.RtlSdr() self._sdr.set_sample_rate(SAMPLE_RATE) self.set_frequency(self._freq) cal = self._sdr.get_freq_correction() if self._cal != cal: self._sdr.set_freq_correction(self._cal) self._sdr.set_gain(self._gain) time.sleep(1) self._sdr.read_bytes_async(self.__capture, SAMPLES) def stop(self): self._cancel = True if self._sdr is not None: try: self._sdr.cancel_read_async() except IOError: pass finally: self._sdr.close() if __name__ == '__main__': print 'Please run rfmonitor.py' exit(1)
/rf-monitor-1.0.2.tar.gz/rf-monitor-1.0.2/rfmonitor/receive.py
0.452294
0.189934
receive.py
pypi
from collections import OrderedDict import json from rfmonitor.constants import APP_NAME from rfmonitor.monitor import Monitor, Period from rfmonitor.signals import Signal VERSION = 1 def save_recordings(filename, freq, gain, cal, dynP, monitors): jsonMonitors = [] for monitor in monitors: jsonMonitor = OrderedDict() jsonMonitor['Colour'] = monitor.get_colour() jsonMonitor['Enabled'] = monitor.get_enabled() jsonMonitor['Dynamic'] = monitor.get_dynamic() jsonMonitor['Alert'] = monitor.get_alert() jsonMonitor['Frequency'] = int(monitor.get_frequency() * 1e6) jsonMonitor['Threshold'] = monitor.get_threshold() jsonMonitor['Signals'] = [signal.to_list() for signal in monitor.get_signals()] jsonMonitor['Periods'] = [period.to_list() for period in monitor.get_periods()] jsonMonitors.append(jsonMonitor) fileData = OrderedDict() fileData['Version'] = VERSION fileData['Frequency'] = freq * 1e6 fileData['Gain'] = gain fileData['Calibration'] = cal fileData['DynamicPercentile'] = dynP fileData['Monitors'] = jsonMonitors data = [APP_NAME, fileData] handle = open(filename, 'wb') handle.write(json.dumps(data, indent=4)) handle.close() def load_recordings(filename): handle = open(filename, 'rb') data = json.loads(handle.read()) handle.close() _header = data[0] _version = data[1]['Version'] freq = data[1]['Frequency'] / 1e6 gain = data[1]['Gain'] if 'Gain' in data[1] else None cal = data[1]['Calibration'] if 'Calibration' in data[1] else 0 dynP = data[1]['DynamicPercentile'] if 'DynamicPercentile' in data[1] else 33 jsonMonitors = data[1]['Monitors'] monitors = [] for jsonMonitor in jsonMonitors: alert = jsonMonitor['Alert'] if 'Alert' in jsonMonitor else False signals = [Signal().from_list(signal) for signal in jsonMonitor['Signals']] dynamic = False if 'Dynamic' in jsonMonitor: dynamic = jsonMonitor['Dynamic'] colour = None if 'Colour' in jsonMonitor: colour = jsonMonitor['Colour'] periods = [] if 'Periods' in jsonMonitor: periods = [Period().from_list(period) for period in jsonMonitor['Periods']] monitor = Monitor(colour, jsonMonitor['Enabled'], alert, jsonMonitor['Frequency'] / 1e6, jsonMonitor['Threshold'], dynamic, signals, periods) monitors.append(monitor) return freq, gain, cal, dynP, monitors def format_recording(freq, recording): record = OrderedDict() record['Start'] = recording.start record['End'] = recording.end record['Level'] = recording.level if recording.location is not None: record['location'] = recording.location signal = OrderedDict() signal['Frequency'] = int(freq * 1e6) signal['Signal'] = record return json.dumps(signal) if __name__ == '__main__': exit(1) print 'Please run rfmonitor.py'
/rf-monitor-1.0.2.tar.gz/rf-monitor-1.0.2/rfmonitor/file.py
0.48121
0.267333
file.py
pypi
from wx import xrc import wx from rfmonitor.constants import LEVEL_MAX, LEVEL_MIN TICK_SIZE_MAJ = 4 TICK_SIZE_MIN = 2 THRES_SIZE = 4 class WidgetMeter(wx.Panel): def __init__(self, parent): wx.Panel.__init__(self, parent, size=(-1, 25), style=wx.SUNKEN_BORDER) self._value = LEVEL_MIN self._threshold = LEVEL_MIN self._noise = None font = self.GetFont() font.SetFamily(wx.FONTFAMILY_MODERN) self.SetFont(font) self.SetMinSize((250, 25)) self.Bind(wx.EVT_PAINT, self.__on_paint) self.Bind(wx.EVT_SIZE, self.__on_size) try: self.SetBackgroundStyle(wx.BG_STYLE_PAINT) except AttributeError: pass def __on_paint(self, _event): pdc = wx.BufferedPaintDC(self) try: dc = wx.GCDC(pdc) except: dc = pdc w, h = self.GetClientSize() font = self.GetFont() font.SetPixelSize((0, h - (TICK_SIZE_MAJ * 2))) dc.SetFont(font) dc.SetPen(wx.Pen(wx.WHITE)) dc.SetBrush(wx.Brush(wx.WHITE)) dc.DrawRectangle(0, 0, w, h) colour = '#4DDB4D' if self._value >= self._threshold else '#FF4D4D' dc.SetPen(wx.Pen(colour)) dc.SetBrush(wx.Brush(colour)) x = self.__scale_x(self._value, w) dc.DrawRectangle(0, 0, x, h) colour = wx.Colour(0x80, 0x80, 0xFF, 128) dc.SetPen(wx.Pen(colour, 2)) dc.SetBrush(wx.Brush(colour)) x = round(self.__scale_x(self._threshold, w)) dc.DrawPolygon([(x - THRES_SIZE, 0), (x + THRES_SIZE, 0), (x, THRES_SIZE)]) dc.DrawPolygon([(x - THRES_SIZE, h), (x + THRES_SIZE, h), (x, h - THRES_SIZE)]) dc.DrawLine(x, THRES_SIZE, x, h - THRES_SIZE) if self._noise is not None: dc.SetPen(wx.Pen('#8080FF', 1)) x = self.__scale_x(self._noise, w) dc.DrawRectangle(0, TICK_SIZE_MAJ * 3 / 2., x, h - (TICK_SIZE_MAJ * 3)) colour = wx.Colour(0x4d, 0x4d, 0x4d) dc.SetPen(wx.Pen(colour)) dc.SetTextForeground(colour) ticks = range(LEVEL_MIN, LEVEL_MAX, 10) for tick in ticks: if tick not in [LEVEL_MIN, LEVEL_MAX]: x = self.__scale_x(tick, w) dc.DrawLine(x, 0, x, TICK_SIZE_MAJ) dc.DrawLine(x, h, x, h - TICK_SIZE_MAJ) label = str(tick) tW, tH = dc.GetTextExtent(label) dc.DrawText(label, x - tW / 2, (h - tH) / 2) ticks = range(LEVEL_MIN, LEVEL_MAX, 1) for tick in ticks: if tick not in [LEVEL_MIN, LEVEL_MAX]: x = self.__scale_x(tick, w) dc.DrawLine(x, 0, x, TICK_SIZE_MIN) dc.DrawLine(x, h, x, h - TICK_SIZE_MIN) def __on_size(self, _event): self.Refresh() def __scale_x(self, x, w): y = (float(w) / (LEVEL_MAX - LEVEL_MIN)) * (x - LEVEL_MIN) return y def set_level(self, level): if level is not None: self._value = level self.Refresh() def set_threshold(self, threshold, refresh=True): self._threshold = threshold if refresh: self.Refresh() def set_noise(self, noise): self._noise = noise class XrcHandlerMeter(xrc.XmlResourceHandler): def CanHandle(self, node): return self.IsOfClass(node, 'WidgetMeter') def DoCreateResource(self): panel = WidgetMeter(self.GetParent()) self.SetupWindow(panel) self.CreateChildren(panel) return panel if __name__ == '__main__': print 'Please run rfmonitor.py' exit(1)
/rf-monitor-1.0.2.tar.gz/rf-monitor-1.0.2/rfmonitor/widget_meter.py
0.572125
0.21348
widget_meter.py
pypi
import collections import numpy from rfmonitor.constants import MAX_LEVELS_TIME, SAMPLE_RATE, SAMPLES, LEVEL_MIN from rfmonitor.signals import Period, Signal LEVELS_LEN = MAX_LEVELS_TIME * SAMPLE_RATE / SAMPLES class Monitor(object): def __init__(self, colour, enabled, alert, frequency, threshold, dynamic, signals, periods): self._colour = colour self._enabled = enabled self._alert = alert self._freq = frequency self._threshold = threshold self._dynamic = dynamic self._noise = None self._signals = signals self._levels = collections.deque(maxlen=round(LEVELS_LEN)) self._periods = periods def __update_level(self, location, level, timestamp): updated = False signal = None threshold = self.get_dynamic_threshold() if len(self._signals) and self._signals[-1].end is None: signal = self._signals[-1] if signal is None: if level is not None and level >= threshold: signal = Signal(start=timestamp, location=location) self._signals.append(signal) updated = True else: if level is None or level < threshold: strength = numpy.mean(self._levels) self._levels.clear() signal.end = timestamp signal.level = strength updated = True if level is not None and level >= threshold: self._levels.append(level) if updated: return signal return None def get_colour(self): return self._colour def get_enabled(self): return self._enabled def get_alert(self): return self._alert def get_frequency(self): return self._freq def get_threshold(self): return self._threshold def get_dynamic(self): return self._dynamic def get_dynamic_threshold(self): if self._dynamic: if self._noise is None: return self._threshold + LEVEL_MIN return self._threshold + self._noise return self._threshold def get_signals(self): return self._signals def get_periods(self): return self._periods def get_levels(self): return self._levels def set_colour(self, colour): self._colour = colour def set_enabled(self, enabled): self._enabled = enabled def set_alert(self, alert): self._alert = alert def set_frequency(self, frequency): self._freq = frequency def set_threshold(self, threshold): self._threshold = threshold def set_dynamic(self, dynamic): self._dynamic = dynamic def set_noise(self, noise): self._noise = noise def set_signals(self, signals): self._signals = signals def set_level(self, level, timestamp, location): signal = self.__update_level(location, level, timestamp) return signal def set_levels(self, levels): self._levels = levels def set_periods(self, periods): self._periods = periods def start_period(self, timestamp): period = Period(timestamp) self._periods.append(period) def end_period(self, timestamp): if len(self._periods): self._periods[-1].end = timestamp def clear(self): self._signals = [] self._periods = [] if __name__ == '__main__': exit(1) print 'Please run rfmonitor.py'
/rf-monitor-1.0.2.tar.gz/rf-monitor-1.0.2/rfmonitor/monitor.py
0.629205
0.277204
monitor.py
pypi
import datetime import time import matplotlib matplotlib.use('WXAgg') from matplotlib.dates import epoch2num, num2epoch, AutoDateLocator, \ AutoDateFormatter from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas from matplotlib.figure import Figure from matplotlib.ticker import ScalarFormatter, AutoMinorLocator from wx import xrc import wx.lib.newevent from rfmonitor.constants import BINS, SAMPLE_RATE, MAX_TIMELINE_FPS, TIMELINE_FPS from rfmonitor.legend import Legend from rfmonitor.navigation_toolbar import NavigationToolbar from rfmonitor.utils_ui import load_ui EventTimelineClose, EVT_TIMELINE_CLOSE = wx.lib.newevent.NewEvent() class DialogTimeline(wx.Dialog, Legend): def __init__(self, parent): self._parent = parent self._toolbar = None self._timestamp = 0 self._delayDraw = 1. / MAX_TIMELINE_FPS self._axes = None self._canvas = None self._monitors = None pre = wx.PreDialog() self._ui = load_ui('DialogTimeline.xrc') self._ui.LoadOnDialog(pre, parent, 'DialogTimeline') self.PostCreate(pre) self._panelPlot = xrc.XRCCTRL(pre, 'panelPlot') self._button_Close = xrc.XRCCTRL(pre, 'buttonClose') self.Bind(wx.EVT_BUTTON, self.__on_close, self._button_Close) self.Bind(wx.EVT_CLOSE, self.__on_close) self.__setup_plot() self._toolbar = NavigationToolbar(self._canvas, self) sizer = self._panelPlot.GetSizer() sizer.Add(self._canvas, 1, wx.ALL | wx.GROW) sizer.Add(self._toolbar, 0, wx.LEFT | wx.EXPAND) self.Fit() self._timer = wx.Timer(self) self.Bind(wx.EVT_TIMER, self.__on_timer, self._timer) def __setup_plot(self): figure = Figure(facecolor='lightgrey') self._axes = figure.add_subplot(111) self._axes.set_title('Timeline') self._axes.set_xlabel('Time') self._axes.set_ylabel('Frequency (MHz)') self._axes.grid(True) locator = AutoDateLocator() formatter = AutoDateFormatter(locator) self._axes.xaxis.set_major_formatter(formatter) self._axes.xaxis.set_major_locator(locator) formatter = ScalarFormatter(useOffset=False) self._axes.yaxis.set_major_formatter(formatter) self._axes.yaxis.set_minor_locator(AutoMinorLocator(10)) self._canvas = FigureCanvas(self._panelPlot, -1, figure) self._canvas.mpl_connect('motion_notify_event', self.__on_motion) Legend.__init__(self, self._axes, self._canvas) def __on_timer(self, _event): self.set_monitors(self._monitors, True) def __on_motion(self, event): label = '' if event.xdata is not None and event.xdata >= 1: timestamp = num2epoch(event.xdata) label = datetime.datetime.fromtimestamp(timestamp).strftime('%c') self._toolbar.set_cursor_text(label) def __on_close(self, _event): evt = EventTimelineClose() wx.PostEvent(self._parent, evt) self.Destroy() def __clear_plots(self): Legend.clear(self) for child in self._axes.get_children(): gid = child.get_gid() if gid is not None and gid == 'plot': child.remove() def set_monitors(self, monitors, isLive): self._timer.Stop() self._monitors = monitors timestamp = time.time() if timestamp - self._timestamp > self._delayDraw: t1 = time.time() self._timestamp = timestamp tMin = None tMax = None height = SAMPLE_RATE / BINS height /= 1e6 self.__clear_plots() timeNow = epoch2num(time.time()) for monitor in monitors: freq = monitor.get_frequency() signals = [] periods = [] for period in monitor.get_periods(): tStart = epoch2num(period.start) if period.end is not None: tEnd = epoch2num(period.end) else: tEnd = timeNow periods.append([tStart, tEnd - tStart]) for signal in monitor.get_signals(): tStart = epoch2num(signal.start) if signal.end is not None: tEnd = epoch2num(signal.end) else: tEnd = timeNow tMin = min(tMin, tStart) tMax = max(tMax, tEnd) signals.append([tStart, tEnd - tStart]) colour = monitor.get_colour() self._axes.broken_barh(periods, [freq - height / 2, height], color=colour, alpha=0.2, gid='plot') self._axes.broken_barh(signals, [freq - height / 2, height], color=colour, gid='plot') self._axes.axhline(freq, color=colour, label='{:.6f}MHz'.format(freq), gid='plot') if isLive: tMax = timeNow self._axes.axvline(timeNow, color='black', linestyle='--', label='Latest', gid='plot') Legend.create(self) if tMax is None: self._axes.set_xlim(timeNow - 1. / 288, timeNow) self._axes.autoscale(axis='y') else: self._axes.set_xlim(tMin, tMax) self._axes.autoscale(self._toolbar.get_autoscale()) self._axes.get_figure().autofmt_xdate() self._canvas.draw() delay = time.time() - t1 self._delayDraw += delay * 2. self._delayDraw /= 2. if self._delayDraw < 1. / MAX_TIMELINE_FPS: self._delayDraw = 1. / MAX_TIMELINE_FPS if isLive: self._timer.Start(1000. / TIMELINE_FPS, True) if __name__ == '__main__': print 'Please run rfmonitor.py' exit(1)
/rf-monitor-1.0.2.tar.gz/rf-monitor-1.0.2/rfmonitor/dialog_timeline.py
0.655226
0.187653
dialog_timeline.py
pypi
import time import matplotlib matplotlib.use('WXAgg') from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas from matplotlib.figure import Figure from wx import xrc import wx.lib.newevent from rfmonitor.constants import MAX_SPECTRUM_FPS from rfmonitor.legend import Legend from rfmonitor.navigation_toolbar import NavigationToolbar from rfmonitor.utils_ui import load_ui EventSpectrumClose, EVT_SPECTRUM_CLOSE = wx.lib.newevent.NewEvent() class DialogSpectrum(wx.Dialog, Legend): def __init__(self, parent, freqs): self._parent = parent self._spectrum = None self._timestamp = 0 self._delayDraw = 1. / MAX_SPECTRUM_FPS self._axes = None self._canvas = None self._freqs = freqs pre = wx.PreDialog() self._ui = load_ui('DialogSpectrum.xrc') self._ui.LoadOnDialog(pre, parent, 'DialogSpectrum') self.PostCreate(pre) self._panelPlot = xrc.XRCCTRL(pre, 'panelPlot') self._buttonClose = xrc.XRCCTRL(pre, 'buttonClose') self.Bind(wx.EVT_BUTTON, self.__on_close, self._buttonClose) self.Bind(wx.EVT_CLOSE, self.__on_close) self.__setup_plot() self._toolbar = NavigationToolbar(self._canvas, self) sizer = self._panelPlot.GetSizer() sizer.Add(self._canvas, 1, wx.ALL | wx.GROW) sizer.Add(self._toolbar, 0, wx.LEFT | wx.EXPAND) self.Fit() def __setup_plot(self): figure = Figure(facecolor='lightgrey') self._axes = figure.add_subplot(111) self._axes.set_title('Spectrum') self._axes.set_xlabel('Frequency (MHz)') self._axes.set_ylabel('Level (dB)') self._axes.autoscale_view(True, True, True) self._axes.grid(True) self._spectrum, = self._axes.plot([], [], 'b-', label='Spectrum') self._canvas = FigureCanvas(self._panelPlot, -1, figure) self._canvas.mpl_connect('motion_notify_event', self.__on_motion) Legend.__init__(self, self._axes, self._canvas) def __on_motion(self, event): label = '' if event.xdata is not None: freq = min(self._freqs, key=lambda x: abs(x - event.xdata)) label = '{: 8.4f}MHz'.format(freq) self._toolbar.set_cursor_text(label) def __on_close(self, _event): evt = EventSpectrumClose() wx.PostEvent(self._parent, evt) self.Destroy() def __clear_plots(self): Legend.clear(self) for child in self._axes.get_children(): gid = child.get_gid() if gid is not None and gid == 'line': child.remove() def set_spectrum(self, freqs, levels, monitors, noise): timestamp = time.time() self._freqs = freqs if timestamp - self._timestamp > self._delayDraw: t1 = time.time() self._timestamp = timestamp self.__clear_plots() self._axes.axhline(noise, color='black', ls='--', label='Noise level', gid='line') for monitor in monitors: colour = monitor.get_colour() freq = monitor.get_frequency() self._axes.axvline(freq, color=colour, dashes=[2, 1], label='{:.6f}MHz'.format(freq), gid='line') self._axes.axhline(monitor.get_threshold(), color=colour, dashes=[2, 1], gid='line') Legend.create(self) self._spectrum.set_data(freqs, levels) self._axes.relim() self._axes.autoscale_view(True, True, True) self._axes.autoscale(self._toolbar.get_autoscale()) self._canvas.draw() delay = time.time() - t1 self._delayDraw += delay * 2. self._delayDraw /= 2. if self._delayDraw < 1. / MAX_SPECTRUM_FPS: self._delayDraw = 1. / MAX_SPECTRUM_FPS def clear_spectrum(self): self.__clear_plots() self._canvas.draw() if __name__ == '__main__': print 'Please run rfmonitor.py' exit(1)
/rf-monitor-1.0.2.tar.gz/rf-monitor-1.0.2/rfmonitor/dialog_spectrum.py
0.615666
0.171096
dialog_spectrum.py
pypi
from sklearn.ensemble.forest import _generate_unsampled_indices from sklearn.ensemble import RandomForestClassifier, RandomForestRegressor from sklearn.metrics import r2_score, accuracy_score from collections import Counter import numpy as np class PermutationImportance(object): def __init__(self): pass def featureImportances(self, rf, X, y, nIters=1): ''' Given a trained random forest instance, the training data, and labels calculate the feature importances. Currently in scikit-learn the feature importance is calculated as weighted information gain associated with each feature across all trees. This class calculates the feature importance as the decrease in out-of-bag score for each feature, when that feature is randomly permuted. I.e. if we randomly scramble a feature's values how much worse do our out of bag predictions become? Inputs: rf - a trained instance of sklearn's either RandomForestClassifier or RandomForestRegressor X - numpy array - the data used to train the random forest instance y - numpy array - the labels used to train the random forest instance nIters - integer - the number of times to scramble a feature and calculate the out-of-bag score. Increasing nIters will increase run-time but decrease variance in results. Outputs: featureImportances - numpy array - the change in out-of-bag score associated with each feature, when that feature is scrambled ''' self.rf = rf self.X = X.copy() self.y = y nSamples, nFeatures = self.X.shape allInd = np.arange(0, nSamples) # get the oobIndices unsampledIndices = self._getOOBIndices() oobScoreScrambled = np.zeros(X.shape[1]) if not rf.oob_score: oobScore = self._calcOOBScore(unsampledIndices) else: oobScore = rf.oob_score_ # loop over features: for i in xrange(nFeatures): scores = [] for j in xrange(nIters): # #### scramble column and overwrite in initial training array scrambleInd = np.random.permutation(allInd) self.X[:, i] = self.X[:, i][scrambleInd] # #### calculate the new oob score and store in the numpy array scores.append(self._calcOOBScore(unsampledIndices)) # #### set column back to normal unscrambleInd = np.argsort(scrambleInd) self.X[:, i] = self.X[:, i][unscrambleInd] oobScoreScrambled[i] = np.mean(scores) # take difference between base oob score and the score for each # scrambled feature featureImportances = np.apply_along_axis(lambda x: oobScore - x, 0, oobScoreScrambled) return featureImportances def _calcOOBScore(self, oobInd): ''' Calculate the out of bag score, given a trained instance of a RandomForestClassifier (from sklearn), the training data, the labels, and the indices of the unsampled points for each tree in the random forest. Inputs: rf - sklearn RandomForestClassifier instance, fit to data X - training data (n, k) shape with n = number of samples k = number of features y - training labels (n,) shape oobInd - dictionary with integer keys corresponding to each tree in the random forest, and values as numpy arrays of the unsampled indices for each tree Output: float - the random forest's out-of-bag accuracy ''' oobForestPreds = {} if type(self.rf) is RandomForestClassifier: for i, tree in enumerate(self.rf.estimators_): # get predictions on out of bag indices for each tree oobTreePreds = tree.predict(self.X[oobInd[i], :]) # create a dictionary entry for each index in the original # dataset. append the tree predictions to a Counter matching # each entry for j in xrange(len(oobInd[i])): ind = oobInd[i][j] if ind not in oobForestPreds: oobForestPreds[ind] = Counter() oobForestPreds[ind].update([oobTreePreds[j]]) elif type(self.rf) is RandomForestRegressor: for i, tree in enumerate(self.rf.estimators_): # get predictions on out of bag indices for each tree oobTreePreds = tree.predict(self.X[oobInd[i], :]) # create a dictionary entry for each index in the original # dataset. append the tree predictions to a list matching each # entry for j in xrange(len(oobInd[i])): ind = oobInd[i][j] if ind not in oobForestPreds: oobForestPreds[ind] = [] oobForestPreds[ind].append(oobTreePreds[j]) else: # throw error, rf is not the right class raise TypeError( 'rf is not an sklearn random forest class instance') # subset the original labels by the final out-of-bag indices, incase # some points were not included oobIndices = np.array(oobForestPreds.keys()) yOob = self.y[oobIndices] ensemblePreds = np.zeros(len(oobIndices)) if type(self.rf) is RandomForestClassifier: # get the class prediction for each oob index for i in xrange(len(oobIndices)): ensemblePreds[i] = oobForestPreds[i].most_common(1)[0][0] # calculate the out of bag accuracy return accuracy_score(yOob, ensemblePreds) elif type(self.rf) is RandomForestRegressor: # get the value prediction for each oob index for i in xrange(len(oobIndices)): ensemblePreds[i] = np.mean(oobForestPreds[i]) # calculate the out of bag MSE return r2_score(yOob, ensemblePreds) else: return None def _getOOBIndices(self): ''' Retrieve the indices of the points that were not sampled for each tree's bootstrap sample. Inputs: X as training data, rf as instance of sk-learn RandomForestClassifier class Output: unsampledIndices - dictionary with keys as integers corresponding to each tree and values as numpy arrays of the unsampled points for each tree ''' nSamples = self.X.shape[0] unsampledIndices = {} for i, tree in enumerate(self.rf.estimators_): # Here at each iteration we obtain out of bag samples for every # tree. unsampledIndices[i] = _generate_unsampled_indices( tree.random_state, nSamples) return unsampledIndices if __name__ == "__main__": from sklearn import datasets iris = datasets.load_iris() X = iris.data y = iris.target rfC = RandomForestClassifier(n_estimators=100, oob_score=True) rfC.fit(X, y) print "#######\n--Classification on Iris DataSet--\n#######" oobC = PermutationImportance() print "Weighted Avg Information Gain feature importances:" print rfC.feature_importances_ print "Permutation importances:" print oobC.featureImportances(rfC, X, y, 5) boston = datasets.load_boston() X = boston.data y = boston.target rfR = RandomForestRegressor(n_estimators=100, oob_score=True) rfR.fit(X, y) print "\n" print "#######\n--Regression on Boston DataSet--\n#######" oobR = PermutationImportance() print "Weighted Avg Information Gain feature importances:" print rfR.feature_importances_ print "Permutation importances:" print oobR.featureImportances(rfR, X, y, 5)
/rf_perm_feat_import-0.1.tar.gz/rf_perm_feat_import-0.1/rf_perm_feat_import/RFFeatureImportance.py
0.849457
0.658335
RFFeatureImportance.py
pypi
import numpy as np from numpy import matlib as npm import pandas as pd import time import phate from scipy import sparse import umap.umap_ as umap import RandomForest #sklearn imports from sklearn.ensemble import RandomForestClassifier from sklearn.ensemble import RandomForestRegressor from sklearn.neighbors import KNeighborsRegressor from sklearn.neighbors import KNeighborsClassifier from sklearn.inspection import permutation_importance from scipy.stats import (spearmanr, pearsonr) import sklearn from distutils.version import LooseVersion if LooseVersion(sklearn.__version__) >= LooseVersion("0.24"): # In sklearn version 0.24, forest module changed to be private. from sklearn.ensemble._forest import _generate_unsampled_indices from sklearn.ensemble import _forest as forest else: # Before sklearn version 0.24, forest was public, supporting this. from sklearn.ensemble.forest import _generate_unsampled_indices from sklearn.ensemble import forest from sklearn.discriminant_analysis import LinearDiscriminantAnalysis from sklearn import (manifold, decomposition, neighbors, cross_decomposition) def get_embeddings(data, types = ['phate'], labels = None, n_components = 2, random_state = 0, n_jobs = 1): """ This code is written to allow easy access to multiple dimensionality reduction methods. Parameters ---------- data : numpy array, required, default: None tabular feature data in the form of a numpy array types: list, required, default: ['phate'] A list of dimensionality reducition algorithms to be run. Types include: 'pca', 'pls', 'lda', 'mds', 'tsne', 'nca', 'isomap', 'lle', 'phate', 'umap', 'kpca' if type = 'all', all embeddings are computed labels: numpy array, optional for some types, default: None an array of labels for the data, used for supervised methods such as 'pls', and 'lda' n_components : int (>= 1), required, default: 2 number of dimentions of the final embeddings random_state : int, optional, default: 0 random seed for generator used in methods with random initialzations (['mds', 'tsne', 'nca', 'lle', 'phate', 'umap']) n_jobs : int, optional, default: 1 The number of jobs to use for the computation. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used Attributes ---------- embeddings : dictionary a dictionary of n_component-dimensional embeddings, keys are given by the parameter 'types' """ if types == 'all': types = ['pca', 'pls', 'lda', 'mds', 'tsne', 'nca', 'isomap', 'lle', 'phate', 'umap', 'kpca'] embeddings = dict() if 'pca' in types: embeddings['pca'] = decomposition.PCA(n_components = n_components, random_state = random_state).fit_transform(data) if 'pls' in types: embeddings['pls'] = cross_decomposition.PLSRegression().fit_transform(data, labels)[0] if 'lda' in types: embeddings['lda'] = LinearDiscriminantAnalysis(n_components = 2).fit_transform(data, labels) if 'mds' in types: embeddings['mds'] = manifold.MDS(n_components = n_components, random_state = random_state, n_jobs = n_jobs).fit_transform(data) if 'tsne' in types: embeddings['tsne'] = manifold.TSNE(n_components = n_components, init = 'pca', random_state = random_state, n_jobs = n_jobs).fit_transform(data) if 'nca' in types: embeddings['nca'] = neighbors.NeighborhoodComponentsAnalysis(init = 'random', n_components = n_components, random_state = random_state).fit_transform(data, labels) if 'isomap' in types: embeddings['isomap'] = manifold.Isomap(n_neighbors = n_neighbors, n_components = n_components, n_jobs = n_jobs).fit_transform(data) if 'lle' in types: embeddings['lle'] = manifold.LocallyLinearEmbedding(n_neighbors = n_neighbors, n_components = n_components, method = 'standard', n_jobs = n_jobs, random_state = random_state).fit_transform(data) if 'phate' in types: embeddings['phate'] = phate.PHATE(n_components = n_components, random_state = random_state).fit_transform(data) if 'umap' in types: embeddings['umap'] = umap.UMAP(random_state = random_state, n_components = n_components).fit_transform(data) if 'kpca' in types: embeddings['kpca'] = decomposition.KernelPCA(n_components = n_components, kernel = 'rbf').fit_transform(data) return(embeddings) def get_rf_embeddings(proximities = None, data = None, labels = None, label_type = 'classification', types = 'phate', n_components = 2, random_state = 0, n_jobs = 1): """ This code is written to allow easy access to multiple dimensionality reduction methods. Parameters ---------- proximities : numpy array, default: None a symmetric matrix of proximities produced from a random forest data : numpy array, default: None an (n, d) data matrix. This is not used if proximities are provided labels : numpy array, default: None a (n, 1) array of data labels. Also not used if proximities are provided labels_type : string, default:'classification' only needed if proximity matrix is not included. Needed to determine classification or regression forest type. options are 'classification' or 'regression' types: list, required, default: ['pca'] A list of dimensionality reducition algorithms to be run. Types include ['mds', 'tsne', 'isomap', 'phate', 'umap', 'kpca'] if type = 'all', all embeddings are computed Types include: 'pca', 'pls', 'lda', 'mds', 'tsne', 'nca', 'isomap', 'lle', 'phate', 'umap', 'kpca' n_components : int (>= 1), required, default: 2 number of dimentions of the final embeddings random_state : int, optional, default: 0 random seed for generator used in methods with random initialzations (['mds', 'tsne', 'phate', 'umap', 'kpca', 'nca', 'lle', 'phate', 'umap']) n_jobs : int, optional, default: 1 The number of jobs to use for the computation. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used Attributes ---------- embeddings : dictionary a dictionary of n_component-dimensional embeddings, keys are given by the parameter 'types' """ embeddings = dict() if types == 'all': types = ['mds', 'tsne', 'phate', 'umap', 'kpca', 'nca', 'lle', 'phate', 'umap'] if proximities is None: if data is None: raise ValueError('Either proximities or data is required') elif label_type == 'classification': rf = RandomForest.rf_classifier(n_estimators = 500, n_jobs = n_jobs).fit(data, labels) proximities = rf.get_proximities(data, method = 'oob', matrix_type = 'dense') embeddings['proximities'] = proximities elif label_type == 'regression': rf = RandomForest.rf_regressor(n_estimators = 500, n_jobs = n_jobs).fit(data, labels) proximities = rf.get_proximities(data, method = 'oob', matrix_type = 'dense') embeddings['proximities'] = proximities else: raise ValueError('label_type must be classificaiton or regression') if 'phate' in types: embeddings['phate'] = phate.PHATE(n_components = n_components, random_state = random_state, knn_dist = 'precomputed').fit_transform(proximities) if sparse.issparse(proximities): proximities = proximities.todense() if 'kpca' in types: embeddings['kpca'] = decomposition.KernelPCA(n_components = n_components, kernel = 'precomputed').fit_transform(proximities) if 'mds' in types: embeddings['mds'] = manifold.MDS(n_components = n_components, random_state = random_state, n_jobs = n_jobs, dissimilarity = 'precomputed').fit_transform(1 - proximities) if 'isomap' in types: embeddings['isomap'] = manifold.Isomap(n_neighbors = n_neighbors, n_components = n_components, n_jobs = n_jobs, metric = 'precomputed').fit_transform(1 - proximities) if 'umap' in types: embeddings['umap'] = umap.UMAP(random_state = random_state, n_components = n_components, metric = 'precomputed').fit_transform(1 - proximities) if 'tsne' in types: embeddings['tsne'] = manifold.TSNE(n_components = n_components, random_state = random_state, n_jobs = n_jobs, metric = 'precomputed').fit_transform(1 - proximities) return(embeddings) def get_importance_correlation(data, labels, embeddings, label_type = 'classification', n_jobs = 1, n_repeats = 30, random_state = 0, corr_type = 'pearson'): """ This code produces the correlation between the feature importances in the data's classification / regression problem and the feature importance in determining the embedding. Parameters ---------- data : numpy array, default: None an (n, d) data matrix. This is not used if proximities are provided labels : numpy array, default: None a (n, 1) array of data labels. Also not used if proximities are provided embeddings : numpy array, default: None an (n, p) embedding of the data labels_type : string, default:'classification' only needed if proximity matrix is not included. Needed to determine classification or regression forest type. options are 'classification' or 'regression' corr_type: string, default: 'pearson' designation of whether Spearman or Pearson correlatoin should be used Please choose 'spearman' or 'pearson' n_repeats : int, default: 30 the number of repetitions used in the kNN permutation importance random_state : int, optional, default: 0 random seed for generator used in methods with random initialzations (['mds', 'tsne', 'phate', 'umap', 'kpca', 'nca', 'lle', 'phate', 'umap']) n_jobs : int, optional, default: 1 The number of jobs to use for the computation. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used Returns ------- correlation : numeric the Spearman or Pearson correlation between the embedding feature importance and the prediction feature importance """ emb_model = KNeighborsRegressor(weights = 'distance') if label_type == 'classification': model = KNeighborsClassifier() score = 'accuracy' elif label_type == 'regression': model = KNeighborsRegressor(weights = 'distance') score = 'r2' model.fit(data, labels) emb_model.fit(data, embeddings) importance = permutation_importance(model, data, labels, n_repeats = n_repeats, scoring = score, n_jobs = n_jobs, random_state = random_state)['importances_mean'] emb_importance = permutation_importance(emb_model, data, embeddings, n_repeats = n_repeats, n_jobs = n_jobs, scoring = 'r2', random_state = 0)['importances_mean'] if corr_type == 'pearson': return pearsonr(emb_importance, importance)[0] elif corr_type == 'spearman': return spearmanr(emb_importance, importance).correlation
/rf_phate-0.0.3.tar.gz/rf_phate-0.0.3/rf_phate/Embeddings.py
0.78037
0.391086
Embeddings.py
pypi
import numpy as np import pandas as pd from scipy import sparse #sklearn imports from sklearn.ensemble import RandomForestClassifier from sklearn.ensemble import RandomForestRegressor import sklearn from distutils.version import LooseVersion if LooseVersion(sklearn.__version__) >= LooseVersion("0.24"): # In sklearn version 0.24, forest module changed to be private. from sklearn.ensemble._forest import _generate_unsampled_indices from sklearn.ensemble import _forest as forest else: # Before sklearn version 0.24, forest was public, supporting this. from sklearn.ensemble.forest import _generate_unsampled_indices from sklearn.ensemble import forest # In[32]: class rf_classifier(RandomForestClassifier): """ This class takes on a random forest predictors (sklearn) and addes methods to construct proximities from the random forest object. Note: most methods here will not work until your forst is fit. That is, use rf_classifier.fit(X, y) prior to generating proximities. """ def __init__(self, **kwargs): super().__init__() def _get_oob_samples(self, data): """ This is a helper function for get_oob_indices. Parameters ---------- data : (n, d) array_like (numeric) """ n = len(data) oob_samples = [] for tree in self.estimators_: # Here at each iteration we obtain out of bag samples for every tree. oob_indices = _generate_unsampled_indices(tree.random_state, n, n) oob_samples.append(oob_indices) return oob_samples #get_oob_indices proces an N x t matrix of zeros and ones to indicate oob samples in the t trees def get_oob_indices(self, data): #The data here is your X_train matrix """ This generates a matrix of out-of-bag samples for each decision tree in the forest Parameters ---------- data : (n, d) array_like (numeric) Returns ------- oob_matrix : (n, n_estimators) array_like """ n = len(data) num_trees = self.n_estimators oob_matrix = np.zeros((n, num_trees)) oob_samples = self._get_oob_samples(data) for i in range(n): for j in range(num_trees): if i in oob_samples[j]: oob_matrix[i, j] = 1 return oob_matrix def get_proximity_vector(self, ind, leaf_matrix, oob_indices, method = 'oob'): """ This method produces a vector of proximity values for a given observation index. This is typically used in conjunction with get_proximities. Parameters ---------- leaf_matrix : (n, n_estimators) array_like oob_indices : (n, n_estimators) array_like method : string: methods may be 'original' or 'oob' (default) Returns ------ prox_vec : (n, 1) array)_like: a vector of proximity values """ n, num_trees = leaf_matrix.shape prox_vec = np.zeros((1, n)) if method == 'oob': treeCounts = np.zeros((1, n)) for t in range(num_trees): if oob_indices[ind, t] == 0: continue else: index = leaf_matrix[ind, t] oob_matches = leaf_matrix[:, t] * oob_indices[:, t] == index oob_obs = oob_indices[:, t] == 1 treeCounts[0, oob_obs] += 1 prox_vec[0, oob_matches] += 1 treeCounts[treeCounts == 0] = 1 prox_vec /= treeCounts cols = np.nonzero(prox_vec)[1] rows = np.ones(len(cols), dtype = int) * ind data = prox_vec[0, cols] elif method == 'original': treeCounts = np.zeros((1, n)) for t in range(num_trees): index = leaf_matrix[ind, t] matches = leaf_matrix[:, t] == index prox_vec[0, matches] += 1 prox_vec /= num_trees cols = np.nonzero(prox_vec)[1] rows = np.ones(len(cols), dtype = int) * ind data = prox_vec[0, cols] return data.tolist(), rows.tolist(), cols.tolist() def get_proximities(self, data, method = 'oob', matrix_type = 'dense'): """ This method produces a proximity matrix for the random forest object. Parameters ---------- data : (n, d) array_like (numeric) method : string: methods may be 'original' or 'oob' (default) matrix_type: string: 'dense' (default) to return a dense matrix, 'sparse' to return a sparse crs matrix Returns ------- prox (if matrix_type = dense) : a matrix of random forest proximities prox_sparse (if matrix_type = sparse) : a sparse crs_matrix of proximities """ oob_indices = self.get_oob_indices(data) leaf_matrix = self.apply(data) n, num_trees = leaf_matrix.shape for i in range(n): if i == 0: prox_vals, rows, cols = self.get_proximity_vector(i, leaf_matrix, oob_indices) else: if i % 100 == 0: print('Finished with {} rows'.format(i)) prox_val_temp, rows_temp, cols_temp = self.get_proximity_vector(i, leaf_matrix, oob_indices, method = method) prox_vals.extend(prox_val_temp) rows.extend(rows_temp) cols.extend(cols_temp) prox_sparse = sparse.csr_matrix((np.array(prox_vals), (np.array(rows), np.array(cols))), shape = (n, n)) if matrix_type == 'dense': return prox_sparse.todense() else: return prox_sparse class rf_regressor(RandomForestRegressor): """ This class takes on a random forest predictors (sklearn) and addes methods to construct proximities from the random forest object. Note: most methods here will not work until your forst is fit. That is, use rf_regressor.fit(X, y) prior to generating proximities. """ def __init__(self, **kwargs): super().__init__() def _get_oob_samples(self, data): """ This is a helper function for get_oob_indices. Parameters ---------- data : (n, d) array_like (numeric) """ n = len(data) oob_samples = [] for tree in self.estimators_: # Here at each iteration we obtain out of bag samples for every tree. oob_indices = _generate_unsampled_indices(tree.random_state, n, n) oob_samples.append(oob_indices) return oob_samples #get_oob_indices proces an N x t matrix of zeros and ones to indicate oob samples in the t trees def get_oob_indices(self, data): #The data here is your X_train matrix """ This generates a matrix of out-of-bag samples for each decision tree in the forest Parameters ---------- data : (n, d) array_like (numeric) Returns ------- oob_matrix : (n, n_estimators) array_like """ n = len(data) num_trees = self.n_estimators oob_matrix = np.zeros((n, num_trees)) oob_samples = self._get_oob_samples(data) for i in range(n): for j in range(num_trees): if i in oob_samples[j]: oob_matrix[i, j] = 1 return oob_matrix def get_proximity_vector(self, ind, leaf_matrix, oob_indices, method = 'oob'): """ This method produces a vector of proximity values for a given observation index. This is typically used in conjunction with get_proximities. Parameters ---------- leaf_matrix : (n, n_estimators) array_like oob_indices : (n, n_estimators) array_like method : string: methods may be 'original' or 'oob' (default) Returns ------ prox_vec : (n, 1) array)_like: a vector of proximity values """ n, num_trees = leaf_matrix.shape prox_vec = np.zeros((1, n)) if method == 'oob': treeCounts = np.zeros((1, n)) for t in range(num_trees): if oob_indices[ind, t] == 0: continue else: index = leaf_matrix[ind, t] oob_matches = leaf_matrix[:, t] * oob_indices[:, t] == index oob_obs = oob_indices[:, t] == 1 treeCounts[0, oob_obs] += 1 prox_vec[0, oob_matches] += 1 treeCounts[treeCounts == 0] = 1 prox_vec /= treeCounts cols = np.nonzero(prox_vec)[1] rows = np.ones(len(cols), dtype = int) * ind data = prox_vec[0, cols] elif method == 'original': treeCounts = np.zeros((1, n)) for t in range(num_trees): index = leaf_matrix[ind, t] matches = leaf_matrix[:, t] == index prox_vec[0, matches] += 1 prox_vec /= num_trees cols = np.nonzero(prox_vec)[1] rows = np.ones(len(cols), dtype = int) * ind data = prox_vec[0, cols] return data.tolist(), rows.tolist(), cols.tolist() def get_proximities(self, data, method = 'oob', matrix_type = 'dense'): """ This method produces a proximity matrix for the random forest object. Parameters ---------- data : (n, d) array_like (numeric) method : string: methods may be 'original' or 'oob' (default) matrix_type: string: 'dense' (default) to return a dense matrix, 'sparse' to return a sparse crs matrix Returns ------- prox (if matrix_type = dense) : a matrix of random forest proximities prox_sparse (if matrix_type = sparse) : a sparse crs_matrix of proximities """ oob_indices = self.get_oob_indices(data) leaf_matrix = self.apply(data) n, num_trees = leaf_matrix.shape for i in range(n): if i == 0: prox_vals, rows, cols = self.get_proximity_vector(i, leaf_matrix, oob_indices) else: if i % 100 == 0: print('Finished with {} rows'.format(i)) prox_val_temp, rows_temp, cols_temp = self.get_proximity_vector(i, leaf_matrix, oob_indices, method = method) prox_vals.extend(prox_val_temp) rows.extend(rows_temp) cols.extend(cols_temp) prox_sparse = sparse.csr_matrix((np.array(prox_vals), (np.array(rows), np.array(cols))), shape = (n, n)) if matrix_type == 'dense': return prox_sparse.todense() else: return prox_sparse
/rf_phate-0.0.3.tar.gz/rf_phate-0.0.3/rf_phate/RandomForest.py
0.73307
0.427038
RandomForest.py
pypi
import math import matplotlib.pyplot as plt from .Generaldistribution import Distribution class Gaussian(Distribution): """ Gaussian distribution class for calculating and visualizing a Gaussian distribution. Attributes: mean (float) representing the mean value of the distribution stdev (float) representing the standard deviation of the distribution data_list (list of floats) a list of floats extracted from the data file """ def __init__(self, mu=0, sigma=1): Distribution.__init__(self, mu, sigma) def calculate_mean(self): """Function to calculate the mean of the data set. Args: None Returns: float: mean of the data set """ avg = 1.0 * sum(self.data) / len(self.data) self.mean = avg return self.mean def calculate_stdev(self, sample=True): """Function to calculate the standard deviation of the data set. Args: sample (bool): whether the data represents a sample or population Returns: float: standard deviation of the data set """ if sample: n = len(self.data) - 1 else: n = len(self.data) mean = self.calculate_mean() sigma = 0 for d in self.data: sigma += (d - mean) ** 2 sigma = math.sqrt(sigma / n) self.stdev = sigma return self.stdev def plot_histogram(self): """Function to output a histogram of the instance variable data using matplotlib pyplot library. Args: None Returns: None """ plt.hist(self.data) plt.title('Histogram of Data') plt.xlabel('data') plt.ylabel('count') def pdf(self, x): """Probability density function calculator for the gaussian distribution. Args: x (float): point for calculating the probability density function Returns: float: probability density function output """ return (1.0 / (self.stdev * math.sqrt(2*math.pi))) * math.exp(-0.5*((x - self.mean) / self.stdev) ** 2) def plot_histogram_pdf(self, n_spaces = 50): """Function to plot the normalized histogram of the data and a plot of the probability density function along the same range Args: n_spaces (int): number of data points Returns: list: x values for the pdf plot list: y values for the pdf plot """ mu = self.mean sigma = self.stdev min_range = min(self.data) max_range = max(self.data) # calculates the interval between x values interval = 1.0 * (max_range - min_range) / n_spaces x = [] y = [] # calculate the x values to visualize for i in range(n_spaces): tmp = min_range + interval*i x.append(tmp) y.append(self.pdf(tmp)) # make the plots fig, axes = plt.subplots(2,sharex=True) fig.subplots_adjust(hspace=.5) axes[0].hist(self.data, density=True) axes[0].set_title('Normed Histogram of Data') axes[0].set_ylabel('Density') axes[1].plot(x, y) axes[1].set_title('Normal Distribution for \n Sample Mean and Sample Standard Deviation') axes[0].set_ylabel('Density') plt.show() return x, y def __add__(self, other): """Function to add together two Gaussian distributions Args: other (Gaussian): Gaussian instance Returns: Gaussian: Gaussian distribution """ result = Gaussian() result.mean = self.mean + other.mean result.stdev = math.sqrt(self.stdev ** 2 + other.stdev ** 2) return result def __repr__(self): """Function to output the characteristics of the Gaussian instance Args: None Returns: string: characteristics of the Gaussian """ return "mean {}, standard deviation {}".format(self.mean, self.stdev)
/rf_probability-0.1.tar.gz/rf_probability-0.1/rf_probability/Gaussiandistribution.py
0.688364
0.853058
Gaussiandistribution.py
pypi
from SCLibrary.base import keyword from functools import reduce class SelectKeywords(object): @keyword("SELECT ${properties} FROM ${array:[^(WHERE)]}") def select_array(self, properties, array): """ 返回符合条件的数组 """ result = [] if properties == '*': return array else: properties_arr = list( map(lambda x: x.strip(), properties.split(','))) for item in array: prop = {} for key in properties_arr: if key in item: prop[key] = item[key] else: prop[key] = None result.append(prop) return result @keyword("SELECTONE ${properties} FROM ${array:[^(WHERE)]}") def select_one_array(self, properties, array): """ 返回符合条件的第一条数据 """ return self.select_array(properties, array)[0] def condition_parser(self, array, keywords): keyword = keywords.pop() def intersperse(array, item): result = [item] * (len(array) * 2 - 1) result[0::2] = array return result def flatmap(array): return reduce(list.__add__, array, []) new_array = flatmap(map(lambda item: intersperse( item, keyword), map(lambda item: item.split(keyword) if item not in ['!=', '>=', '<='] else [item], array))) if len(keywords) == 0: return list(filter(lambda item: item != '', new_array)) else: return self.condition_parser(new_array, keywords) @keyword("SELECT ${properties} FROM ${array} WHERE ${conditions}") def select_array_where(self, properties, array, conditions): """ 返回符合条件的数组 """ items = self.select_array(properties, array) keywords = ['>', '<', '=', 'AND', 'and', 'OR', 'or', '!=', '>=', '<='] condition_array = self.condition_parser(conditions.split(), keywords) operater = { '>': lambda x, y: str(x) > str(y), '<': lambda x, y: str(x) < str(y), '=': lambda x, y: str(x) == str(y), '!=': lambda x, y: str(x) != str(y), '>=': lambda x, y: str(x) >= str(y), '<=': lambda x, y: str(x) <= str(y), } def fn(item): result = True mode = 0 name = None op = None logic = None for condition in condition_array: if condition in ['AND', 'and', 'OR', 'or']: mode = 0 logic = condition elif mode == 0: name = condition mode += 1 elif mode == 1: op = condition mode += 1 elif mode == 2: if logic in ['OR', 'or']: if name in item: result |= operater[op](item[name], condition) else: result |= False else: if name in item: result &= operater[op](item[name], condition) else: result &= False mode = 0 name = None logic = None op = None return result return list(filter(fn, items)) @keyword("SELECTONE ${properties} FROM ${array} WHERE ${conditions}") def select_one_array_where(self, properties, array, conditions): """ 返回符合条件的第一条数据 """ return self.select_array_where(properties, array, conditions)[0]
/rf-sclibrary-1.3.4.tar.gz/rf-sclibrary-1.3.4/src/SCLibrary/builtin/select.py
0.424054
0.286359
select.py
pypi
# Segment Anything **[Meta AI Research, FAIR](https://ai.facebook.com/research/)** [Alexander Kirillov](https://alexander-kirillov.github.io/), [Eric Mintun](https://ericmintun.github.io/), [Nikhila Ravi](https://nikhilaravi.com/), [Hanzi Mao](https://hanzimao.me/), Chloe Rolland, Laura Gustafson, [Tete Xiao](https://tetexiao.com), [Spencer Whitehead](https://www.spencerwhitehead.com/), Alex Berg, Wan-Yen Lo, [Piotr Dollar](https://pdollar.github.io/), [Ross Girshick](https://www.rossgirshick.info/) [[`Paper`](https://ai.facebook.com/research/publications/segment-anything/)] [[`Project`](https://segment-anything.com/)] [[`Demo`](https://segment-anything.com/demo)] [[`Dataset`](https://segment-anything.com/dataset/index.html)] [[`Blog`](https://ai.facebook.com/blog/segment-anything-foundation-model-image-segmentation/)] [[`BibTeX`](#citing-segment-anything)] ![SAM design](assets/model_diagram.png?raw=true) The **Segment Anything Model (SAM)** produces high quality object masks from input prompts such as points or boxes, and it can be used to generate masks for all objects in an image. It has been trained on a [dataset](https://segment-anything.com/dataset/index.html) of 11 million images and 1.1 billion masks, and has strong zero-shot performance on a variety of segmentation tasks. <p float="left"> <img src="assets/masks1.png?raw=true" width="37.25%" /> <img src="assets/masks2.jpg?raw=true" width="61.5%" /> </p> ## Installation The code requires `python>=3.8`, as well as `pytorch>=1.7` and `torchvision>=0.8`. Please follow the instructions [here](https://pytorch.org/get-started/locally/) to install both PyTorch and TorchVision dependencies. Installing both PyTorch and TorchVision with CUDA support is strongly recommended. Install Segment Anything: ``` pip install git+https://github.com/facebookresearch/segment-anything.git ``` or clone the repository locally and install with ``` git clone git@github.com:facebookresearch/segment-anything.git cd segment-anything; pip install -e . ``` The following optional dependencies are necessary for mask post-processing, saving masks in COCO format, the example notebooks, and exporting the model in ONNX format. `jupyter` is also required to run the example notebooks. ``` pip install opencv-python pycocotools matplotlib onnxruntime onnx ``` ## <a name="GettingStarted"></a>Getting Started First download a [model checkpoint](#model-checkpoints). Then the model can be used in just a few lines to get masks from a given prompt: ``` from segment_anything import SamPredictor, sam_model_registry sam = sam_model_registry["<model_type>"](checkpoint="<path/to/checkpoint>") predictor = SamPredictor(sam) predictor.set_image(<your_image>) masks, _, _ = predictor.predict(<input_prompts>) ``` or generate masks for an entire image: ``` from segment_anything import SamAutomaticMaskGenerator, sam_model_registry sam = sam_model_registry["<model_type>"](checkpoint="<path/to/checkpoint>") mask_generator = SamAutomaticMaskGenerator(sam) masks = mask_generator.generate(<your_image>) ``` Additionally, masks can be generated for images from the command line: ``` python scripts/amg.py --checkpoint <path/to/checkpoint> --model-type <model_type> --input <image_or_folder> --output <path/to/output> ``` See the examples notebooks on [using SAM with prompts](/notebooks/predictor_example.ipynb) and [automatically generating masks](/notebooks/automatic_mask_generator_example.ipynb) for more details. <p float="left"> <img src="assets/notebook1.png?raw=true" width="49.1%" /> <img src="assets/notebook2.png?raw=true" width="48.9%" /> </p> ## ONNX Export SAM's lightweight mask decoder can be exported to ONNX format so that it can be run in any environment that supports ONNX runtime, such as in-browser as showcased in the [demo](https://segment-anything.com/demo). Export the model with ``` python scripts/export_onnx_model.py --checkpoint <path/to/checkpoint> --model-type <model_type> --output <path/to/output> ``` See the [example notebook](https://github.com/facebookresearch/segment-anything/blob/main/notebooks/onnx_model_example.ipynb) for details on how to combine image preprocessing via SAM's backbone with mask prediction using the ONNX model. It is recommended to use the latest stable version of PyTorch for ONNX export. ### Web demo The `demo/` folder has a simple one page React app which shows how to run mask prediction with the exported ONNX model in a web browser with multithreading. Please see [`demo/README.md`](https://github.com/facebookresearch/segment-anything/blob/main/demo/README.md) for more details. ## <a name="Models"></a>Model Checkpoints Three model versions of the model are available with different backbone sizes. These models can be instantiated by running ``` from segment_anything import sam_model_registry sam = sam_model_registry["<model_type>"](checkpoint="<path/to/checkpoint>") ``` Click the links below to download the checkpoint for the corresponding model type. - **`default` or `vit_h`: [ViT-H SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth)** - `vit_l`: [ViT-L SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_l_0b3195.pth) - `vit_b`: [ViT-B SAM model.](https://dl.fbaipublicfiles.com/segment_anything/sam_vit_b_01ec64.pth) ## Dataset See [here](https://ai.facebook.com/datasets/segment-anything/) for an overview of the datastet. The dataset can be downloaded [here](https://ai.facebook.com/datasets/segment-anything-downloads/). By downloading the datasets you agree that you have read and accepted the terms of the SA-1B Dataset Research License. We save masks per image as a json file. It can be loaded as a dictionary in python in the below format. ```python { "image" : image_info, "annotations" : [annotation], } image_info { "image_id" : int, # Image id "width" : int, # Image width "height" : int, # Image height "file_name" : str, # Image filename } annotation { "id" : int, # Annotation id "segmentation" : dict, # Mask saved in COCO RLE format. "bbox" : [x, y, w, h], # The box around the mask, in XYWH format "area" : int, # The area in pixels of the mask "predicted_iou" : float, # The model's own prediction of the mask's quality "stability_score" : float, # A measure of the mask's quality "crop_box" : [x, y, w, h], # The crop of the image used to generate the mask, in XYWH format "point_coords" : [[x, y]], # The point coordinates input to the model to generate the mask } ``` Image ids can be found in sa_images_ids.txt which can be downloaded using the above [link](https://ai.facebook.com/datasets/segment-anything-downloads/) as well. To decode a mask in COCO RLE format into binary: ``` from pycocotools import mask as mask_utils mask = mask_utils.decode(annotation["segmentation"]) ``` See [here](https://github.com/cocodataset/cocoapi/blob/master/PythonAPI/pycocotools/mask.py) for more instructions to manipulate masks stored in RLE format. ## License The model is licensed under the [Apache 2.0 license](LICENSE). ## Contributing See [contributing](CONTRIBUTING.md) and the [code of conduct](CODE_OF_CONDUCT.md). ## Contributors The Segment Anything project was made possible with the help of many contributors (alphabetical): Aaron Adcock, Vaibhav Aggarwal, Morteza Behrooz, Cheng-Yang Fu, Ashley Gabriel, Ahuva Goldstand, Allen Goodman, Sumanth Gurram, Jiabo Hu, Somya Jain, Devansh Kukreja, Robert Kuo, Joshua Lane, Yanghao Li, Lilian Luong, Jitendra Malik, Mallika Malhotra, William Ngan, Omkar Parkhi, Nikhil Raina, Dirk Rowe, Neil Sejoor, Vanessa Stark, Bala Varadarajan, Bram Wasti, Zachary Winstrom ## Citing Segment Anything If you use SAM or SA-1B in your research, please use the following BibTeX entry. ``` @article{kirillov2023segany, title={Segment Anything}, author={Kirillov, Alexander and Mintun, Eric and Ravi, Nikhila and Mao, Hanzi and Rolland, Chloe and Gustafson, Laura and Xiao, Tete and Whitehead, Spencer and Berg, Alexander C. and Lo, Wan-Yen and Doll{\'a}r, Piotr and Girshick, Ross}, journal={arXiv:2304.02643}, year={2023} } ```
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/README.md
0.698638
0.983847
README.md
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import numpy as np import torch from segment_anything.modeling import Sam from typing import Optional, Tuple from .utils.transforms import ResizeLongestSide class SamPredictor: def __init__( self, sam_model: Sam, ) -> None: """ Uses SAM to calculate the image embedding for an image, and then allow repeated, efficient mask prediction given prompts. Arguments: sam_model (Sam): The model to use for mask prediction. """ super().__init__() self.model = sam_model self.transform = ResizeLongestSide(sam_model.image_encoder.img_size) self.reset_image() def set_image( self, image: np.ndarray, image_format: str = "RGB", ) -> None: """ Calculates the image embeddings for the provided image, allowing masks to be predicted with the 'predict' method. Arguments: image (np.ndarray): The image for calculating masks. Expects an image in HWC uint8 format, with pixel values in [0, 255]. image_format (str): The color format of the image, in ['RGB', 'BGR']. """ assert image_format in [ "RGB", "BGR", ], f"image_format must be in ['RGB', 'BGR'], is {image_format}." if image_format != self.model.image_format: image = image[..., ::-1] # Transform the image to the form expected by the model input_image = self.transform.apply_image(image) input_image_torch = torch.as_tensor(input_image, device=self.device) input_image_torch = input_image_torch.permute(2, 0, 1).contiguous()[None, :, :, :] self.set_torch_image(input_image_torch, image.shape[:2]) @torch.no_grad() def set_torch_image( self, transformed_image: torch.Tensor, original_image_size: Tuple[int, ...], ) -> None: """ Calculates the image embeddings for the provided image, allowing masks to be predicted with the 'predict' method. Expects the input image to be already transformed to the format expected by the model. Arguments: transformed_image (torch.Tensor): The input image, with shape 1x3xHxW, which has been transformed with ResizeLongestSide. original_image_size (tuple(int, int)): The size of the image before transformation, in (H, W) format. """ assert ( len(transformed_image.shape) == 4 and transformed_image.shape[1] == 3 and max(*transformed_image.shape[2:]) == self.model.image_encoder.img_size ), f"set_torch_image input must be BCHW with long side {self.model.image_encoder.img_size}." self.reset_image() self.original_size = original_image_size self.input_size = tuple(transformed_image.shape[-2:]) input_image = self.model.preprocess(transformed_image) self.features = self.model.image_encoder(input_image) self.is_image_set = True def predict( self, point_coords: Optional[np.ndarray] = None, point_labels: Optional[np.ndarray] = None, box: Optional[np.ndarray] = None, mask_input: Optional[np.ndarray] = None, multimask_output: bool = True, return_logits: bool = False, ) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: """ Predict masks for the given input prompts, using the currently set image. Arguments: point_coords (np.ndarray or None): A Nx2 array of point prompts to the model. Each point is in (X,Y) in pixels. point_labels (np.ndarray or None): A length N array of labels for the point prompts. 1 indicates a foreground point and 0 indicates a background point. box (np.ndarray or None): A length 4 array given a box prompt to the model, in XYXY format. mask_input (np.ndarray): A low resolution mask input to the model, typically coming from a previous prediction iteration. Has form 1xHxW, where for SAM, H=W=256. multimask_output (bool): If true, the model will return three masks. For ambiguous input prompts (such as a single click), this will often produce better masks than a single prediction. If only a single mask is needed, the model's predicted quality score can be used to select the best mask. For non-ambiguous prompts, such as multiple input prompts, multimask_output=False can give better results. return_logits (bool): If true, returns un-thresholded masks logits instead of a binary mask. Returns: (np.ndarray): The output masks in CxHxW format, where C is the number of masks, and (H, W) is the original image size. (np.ndarray): An array of length C containing the model's predictions for the quality of each mask. (np.ndarray): An array of shape CxHxW, where C is the number of masks and H=W=256. These low resolution logits can be passed to a subsequent iteration as mask input. """ if not self.is_image_set: raise RuntimeError("An image must be set with .set_image(...) before mask prediction.") # Transform input prompts coords_torch, labels_torch, box_torch, mask_input_torch = None, None, None, None if point_coords is not None: assert ( point_labels is not None ), "point_labels must be supplied if point_coords is supplied." point_coords = self.transform.apply_coords(point_coords, self.original_size) coords_torch = torch.as_tensor(point_coords, dtype=torch.float, device=self.device) labels_torch = torch.as_tensor(point_labels, dtype=torch.int, device=self.device) coords_torch, labels_torch = coords_torch[None, :, :], labels_torch[None, :] if box is not None: box = self.transform.apply_boxes(box, self.original_size) box_torch = torch.as_tensor(box, dtype=torch.float, device=self.device) box_torch = box_torch[None, :] if mask_input is not None: mask_input_torch = torch.as_tensor(mask_input, dtype=torch.float, device=self.device) mask_input_torch = mask_input_torch[None, :, :, :] masks, iou_predictions, low_res_masks = self.predict_torch( coords_torch, labels_torch, box_torch, mask_input_torch, multimask_output, return_logits=return_logits, ) masks_np = masks[0].detach().cpu().numpy() iou_predictions_np = iou_predictions[0].detach().cpu().numpy() low_res_masks_np = low_res_masks[0].detach().cpu().numpy() return masks_np, iou_predictions_np, low_res_masks_np @torch.no_grad() def predict_torch( self, point_coords: Optional[torch.Tensor], point_labels: Optional[torch.Tensor], boxes: Optional[torch.Tensor] = None, mask_input: Optional[torch.Tensor] = None, multimask_output: bool = True, return_logits: bool = False, ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]: """ Predict masks for the given input prompts, using the currently set image. Input prompts are batched torch tensors and are expected to already be transformed to the input frame using ResizeLongestSide. Arguments: point_coords (torch.Tensor or None): A BxNx2 array of point prompts to the model. Each point is in (X,Y) in pixels. point_labels (torch.Tensor or None): A BxN array of labels for the point prompts. 1 indicates a foreground point and 0 indicates a background point. boxes (np.ndarray or None): A Bx4 array given a box prompt to the model, in XYXY format. mask_input (np.ndarray): A low resolution mask input to the model, typically coming from a previous prediction iteration. Has form Bx1xHxW, where for SAM, H=W=256. Masks returned by a previous iteration of the predict method do not need further transformation. multimask_output (bool): If true, the model will return three masks. For ambiguous input prompts (such as a single click), this will often produce better masks than a single prediction. If only a single mask is needed, the model's predicted quality score can be used to select the best mask. For non-ambiguous prompts, such as multiple input prompts, multimask_output=False can give better results. return_logits (bool): If true, returns un-thresholded masks logits instead of a binary mask. Returns: (torch.Tensor): The output masks in BxCxHxW format, where C is the number of masks, and (H, W) is the original image size. (torch.Tensor): An array of shape BxC containing the model's predictions for the quality of each mask. (torch.Tensor): An array of shape BxCxHxW, where C is the number of masks and H=W=256. These low res logits can be passed to a subsequent iteration as mask input. """ if not self.is_image_set: raise RuntimeError("An image must be set with .set_image(...) before mask prediction.") if point_coords is not None: points = (point_coords, point_labels) else: points = None # Embed prompts sparse_embeddings, dense_embeddings = self.model.prompt_encoder( points=points, boxes=boxes, masks=mask_input, ) # Predict masks low_res_masks, iou_predictions = self.model.mask_decoder( image_embeddings=self.features, image_pe=self.model.prompt_encoder.get_dense_pe(), sparse_prompt_embeddings=sparse_embeddings, dense_prompt_embeddings=dense_embeddings, multimask_output=multimask_output, ) # Upscale the masks to the original image resolution masks = self.model.postprocess_masks(low_res_masks, self.input_size, self.original_size) if not return_logits: masks = masks > self.model.mask_threshold return masks, iou_predictions, low_res_masks def get_image_embedding(self) -> torch.Tensor: """ Returns the image embeddings for the currently set image, with shape 1xCxHxW, where C is the embedding dimension and (H,W) are the embedding spatial dimension of SAM (typically C=256, H=W=64). """ if not self.is_image_set: raise RuntimeError( "An image must be set with .set_image(...) to generate an embedding." ) assert self.features is not None, "Features must exist if an image has been set." return self.features @property def device(self) -> torch.device: return self.model.device def reset_image(self) -> None: """Resets the currently set image.""" self.is_image_set = False self.features = None self.orig_h = None self.orig_w = None self.input_h = None self.input_w = None
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/predictor.py
0.952075
0.708276
predictor.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import numpy as np import torch from torchvision.ops.boxes import batched_nms, box_area # type: ignore from typing import Any, Dict, List, Optional, Tuple from .modeling import Sam from .predictor import SamPredictor from .utils.amg import ( MaskData, area_from_rle, batch_iterator, batched_mask_to_box, box_xyxy_to_xywh, build_all_layer_point_grids, calculate_stability_score, coco_encode_rle, generate_crop_boxes, is_box_near_crop_edge, mask_to_rle_pytorch, remove_small_regions, rle_to_mask, uncrop_boxes_xyxy, uncrop_masks, uncrop_points, ) class SamAutomaticMaskGenerator: def __init__( self, model: Sam, points_per_side: Optional[int] = 32, points_per_batch: int = 64, pred_iou_thresh: float = 0.88, stability_score_thresh: float = 0.95, stability_score_offset: float = 1.0, box_nms_thresh: float = 0.7, crop_n_layers: int = 0, crop_nms_thresh: float = 0.7, crop_overlap_ratio: float = 512 / 1500, crop_n_points_downscale_factor: int = 1, point_grids: Optional[List[np.ndarray]] = None, min_mask_region_area: int = 0, output_mode: str = "binary_mask", ) -> None: """ Using a SAM model, generates masks for the entire image. Generates a grid of point prompts over the image, then filters low quality and duplicate masks. The default settings are chosen for SAM with a ViT-H backbone. Arguments: model (Sam): The SAM model to use for mask prediction. points_per_side (int or None): The number of points to be sampled along one side of the image. The total number of points is points_per_side**2. If None, 'point_grids' must provide explicit point sampling. points_per_batch (int): Sets the number of points run simultaneously by the model. Higher numbers may be faster but use more GPU memory. pred_iou_thresh (float): A filtering threshold in [0,1], using the model's predicted mask quality. stability_score_thresh (float): A filtering threshold in [0,1], using the stability of the mask under changes to the cutoff used to binarize the model's mask predictions. stability_score_offset (float): The amount to shift the cutoff when calculated the stability score. box_nms_thresh (float): The box IoU cutoff used by non-maximal suppression to filter duplicate masks. crop_n_layers (int): If >0, mask prediction will be run again on crops of the image. Sets the number of layers to run, where each layer has 2**i_layer number of image crops. crop_nms_thresh (float): The box IoU cutoff used by non-maximal suppression to filter duplicate masks between different crops. crop_overlap_ratio (float): Sets the degree to which crops overlap. In the first crop layer, crops will overlap by this fraction of the image length. Later layers with more crops scale down this overlap. crop_n_points_downscale_factor (int): The number of points-per-side sampled in layer n is scaled down by crop_n_points_downscale_factor**n. point_grids (list(np.ndarray) or None): A list over explicit grids of points used for sampling, normalized to [0,1]. The nth grid in the list is used in the nth crop layer. Exclusive with points_per_side. min_mask_region_area (int): If >0, postprocessing will be applied to remove disconnected regions and holes in masks with area smaller than min_mask_region_area. Requires opencv. output_mode (str): The form masks are returned in. Can be 'binary_mask', 'uncompressed_rle', or 'coco_rle'. 'coco_rle' requires pycocotools. For large resolutions, 'binary_mask' may consume large amounts of memory. """ assert (points_per_side is None) != ( point_grids is None ), "Exactly one of points_per_side or point_grid must be provided." if points_per_side is not None: self.point_grids = build_all_layer_point_grids( points_per_side, crop_n_layers, crop_n_points_downscale_factor, ) elif point_grids is not None: self.point_grids = point_grids else: raise ValueError("Can't have both points_per_side and point_grid be None.") assert output_mode in [ "binary_mask", "uncompressed_rle", "coco_rle", ], f"Unknown output_mode {output_mode}." if output_mode == "coco_rle": from pycocotools import mask as mask_utils # type: ignore # noqa: F401 if min_mask_region_area > 0: import cv2 # type: ignore # noqa: F401 self.predictor = SamPredictor(model) self.points_per_batch = points_per_batch self.pred_iou_thresh = pred_iou_thresh self.stability_score_thresh = stability_score_thresh self.stability_score_offset = stability_score_offset self.box_nms_thresh = box_nms_thresh self.crop_n_layers = crop_n_layers self.crop_nms_thresh = crop_nms_thresh self.crop_overlap_ratio = crop_overlap_ratio self.crop_n_points_downscale_factor = crop_n_points_downscale_factor self.min_mask_region_area = min_mask_region_area self.output_mode = output_mode @torch.no_grad() def generate(self, image: np.ndarray) -> List[Dict[str, Any]]: """ Generates masks for the given image. Arguments: image (np.ndarray): The image to generate masks for, in HWC uint8 format. Returns: list(dict(str, any)): A list over records for masks. Each record is a dict containing the following keys: segmentation (dict(str, any) or np.ndarray): The mask. If output_mode='binary_mask', is an array of shape HW. Otherwise, is a dictionary containing the RLE. bbox (list(float)): The box around the mask, in XYWH format. area (int): The area in pixels of the mask. predicted_iou (float): The model's own prediction of the mask's quality. This is filtered by the pred_iou_thresh parameter. point_coords (list(list(float))): The point coordinates input to the model to generate this mask. stability_score (float): A measure of the mask's quality. This is filtered on using the stability_score_thresh parameter. crop_box (list(float)): The crop of the image used to generate the mask, given in XYWH format. """ # Generate masks mask_data = self._generate_masks(image) # Filter small disconnected regions and holes in masks if self.min_mask_region_area > 0: mask_data = self.postprocess_small_regions( mask_data, self.min_mask_region_area, max(self.box_nms_thresh, self.crop_nms_thresh), ) # Encode masks if self.output_mode == "coco_rle": mask_data["segmentations"] = [coco_encode_rle(rle) for rle in mask_data["rles"]] elif self.output_mode == "binary_mask": mask_data["segmentations"] = [rle_to_mask(rle) for rle in mask_data["rles"]] else: mask_data["segmentations"] = mask_data["rles"] # Write mask records curr_anns = [] for idx in range(len(mask_data["segmentations"])): ann = { "segmentation": mask_data["segmentations"][idx], "area": area_from_rle(mask_data["rles"][idx]), "bbox": box_xyxy_to_xywh(mask_data["boxes"][idx]).tolist(), "predicted_iou": mask_data["iou_preds"][idx].item(), "point_coords": [mask_data["points"][idx].tolist()], "stability_score": mask_data["stability_score"][idx].item(), "crop_box": box_xyxy_to_xywh(mask_data["crop_boxes"][idx]).tolist(), } curr_anns.append(ann) return curr_anns def _generate_masks(self, image: np.ndarray) -> MaskData: orig_size = image.shape[:2] crop_boxes, layer_idxs = generate_crop_boxes( orig_size, self.crop_n_layers, self.crop_overlap_ratio ) # Iterate over image crops data = MaskData() for crop_box, layer_idx in zip(crop_boxes, layer_idxs): crop_data = self._process_crop(image, crop_box, layer_idx, orig_size) data.cat(crop_data) # Remove duplicate masks between crops if len(crop_boxes) > 1: # Prefer masks from smaller crops scores = 1 / box_area(data["crop_boxes"]) scores = scores.to(data["boxes"].device) keep_by_nms = batched_nms( data["boxes"].float(), scores, torch.zeros_like(data["boxes"][:, 0]), # categories iou_threshold=self.crop_nms_thresh, ) data.filter(keep_by_nms) data.to_numpy() return data def _process_crop( self, image: np.ndarray, crop_box: List[int], crop_layer_idx: int, orig_size: Tuple[int, ...], ) -> MaskData: # Crop the image and calculate embeddings x0, y0, x1, y1 = crop_box cropped_im = image[y0:y1, x0:x1, :] cropped_im_size = cropped_im.shape[:2] self.predictor.set_image(cropped_im) # Get points for this crop points_scale = np.array(cropped_im_size)[None, ::-1] points_for_image = self.point_grids[crop_layer_idx] * points_scale # Generate masks for this crop in batches data = MaskData() for (points,) in batch_iterator(self.points_per_batch, points_for_image): batch_data = self._process_batch(points, cropped_im_size, crop_box, orig_size) data.cat(batch_data) del batch_data self.predictor.reset_image() # Remove duplicates within this crop. keep_by_nms = batched_nms( data["boxes"].float(), data["iou_preds"], torch.zeros_like(data["boxes"][:, 0]), # categories iou_threshold=self.box_nms_thresh, ) data.filter(keep_by_nms) # Return to the original image frame data["boxes"] = uncrop_boxes_xyxy(data["boxes"], crop_box) data["points"] = uncrop_points(data["points"], crop_box) data["crop_boxes"] = torch.tensor([crop_box for _ in range(len(data["rles"]))]) return data def _process_batch( self, points: np.ndarray, im_size: Tuple[int, ...], crop_box: List[int], orig_size: Tuple[int, ...], ) -> MaskData: orig_h, orig_w = orig_size # Run model on this batch transformed_points = self.predictor.transform.apply_coords(points, im_size) in_points = torch.as_tensor(transformed_points, device=self.predictor.device) in_labels = torch.ones(in_points.shape[0], dtype=torch.int, device=in_points.device) masks, iou_preds, _ = self.predictor.predict_torch( in_points[:, None, :], in_labels[:, None], multimask_output=True, return_logits=True, ) # Serialize predictions and store in MaskData data = MaskData( masks=masks.flatten(0, 1), iou_preds=iou_preds.flatten(0, 1), points=torch.as_tensor(points.repeat(masks.shape[1], axis=0)), ) del masks # Filter by predicted IoU if self.pred_iou_thresh > 0.0: keep_mask = data["iou_preds"] > self.pred_iou_thresh data.filter(keep_mask) # Calculate stability score data["stability_score"] = calculate_stability_score( data["masks"], self.predictor.model.mask_threshold, self.stability_score_offset ) if self.stability_score_thresh > 0.0: keep_mask = data["stability_score"] >= self.stability_score_thresh data.filter(keep_mask) # Threshold masks and calculate boxes data["masks"] = data["masks"] > self.predictor.model.mask_threshold data["boxes"] = batched_mask_to_box(data["masks"]) # Filter boxes that touch crop boundaries keep_mask = ~is_box_near_crop_edge(data["boxes"], crop_box, [0, 0, orig_w, orig_h]) if not torch.all(keep_mask): data.filter(keep_mask) # Compress to RLE data["masks"] = uncrop_masks(data["masks"], crop_box, orig_h, orig_w) data["rles"] = mask_to_rle_pytorch(data["masks"]) del data["masks"] return data @staticmethod def postprocess_small_regions( mask_data: MaskData, min_area: int, nms_thresh: float ) -> MaskData: """ Removes small disconnected regions and holes in masks, then reruns box NMS to remove any new duplicates. Edits mask_data in place. Requires open-cv as a dependency. """ if len(mask_data["rles"]) == 0: return mask_data # Filter small disconnected regions and holes new_masks = [] scores = [] for rle in mask_data["rles"]: mask = rle_to_mask(rle) mask, changed = remove_small_regions(mask, min_area, mode="holes") unchanged = not changed mask, changed = remove_small_regions(mask, min_area, mode="islands") unchanged = unchanged and not changed new_masks.append(torch.as_tensor(mask).unsqueeze(0)) # Give score=0 to changed masks and score=1 to unchanged masks # so NMS will prefer ones that didn't need postprocessing scores.append(float(unchanged)) # Recalculate boxes and remove any new duplicates masks = torch.cat(new_masks, dim=0) boxes = batched_mask_to_box(masks) keep_by_nms = batched_nms( boxes.float(), torch.as_tensor(scores), torch.zeros_like(boxes[:, 0]), # categories iou_threshold=nms_thresh, ) # Only recalculate RLEs for masks that have changed for i_mask in keep_by_nms: if scores[i_mask] == 0.0: mask_torch = masks[i_mask].unsqueeze(0) mask_data["rles"][i_mask] = mask_to_rle_pytorch(mask_torch)[0] mask_data["boxes"][i_mask] = boxes[i_mask] # update res directly mask_data.filter(keep_by_nms) return mask_data
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/automatic_mask_generator.py
0.920589
0.39161
automatic_mask_generator.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from functools import partial from .modeling import ImageEncoderViT, MaskDecoder, PromptEncoder, Sam, TwoWayTransformer def build_sam_vit_h(checkpoint=None): return _build_sam( encoder_embed_dim=1280, encoder_depth=32, encoder_num_heads=16, encoder_global_attn_indexes=[7, 15, 23, 31], checkpoint=checkpoint, ) build_sam = build_sam_vit_h def build_sam_vit_l(checkpoint=None): return _build_sam( encoder_embed_dim=1024, encoder_depth=24, encoder_num_heads=16, encoder_global_attn_indexes=[5, 11, 17, 23], checkpoint=checkpoint, ) def build_sam_vit_b(checkpoint=None): return _build_sam( encoder_embed_dim=768, encoder_depth=12, encoder_num_heads=12, encoder_global_attn_indexes=[2, 5, 8, 11], checkpoint=checkpoint, ) sam_model_registry = { "default": build_sam_vit_h, "vit_h": build_sam_vit_h, "vit_l": build_sam_vit_l, "vit_b": build_sam_vit_b, } def _build_sam( encoder_embed_dim, encoder_depth, encoder_num_heads, encoder_global_attn_indexes, checkpoint=None, ): prompt_embed_dim = 256 image_size = 1024 vit_patch_size = 16 image_embedding_size = image_size // vit_patch_size sam = Sam( image_encoder=ImageEncoderViT( depth=encoder_depth, embed_dim=encoder_embed_dim, img_size=image_size, mlp_ratio=4, norm_layer=partial(torch.nn.LayerNorm, eps=1e-6), num_heads=encoder_num_heads, patch_size=vit_patch_size, qkv_bias=True, use_rel_pos=True, global_attn_indexes=encoder_global_attn_indexes, window_size=14, out_chans=prompt_embed_dim, ), prompt_encoder=PromptEncoder( embed_dim=prompt_embed_dim, image_embedding_size=(image_embedding_size, image_embedding_size), input_image_size=(image_size, image_size), mask_in_chans=16, ), mask_decoder=MaskDecoder( num_multimask_outputs=3, transformer=TwoWayTransformer( depth=2, embedding_dim=prompt_embed_dim, mlp_dim=2048, num_heads=8, ), transformer_dim=prompt_embed_dim, iou_head_depth=3, iou_head_hidden_dim=256, ), pixel_mean=[123.675, 116.28, 103.53], pixel_std=[58.395, 57.12, 57.375], ) sam.eval() if checkpoint is not None: with open(checkpoint, "rb") as f: state_dict = torch.load(f) sam.load_state_dict(state_dict) return sam
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/build_sam.py
0.829871
0.193452
build_sam.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from torch import nn from torch.nn import functional as F from typing import List, Tuple, Type from .common import LayerNorm2d class MaskDecoder(nn.Module): def __init__( self, *, transformer_dim: int, transformer: nn.Module, num_multimask_outputs: int = 3, activation: Type[nn.Module] = nn.GELU, iou_head_depth: int = 3, iou_head_hidden_dim: int = 256, ) -> None: """ Predicts masks given an image and prompt embeddings, using a transformer architecture. Arguments: transformer_dim (int): the channel dimension of the transformer transformer (nn.Module): the transformer used to predict masks num_multimask_outputs (int): the number of masks to predict when disambiguating masks activation (nn.Module): the type of activation to use when upscaling masks iou_head_depth (int): the depth of the MLP used to predict mask quality iou_head_hidden_dim (int): the hidden dimension of the MLP used to predict mask quality """ super().__init__() self.transformer_dim = transformer_dim self.transformer = transformer self.num_multimask_outputs = num_multimask_outputs self.iou_token = nn.Embedding(1, transformer_dim) self.num_mask_tokens = num_multimask_outputs + 1 self.mask_tokens = nn.Embedding(self.num_mask_tokens, transformer_dim) self.output_upscaling = nn.Sequential( nn.ConvTranspose2d(transformer_dim, transformer_dim // 4, kernel_size=2, stride=2), LayerNorm2d(transformer_dim // 4), activation(), nn.ConvTranspose2d(transformer_dim // 4, transformer_dim // 8, kernel_size=2, stride=2), activation(), ) self.output_hypernetworks_mlps = nn.ModuleList( [ MLP(transformer_dim, transformer_dim, transformer_dim // 8, 3) for i in range(self.num_mask_tokens) ] ) self.iou_prediction_head = MLP( transformer_dim, iou_head_hidden_dim, self.num_mask_tokens, iou_head_depth ) def forward( self, image_embeddings: torch.Tensor, image_pe: torch.Tensor, sparse_prompt_embeddings: torch.Tensor, dense_prompt_embeddings: torch.Tensor, multimask_output: bool, ) -> Tuple[torch.Tensor, torch.Tensor]: """ Predict masks given image and prompt embeddings. Arguments: image_embeddings (torch.Tensor): the embeddings from the image encoder image_pe (torch.Tensor): positional encoding with the shape of image_embeddings sparse_prompt_embeddings (torch.Tensor): the embeddings of the points and boxes dense_prompt_embeddings (torch.Tensor): the embeddings of the mask inputs multimask_output (bool): Whether to return multiple masks or a single mask. Returns: torch.Tensor: batched predicted masks torch.Tensor: batched predictions of mask quality """ masks, iou_pred = self.predict_masks( image_embeddings=image_embeddings, image_pe=image_pe, sparse_prompt_embeddings=sparse_prompt_embeddings, dense_prompt_embeddings=dense_prompt_embeddings, ) # Select the correct mask or masks for output if multimask_output: mask_slice = slice(1, None) else: mask_slice = slice(0, 1) masks = masks[:, mask_slice, :, :] iou_pred = iou_pred[:, mask_slice] # Prepare output return masks, iou_pred def predict_masks( self, image_embeddings: torch.Tensor, image_pe: torch.Tensor, sparse_prompt_embeddings: torch.Tensor, dense_prompt_embeddings: torch.Tensor, ) -> Tuple[torch.Tensor, torch.Tensor]: """Predicts masks. See 'forward' for more details.""" # Concatenate output tokens output_tokens = torch.cat([self.iou_token.weight, self.mask_tokens.weight], dim=0) output_tokens = output_tokens.unsqueeze(0).expand(sparse_prompt_embeddings.size(0), -1, -1) tokens = torch.cat((output_tokens, sparse_prompt_embeddings), dim=1) # Expand per-image data in batch direction to be per-mask src = torch.repeat_interleave(image_embeddings, tokens.shape[0], dim=0) src = src + dense_prompt_embeddings pos_src = torch.repeat_interleave(image_pe, tokens.shape[0], dim=0) b, c, h, w = src.shape # Run the transformer hs, src = self.transformer(src, pos_src, tokens) iou_token_out = hs[:, 0, :] mask_tokens_out = hs[:, 1 : (1 + self.num_mask_tokens), :] # Upscale mask embeddings and predict masks using the mask tokens src = src.transpose(1, 2).view(b, c, h, w) upscaled_embedding = self.output_upscaling(src) hyper_in_list: List[torch.Tensor] = [] for i in range(self.num_mask_tokens): hyper_in_list.append(self.output_hypernetworks_mlps[i](mask_tokens_out[:, i, :])) hyper_in = torch.stack(hyper_in_list, dim=1) b, c, h, w = upscaled_embedding.shape masks = (hyper_in @ upscaled_embedding.view(b, c, h * w)).view(b, -1, h, w) # Generate mask quality predictions iou_pred = self.iou_prediction_head(iou_token_out) return masks, iou_pred # Lightly adapted from # https://github.com/facebookresearch/MaskFormer/blob/main/mask_former/modeling/transformer/transformer_predictor.py # noqa class MLP(nn.Module): def __init__( self, input_dim: int, hidden_dim: int, output_dim: int, num_layers: int, sigmoid_output: bool = False, ) -> None: super().__init__() self.num_layers = num_layers h = [hidden_dim] * (num_layers - 1) self.layers = nn.ModuleList( nn.Linear(n, k) for n, k in zip([input_dim] + h, h + [output_dim]) ) self.sigmoid_output = sigmoid_output def forward(self, x): for i, layer in enumerate(self.layers): x = F.relu(layer(x)) if i < self.num_layers - 1 else layer(x) if self.sigmoid_output: x = F.sigmoid(x) return x
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/modeling/mask_decoder.py
0.958509
0.528777
mask_decoder.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from torch import nn from torch.nn import functional as F from typing import Any, Dict, List, Tuple from .image_encoder import ImageEncoderViT from .mask_decoder import MaskDecoder from .prompt_encoder import PromptEncoder class Sam(nn.Module): mask_threshold: float = 0.0 image_format: str = "RGB" def __init__( self, image_encoder: ImageEncoderViT, prompt_encoder: PromptEncoder, mask_decoder: MaskDecoder, pixel_mean: List[float] = [123.675, 116.28, 103.53], pixel_std: List[float] = [58.395, 57.12, 57.375], ) -> None: """ SAM predicts object masks from an image and input prompts. Arguments: image_encoder (ImageEncoderViT): The backbone used to encode the image into image embeddings that allow for efficient mask prediction. prompt_encoder (PromptEncoder): Encodes various types of input prompts. mask_decoder (MaskDecoder): Predicts masks from the image embeddings and encoded prompts. pixel_mean (list(float)): Mean values for normalizing pixels in the input image. pixel_std (list(float)): Std values for normalizing pixels in the input image. """ super().__init__() self.image_encoder = image_encoder self.prompt_encoder = prompt_encoder self.mask_decoder = mask_decoder self.register_buffer("pixel_mean", torch.Tensor(pixel_mean).view(-1, 1, 1), False) self.register_buffer("pixel_std", torch.Tensor(pixel_std).view(-1, 1, 1), False) @property def device(self) -> Any: return self.pixel_mean.device @torch.no_grad() def forward( self, batched_input: List[Dict[str, Any]], multimask_output: bool, ) -> List[Dict[str, torch.Tensor]]: """ Predicts masks end-to-end from provided images and prompts. If prompts are not known in advance, using SamPredictor is recommended over calling the model directly. Arguments: batched_input (list(dict)): A list over input images, each a dictionary with the following keys. A prompt key can be excluded if it is not present. 'image': The image as a torch tensor in 3xHxW format, already transformed for input to the model. 'original_size': (tuple(int, int)) The original size of the image before transformation, as (H, W). 'point_coords': (torch.Tensor) Batched point prompts for this image, with shape BxNx2. Already transformed to the input frame of the model. 'point_labels': (torch.Tensor) Batched labels for point prompts, with shape BxN. 'boxes': (torch.Tensor) Batched box inputs, with shape Bx4. Already transformed to the input frame of the model. 'mask_inputs': (torch.Tensor) Batched mask inputs to the model, in the form Bx1xHxW. multimask_output (bool): Whether the model should predict multiple disambiguating masks, or return a single mask. Returns: (list(dict)): A list over input images, where each element is as dictionary with the following keys. 'masks': (torch.Tensor) Batched binary mask predictions, with shape BxCxHxW, where B is the number of input prompts, C is determined by multimask_output, and (H, W) is the original size of the image. 'iou_predictions': (torch.Tensor) The model's predictions of mask quality, in shape BxC. 'low_res_logits': (torch.Tensor) Low resolution logits with shape BxCxHxW, where H=W=256. Can be passed as mask input to subsequent iterations of prediction. """ input_images = torch.stack([self.preprocess(x["image"]) for x in batched_input], dim=0) image_embeddings = self.image_encoder(input_images) outputs = [] for image_record, curr_embedding in zip(batched_input, image_embeddings): if "point_coords" in image_record: points = (image_record["point_coords"], image_record["point_labels"]) else: points = None sparse_embeddings, dense_embeddings = self.prompt_encoder( points=points, boxes=image_record.get("boxes", None), masks=image_record.get("mask_inputs", None), ) low_res_masks, iou_predictions = self.mask_decoder( image_embeddings=curr_embedding.unsqueeze(0), image_pe=self.prompt_encoder.get_dense_pe(), sparse_prompt_embeddings=sparse_embeddings, dense_prompt_embeddings=dense_embeddings, multimask_output=multimask_output, ) masks = self.postprocess_masks( low_res_masks, input_size=image_record["image"].shape[-2:], original_size=image_record["original_size"], ) masks = masks > self.mask_threshold outputs.append( { "masks": masks, "iou_predictions": iou_predictions, "low_res_logits": low_res_masks, } ) return outputs def postprocess_masks( self, masks: torch.Tensor, input_size: Tuple[int, ...], original_size: Tuple[int, ...], ) -> torch.Tensor: """ Remove padding and upscale masks to the original image size. Arguments: masks (torch.Tensor): Batched masks from the mask_decoder, in BxCxHxW format. input_size (tuple(int, int)): The size of the image input to the model, in (H, W) format. Used to remove padding. original_size (tuple(int, int)): The original size of the image before resizing for input to the model, in (H, W) format. Returns: (torch.Tensor): Batched masks in BxCxHxW format, where (H, W) is given by original_size. """ masks = F.interpolate( masks, (self.image_encoder.img_size, self.image_encoder.img_size), mode="bilinear", align_corners=False, ) masks = masks[..., : input_size[0], : input_size[1]] masks = F.interpolate(masks, original_size, mode="bilinear", align_corners=False) return masks def preprocess(self, x: torch.Tensor) -> torch.Tensor: """Normalize pixel values and pad to a square input.""" # Normalize colors x = (x - self.pixel_mean) / self.pixel_std # Pad h, w = x.shape[-2:] padh = self.image_encoder.img_size - h padw = self.image_encoder.img_size - w x = F.pad(x, (0, padw, 0, padh)) return x
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/modeling/sam.py
0.955361
0.58255
sam.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from torch import Tensor, nn import math from typing import Tuple, Type from .common import MLPBlock class TwoWayTransformer(nn.Module): def __init__( self, depth: int, embedding_dim: int, num_heads: int, mlp_dim: int, activation: Type[nn.Module] = nn.ReLU, attention_downsample_rate: int = 2, ) -> None: """ A transformer decoder that attends to an input image using queries whose positional embedding is supplied. Args: depth (int): number of layers in the transformer embedding_dim (int): the channel dimension for the input embeddings num_heads (int): the number of heads for multihead attention. Must divide embedding_dim mlp_dim (int): the channel dimension internal to the MLP block activation (nn.Module): the activation to use in the MLP block """ super().__init__() self.depth = depth self.embedding_dim = embedding_dim self.num_heads = num_heads self.mlp_dim = mlp_dim self.layers = nn.ModuleList() for i in range(depth): self.layers.append( TwoWayAttentionBlock( embedding_dim=embedding_dim, num_heads=num_heads, mlp_dim=mlp_dim, activation=activation, attention_downsample_rate=attention_downsample_rate, skip_first_layer_pe=(i == 0), ) ) self.final_attn_token_to_image = Attention( embedding_dim, num_heads, downsample_rate=attention_downsample_rate ) self.norm_final_attn = nn.LayerNorm(embedding_dim) def forward( self, image_embedding: Tensor, image_pe: Tensor, point_embedding: Tensor, ) -> Tuple[Tensor, Tensor]: """ Args: image_embedding (torch.Tensor): image to attend to. Should be shape B x embedding_dim x h x w for any h and w. image_pe (torch.Tensor): the positional encoding to add to the image. Must have the same shape as image_embedding. point_embedding (torch.Tensor): the embedding to add to the query points. Must have shape B x N_points x embedding_dim for any N_points. Returns: torch.Tensor: the processed point_embedding torch.Tensor: the processed image_embedding """ # BxCxHxW -> BxHWxC == B x N_image_tokens x C bs, c, h, w = image_embedding.shape image_embedding = image_embedding.flatten(2).permute(0, 2, 1) image_pe = image_pe.flatten(2).permute(0, 2, 1) # Prepare queries queries = point_embedding keys = image_embedding # Apply transformer blocks and final layernorm for layer in self.layers: queries, keys = layer( queries=queries, keys=keys, query_pe=point_embedding, key_pe=image_pe, ) # Apply the final attention layer from the points to the image q = queries + point_embedding k = keys + image_pe attn_out = self.final_attn_token_to_image(q=q, k=k, v=keys) queries = queries + attn_out queries = self.norm_final_attn(queries) return queries, keys class TwoWayAttentionBlock(nn.Module): def __init__( self, embedding_dim: int, num_heads: int, mlp_dim: int = 2048, activation: Type[nn.Module] = nn.ReLU, attention_downsample_rate: int = 2, skip_first_layer_pe: bool = False, ) -> None: """ A transformer block with four layers: (1) self-attention of sparse inputs, (2) cross attention of sparse inputs to dense inputs, (3) mlp block on sparse inputs, and (4) cross attention of dense inputs to sparse inputs. Arguments: embedding_dim (int): the channel dimension of the embeddings num_heads (int): the number of heads in the attention layers mlp_dim (int): the hidden dimension of the mlp block activation (nn.Module): the activation of the mlp block skip_first_layer_pe (bool): skip the PE on the first layer """ super().__init__() self.self_attn = Attention(embedding_dim, num_heads) self.norm1 = nn.LayerNorm(embedding_dim) self.cross_attn_token_to_image = Attention( embedding_dim, num_heads, downsample_rate=attention_downsample_rate ) self.norm2 = nn.LayerNorm(embedding_dim) self.mlp = MLPBlock(embedding_dim, mlp_dim, activation) self.norm3 = nn.LayerNorm(embedding_dim) self.norm4 = nn.LayerNorm(embedding_dim) self.cross_attn_image_to_token = Attention( embedding_dim, num_heads, downsample_rate=attention_downsample_rate ) self.skip_first_layer_pe = skip_first_layer_pe def forward( self, queries: Tensor, keys: Tensor, query_pe: Tensor, key_pe: Tensor ) -> Tuple[Tensor, Tensor]: # Self attention block if self.skip_first_layer_pe: queries = self.self_attn(q=queries, k=queries, v=queries) else: q = queries + query_pe attn_out = self.self_attn(q=q, k=q, v=queries) queries = queries + attn_out queries = self.norm1(queries) # Cross attention block, tokens attending to image embedding q = queries + query_pe k = keys + key_pe attn_out = self.cross_attn_token_to_image(q=q, k=k, v=keys) queries = queries + attn_out queries = self.norm2(queries) # MLP block mlp_out = self.mlp(queries) queries = queries + mlp_out queries = self.norm3(queries) # Cross attention block, image embedding attending to tokens q = queries + query_pe k = keys + key_pe attn_out = self.cross_attn_image_to_token(q=k, k=q, v=queries) keys = keys + attn_out keys = self.norm4(keys) return queries, keys class Attention(nn.Module): """ An attention layer that allows for downscaling the size of the embedding after projection to queries, keys, and values. """ def __init__( self, embedding_dim: int, num_heads: int, downsample_rate: int = 1, ) -> None: super().__init__() self.embedding_dim = embedding_dim self.internal_dim = embedding_dim // downsample_rate self.num_heads = num_heads assert self.internal_dim % num_heads == 0, "num_heads must divide embedding_dim." self.q_proj = nn.Linear(embedding_dim, self.internal_dim) self.k_proj = nn.Linear(embedding_dim, self.internal_dim) self.v_proj = nn.Linear(embedding_dim, self.internal_dim) self.out_proj = nn.Linear(self.internal_dim, embedding_dim) def _separate_heads(self, x: Tensor, num_heads: int) -> Tensor: b, n, c = x.shape x = x.reshape(b, n, num_heads, c // num_heads) return x.transpose(1, 2) # B x N_heads x N_tokens x C_per_head def _recombine_heads(self, x: Tensor) -> Tensor: b, n_heads, n_tokens, c_per_head = x.shape x = x.transpose(1, 2) return x.reshape(b, n_tokens, n_heads * c_per_head) # B x N_tokens x C def forward(self, q: Tensor, k: Tensor, v: Tensor) -> Tensor: # Input projections q = self.q_proj(q) k = self.k_proj(k) v = self.v_proj(v) # Separate into heads q = self._separate_heads(q, self.num_heads) k = self._separate_heads(k, self.num_heads) v = self._separate_heads(v, self.num_heads) # Attention _, _, _, c_per_head = q.shape attn = q @ k.permute(0, 1, 3, 2) # B x N_heads x N_tokens x N_tokens attn = attn / math.sqrt(c_per_head) attn = torch.softmax(attn, dim=-1) # Get output out = attn @ v out = self._recombine_heads(out) out = self.out_proj(out) return out
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/modeling/transformer.py
0.967778
0.562116
transformer.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch import torch.nn as nn import torch.nn.functional as F from typing import Optional, Tuple, Type from .common import LayerNorm2d, MLPBlock # This class and its supporting functions below lightly adapted from the ViTDet backbone available at: https://github.com/facebookresearch/detectron2/blob/main/detectron2/modeling/backbone/vit.py # noqa class ImageEncoderViT(nn.Module): def __init__( self, img_size: int = 1024, patch_size: int = 16, in_chans: int = 3, embed_dim: int = 768, depth: int = 12, num_heads: int = 12, mlp_ratio: float = 4.0, out_chans: int = 256, qkv_bias: bool = True, norm_layer: Type[nn.Module] = nn.LayerNorm, act_layer: Type[nn.Module] = nn.GELU, use_abs_pos: bool = True, use_rel_pos: bool = False, rel_pos_zero_init: bool = True, window_size: int = 0, global_attn_indexes: Tuple[int, ...] = (), ) -> None: """ Args: img_size (int): Input image size. patch_size (int): Patch size. in_chans (int): Number of input image channels. embed_dim (int): Patch embedding dimension. depth (int): Depth of ViT. num_heads (int): Number of attention heads in each ViT block. mlp_ratio (float): Ratio of mlp hidden dim to embedding dim. qkv_bias (bool): If True, add a learnable bias to query, key, value. norm_layer (nn.Module): Normalization layer. act_layer (nn.Module): Activation layer. use_abs_pos (bool): If True, use absolute positional embeddings. use_rel_pos (bool): If True, add relative positional embeddings to the attention map. rel_pos_zero_init (bool): If True, zero initialize relative positional parameters. window_size (int): Window size for window attention blocks. global_attn_indexes (list): Indexes for blocks using global attention. """ super().__init__() self.img_size = img_size self.patch_embed = PatchEmbed( kernel_size=(patch_size, patch_size), stride=(patch_size, patch_size), in_chans=in_chans, embed_dim=embed_dim, ) self.pos_embed: Optional[nn.Parameter] = None if use_abs_pos: # Initialize absolute positional embedding with pretrain image size. self.pos_embed = nn.Parameter( torch.zeros(1, img_size // patch_size, img_size // patch_size, embed_dim) ) self.blocks = nn.ModuleList() for i in range(depth): block = Block( dim=embed_dim, num_heads=num_heads, mlp_ratio=mlp_ratio, qkv_bias=qkv_bias, norm_layer=norm_layer, act_layer=act_layer, use_rel_pos=use_rel_pos, rel_pos_zero_init=rel_pos_zero_init, window_size=window_size if i not in global_attn_indexes else 0, input_size=(img_size // patch_size, img_size // patch_size), ) self.blocks.append(block) self.neck = nn.Sequential( nn.Conv2d( embed_dim, out_chans, kernel_size=1, bias=False, ), LayerNorm2d(out_chans), nn.Conv2d( out_chans, out_chans, kernel_size=3, padding=1, bias=False, ), LayerNorm2d(out_chans), ) def forward(self, x: torch.Tensor) -> torch.Tensor: x = self.patch_embed(x) if self.pos_embed is not None: x = x + self.pos_embed for blk in self.blocks: x = blk(x) x = self.neck(x.permute(0, 3, 1, 2)) return x class Block(nn.Module): """Transformer blocks with support of window attention and residual propagation blocks""" def __init__( self, dim: int, num_heads: int, mlp_ratio: float = 4.0, qkv_bias: bool = True, norm_layer: Type[nn.Module] = nn.LayerNorm, act_layer: Type[nn.Module] = nn.GELU, use_rel_pos: bool = False, rel_pos_zero_init: bool = True, window_size: int = 0, input_size: Optional[Tuple[int, int]] = None, ) -> None: """ Args: dim (int): Number of input channels. num_heads (int): Number of attention heads in each ViT block. mlp_ratio (float): Ratio of mlp hidden dim to embedding dim. qkv_bias (bool): If True, add a learnable bias to query, key, value. norm_layer (nn.Module): Normalization layer. act_layer (nn.Module): Activation layer. use_rel_pos (bool): If True, add relative positional embeddings to the attention map. rel_pos_zero_init (bool): If True, zero initialize relative positional parameters. window_size (int): Window size for window attention blocks. If it equals 0, then use global attention. input_size (tuple(int, int) or None): Input resolution for calculating the relative positional parameter size. """ super().__init__() self.norm1 = norm_layer(dim) self.attn = Attention( dim, num_heads=num_heads, qkv_bias=qkv_bias, use_rel_pos=use_rel_pos, rel_pos_zero_init=rel_pos_zero_init, input_size=input_size if window_size == 0 else (window_size, window_size), ) self.norm2 = norm_layer(dim) self.mlp = MLPBlock(embedding_dim=dim, mlp_dim=int(dim * mlp_ratio), act=act_layer) self.window_size = window_size def forward(self, x: torch.Tensor) -> torch.Tensor: shortcut = x x = self.norm1(x) # Window partition if self.window_size > 0: H, W = x.shape[1], x.shape[2] x, pad_hw = window_partition(x, self.window_size) x = self.attn(x) # Reverse window partition if self.window_size > 0: x = window_unpartition(x, self.window_size, pad_hw, (H, W)) x = shortcut + x x = x + self.mlp(self.norm2(x)) return x class Attention(nn.Module): """Multi-head Attention block with relative position embeddings.""" def __init__( self, dim: int, num_heads: int = 8, qkv_bias: bool = True, use_rel_pos: bool = False, rel_pos_zero_init: bool = True, input_size: Optional[Tuple[int, int]] = None, ) -> None: """ Args: dim (int): Number of input channels. num_heads (int): Number of attention heads. qkv_bias (bool): If True, add a learnable bias to query, key, value. rel_pos (bool): If True, add relative positional embeddings to the attention map. rel_pos_zero_init (bool): If True, zero initialize relative positional parameters. input_size (tuple(int, int) or None): Input resolution for calculating the relative positional parameter size. """ super().__init__() self.num_heads = num_heads head_dim = dim // num_heads self.scale = head_dim**-0.5 self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias) self.proj = nn.Linear(dim, dim) self.use_rel_pos = use_rel_pos if self.use_rel_pos: assert ( input_size is not None ), "Input size must be provided if using relative positional encoding." # initialize relative positional embeddings self.rel_pos_h = nn.Parameter(torch.zeros(2 * input_size[0] - 1, head_dim)) self.rel_pos_w = nn.Parameter(torch.zeros(2 * input_size[1] - 1, head_dim)) def forward(self, x: torch.Tensor) -> torch.Tensor: B, H, W, _ = x.shape # qkv with shape (3, B, nHead, H * W, C) qkv = self.qkv(x).reshape(B, H * W, 3, self.num_heads, -1).permute(2, 0, 3, 1, 4) # q, k, v with shape (B * nHead, H * W, C) q, k, v = qkv.reshape(3, B * self.num_heads, H * W, -1).unbind(0) attn = (q * self.scale) @ k.transpose(-2, -1) if self.use_rel_pos: attn = add_decomposed_rel_pos(attn, q, self.rel_pos_h, self.rel_pos_w, (H, W), (H, W)) attn = attn.softmax(dim=-1) x = (attn @ v).view(B, self.num_heads, H, W, -1).permute(0, 2, 3, 1, 4).reshape(B, H, W, -1) x = self.proj(x) return x def window_partition(x: torch.Tensor, window_size: int) -> Tuple[torch.Tensor, Tuple[int, int]]: """ Partition into non-overlapping windows with padding if needed. Args: x (tensor): input tokens with [B, H, W, C]. window_size (int): window size. Returns: windows: windows after partition with [B * num_windows, window_size, window_size, C]. (Hp, Wp): padded height and width before partition """ B, H, W, C = x.shape pad_h = (window_size - H % window_size) % window_size pad_w = (window_size - W % window_size) % window_size if pad_h > 0 or pad_w > 0: x = F.pad(x, (0, 0, 0, pad_w, 0, pad_h)) Hp, Wp = H + pad_h, W + pad_w x = x.view(B, Hp // window_size, window_size, Wp // window_size, window_size, C) windows = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(-1, window_size, window_size, C) return windows, (Hp, Wp) def window_unpartition( windows: torch.Tensor, window_size: int, pad_hw: Tuple[int, int], hw: Tuple[int, int] ) -> torch.Tensor: """ Window unpartition into original sequences and removing padding. Args: windows (tensor): input tokens with [B * num_windows, window_size, window_size, C]. window_size (int): window size. pad_hw (Tuple): padded height and width (Hp, Wp). hw (Tuple): original height and width (H, W) before padding. Returns: x: unpartitioned sequences with [B, H, W, C]. """ Hp, Wp = pad_hw H, W = hw B = windows.shape[0] // (Hp * Wp // window_size // window_size) x = windows.view(B, Hp // window_size, Wp // window_size, window_size, window_size, -1) x = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(B, Hp, Wp, -1) if Hp > H or Wp > W: x = x[:, :H, :W, :].contiguous() return x def get_rel_pos(q_size: int, k_size: int, rel_pos: torch.Tensor) -> torch.Tensor: """ Get relative positional embeddings according to the relative positions of query and key sizes. Args: q_size (int): size of query q. k_size (int): size of key k. rel_pos (Tensor): relative position embeddings (L, C). Returns: Extracted positional embeddings according to relative positions. """ max_rel_dist = int(2 * max(q_size, k_size) - 1) # Interpolate rel pos if needed. if rel_pos.shape[0] != max_rel_dist: # Interpolate rel pos. rel_pos_resized = F.interpolate( rel_pos.reshape(1, rel_pos.shape[0], -1).permute(0, 2, 1), size=max_rel_dist, mode="linear", ) rel_pos_resized = rel_pos_resized.reshape(-1, max_rel_dist).permute(1, 0) else: rel_pos_resized = rel_pos # Scale the coords with short length if shapes for q and k are different. q_coords = torch.arange(q_size)[:, None] * max(k_size / q_size, 1.0) k_coords = torch.arange(k_size)[None, :] * max(q_size / k_size, 1.0) relative_coords = (q_coords - k_coords) + (k_size - 1) * max(q_size / k_size, 1.0) return rel_pos_resized[relative_coords.long()] def add_decomposed_rel_pos( attn: torch.Tensor, q: torch.Tensor, rel_pos_h: torch.Tensor, rel_pos_w: torch.Tensor, q_size: Tuple[int, int], k_size: Tuple[int, int], ) -> torch.Tensor: """ Calculate decomposed Relative Positional Embeddings from :paper:`mvitv2`. https://github.com/facebookresearch/mvit/blob/19786631e330df9f3622e5402b4a419a263a2c80/mvit/models/attention.py # noqa B950 Args: attn (Tensor): attention map. q (Tensor): query q in the attention layer with shape (B, q_h * q_w, C). rel_pos_h (Tensor): relative position embeddings (Lh, C) for height axis. rel_pos_w (Tensor): relative position embeddings (Lw, C) for width axis. q_size (Tuple): spatial sequence size of query q with (q_h, q_w). k_size (Tuple): spatial sequence size of key k with (k_h, k_w). Returns: attn (Tensor): attention map with added relative positional embeddings. """ q_h, q_w = q_size k_h, k_w = k_size Rh = get_rel_pos(q_h, k_h, rel_pos_h) Rw = get_rel_pos(q_w, k_w, rel_pos_w) B, _, dim = q.shape r_q = q.reshape(B, q_h, q_w, dim) rel_h = torch.einsum("bhwc,hkc->bhwk", r_q, Rh) rel_w = torch.einsum("bhwc,wkc->bhwk", r_q, Rw) attn = ( attn.view(B, q_h, q_w, k_h, k_w) + rel_h[:, :, :, :, None] + rel_w[:, :, :, None, :] ).view(B, q_h * q_w, k_h * k_w) return attn class PatchEmbed(nn.Module): """ Image to Patch Embedding. """ def __init__( self, kernel_size: Tuple[int, int] = (16, 16), stride: Tuple[int, int] = (16, 16), padding: Tuple[int, int] = (0, 0), in_chans: int = 3, embed_dim: int = 768, ) -> None: """ Args: kernel_size (Tuple): kernel size of the projection layer. stride (Tuple): stride of the projection layer. padding (Tuple): padding size of the projection layer. in_chans (int): Number of input image channels. embed_dim (int): Patch embedding dimension. """ super().__init__() self.proj = nn.Conv2d( in_chans, embed_dim, kernel_size=kernel_size, stride=stride, padding=padding ) def forward(self, x: torch.Tensor) -> torch.Tensor: x = self.proj(x) # B C H W -> B H W C x = x.permute(0, 2, 3, 1) return x
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/modeling/image_encoder.py
0.965714
0.438304
image_encoder.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import numpy as np import torch from torch import nn from typing import Any, Optional, Tuple, Type from .common import LayerNorm2d class PromptEncoder(nn.Module): def __init__( self, embed_dim: int, image_embedding_size: Tuple[int, int], input_image_size: Tuple[int, int], mask_in_chans: int, activation: Type[nn.Module] = nn.GELU, ) -> None: """ Encodes prompts for input to SAM's mask decoder. Arguments: embed_dim (int): The prompts' embedding dimension image_embedding_size (tuple(int, int)): The spatial size of the image embedding, as (H, W). input_image_size (int): The padded size of the image as input to the image encoder, as (H, W). mask_in_chans (int): The number of hidden channels used for encoding input masks. activation (nn.Module): The activation to use when encoding input masks. """ super().__init__() self.embed_dim = embed_dim self.input_image_size = input_image_size self.image_embedding_size = image_embedding_size self.pe_layer = PositionEmbeddingRandom(embed_dim // 2) self.num_point_embeddings: int = 4 # pos/neg point + 2 box corners point_embeddings = [nn.Embedding(1, embed_dim) for i in range(self.num_point_embeddings)] self.point_embeddings = nn.ModuleList(point_embeddings) self.not_a_point_embed = nn.Embedding(1, embed_dim) self.mask_input_size = (4 * image_embedding_size[0], 4 * image_embedding_size[1]) self.mask_downscaling = nn.Sequential( nn.Conv2d(1, mask_in_chans // 4, kernel_size=2, stride=2), LayerNorm2d(mask_in_chans // 4), activation(), nn.Conv2d(mask_in_chans // 4, mask_in_chans, kernel_size=2, stride=2), LayerNorm2d(mask_in_chans), activation(), nn.Conv2d(mask_in_chans, embed_dim, kernel_size=1), ) self.no_mask_embed = nn.Embedding(1, embed_dim) def get_dense_pe(self) -> torch.Tensor: """ Returns the positional encoding used to encode point prompts, applied to a dense set of points the shape of the image encoding. Returns: torch.Tensor: Positional encoding with shape 1x(embed_dim)x(embedding_h)x(embedding_w) """ return self.pe_layer(self.image_embedding_size).unsqueeze(0) def _embed_points( self, points: torch.Tensor, labels: torch.Tensor, pad: bool, ) -> torch.Tensor: """Embeds point prompts.""" points = points + 0.5 # Shift to center of pixel if pad: padding_point = torch.zeros((points.shape[0], 1, 2), device=points.device) padding_label = -torch.ones((labels.shape[0], 1), device=labels.device) points = torch.cat([points, padding_point], dim=1) labels = torch.cat([labels, padding_label], dim=1) point_embedding = self.pe_layer.forward_with_coords(points, self.input_image_size) point_embedding[labels == -1] = 0.0 point_embedding[labels == -1] += self.not_a_point_embed.weight point_embedding[labels == 0] += self.point_embeddings[0].weight point_embedding[labels == 1] += self.point_embeddings[1].weight return point_embedding def _embed_boxes(self, boxes: torch.Tensor) -> torch.Tensor: """Embeds box prompts.""" boxes = boxes + 0.5 # Shift to center of pixel coords = boxes.reshape(-1, 2, 2) corner_embedding = self.pe_layer.forward_with_coords(coords, self.input_image_size) corner_embedding[:, 0, :] += self.point_embeddings[2].weight corner_embedding[:, 1, :] += self.point_embeddings[3].weight return corner_embedding def _embed_masks(self, masks: torch.Tensor) -> torch.Tensor: """Embeds mask inputs.""" mask_embedding = self.mask_downscaling(masks) return mask_embedding def _get_batch_size( self, points: Optional[Tuple[torch.Tensor, torch.Tensor]], boxes: Optional[torch.Tensor], masks: Optional[torch.Tensor], ) -> int: """ Gets the batch size of the output given the batch size of the input prompts. """ if points is not None: return points[0].shape[0] elif boxes is not None: return boxes.shape[0] elif masks is not None: return masks.shape[0] else: return 1 def _get_device(self) -> torch.device: return self.point_embeddings[0].weight.device def forward( self, points: Optional[Tuple[torch.Tensor, torch.Tensor]], boxes: Optional[torch.Tensor], masks: Optional[torch.Tensor], ) -> Tuple[torch.Tensor, torch.Tensor]: """ Embeds different types of prompts, returning both sparse and dense embeddings. Arguments: points (tuple(torch.Tensor, torch.Tensor) or none): point coordinates and labels to embed. boxes (torch.Tensor or none): boxes to embed masks (torch.Tensor or none): masks to embed Returns: torch.Tensor: sparse embeddings for the points and boxes, with shape BxNx(embed_dim), where N is determined by the number of input points and boxes. torch.Tensor: dense embeddings for the masks, in the shape Bx(embed_dim)x(embed_H)x(embed_W) """ bs = self._get_batch_size(points, boxes, masks) sparse_embeddings = torch.empty((bs, 0, self.embed_dim), device=self._get_device()) if points is not None: coords, labels = points point_embeddings = self._embed_points(coords, labels, pad=(boxes is None)) sparse_embeddings = torch.cat([sparse_embeddings, point_embeddings], dim=1) if boxes is not None: box_embeddings = self._embed_boxes(boxes) sparse_embeddings = torch.cat([sparse_embeddings, box_embeddings], dim=1) if masks is not None: dense_embeddings = self._embed_masks(masks) else: dense_embeddings = self.no_mask_embed.weight.reshape(1, -1, 1, 1).expand( bs, -1, self.image_embedding_size[0], self.image_embedding_size[1] ) return sparse_embeddings, dense_embeddings class PositionEmbeddingRandom(nn.Module): """ Positional encoding using random spatial frequencies. """ def __init__(self, num_pos_feats: int = 64, scale: Optional[float] = None) -> None: super().__init__() if scale is None or scale <= 0.0: scale = 1.0 self.register_buffer( "positional_encoding_gaussian_matrix", scale * torch.randn((2, num_pos_feats)), ) def _pe_encoding(self, coords: torch.Tensor) -> torch.Tensor: """Positionally encode points that are normalized to [0,1].""" # assuming coords are in [0, 1]^2 square and have d_1 x ... x d_n x 2 shape coords = 2 * coords - 1 coords = coords @ self.positional_encoding_gaussian_matrix coords = 2 * np.pi * coords # outputs d_1 x ... x d_n x C shape return torch.cat([torch.sin(coords), torch.cos(coords)], dim=-1) def forward(self, size: Tuple[int, int]) -> torch.Tensor: """Generate positional encoding for a grid of the specified size.""" h, w = size device: Any = self.positional_encoding_gaussian_matrix.device grid = torch.ones((h, w), device=device, dtype=torch.float32) y_embed = grid.cumsum(dim=0) - 0.5 x_embed = grid.cumsum(dim=1) - 0.5 y_embed = y_embed / h x_embed = x_embed / w pe = self._pe_encoding(torch.stack([x_embed, y_embed], dim=-1)) return pe.permute(2, 0, 1) # C x H x W def forward_with_coords( self, coords_input: torch.Tensor, image_size: Tuple[int, int] ) -> torch.Tensor: """Positionally encode points that are not normalized to [0,1].""" coords = coords_input.clone() coords[:, :, 0] = coords[:, :, 0] / image_size[1] coords[:, :, 1] = coords[:, :, 1] / image_size[0] return self._pe_encoding(coords.to(torch.float)) # B x N x C
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/modeling/prompt_encoder.py
0.9698
0.537527
prompt_encoder.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import numpy as np import torch import math from copy import deepcopy from itertools import product from typing import Any, Dict, Generator, ItemsView, List, Tuple class MaskData: """ A structure for storing masks and their related data in batched format. Implements basic filtering and concatenation. """ def __init__(self, **kwargs) -> None: for v in kwargs.values(): assert isinstance( v, (list, np.ndarray, torch.Tensor) ), "MaskData only supports list, numpy arrays, and torch tensors." self._stats = dict(**kwargs) def __setitem__(self, key: str, item: Any) -> None: assert isinstance( item, (list, np.ndarray, torch.Tensor) ), "MaskData only supports list, numpy arrays, and torch tensors." self._stats[key] = item def __delitem__(self, key: str) -> None: del self._stats[key] def __getitem__(self, key: str) -> Any: return self._stats[key] def items(self) -> ItemsView[str, Any]: return self._stats.items() def filter(self, keep: torch.Tensor) -> None: for k, v in self._stats.items(): if v is None: self._stats[k] = None elif isinstance(v, torch.Tensor): self._stats[k] = v[torch.as_tensor(keep, device=v.device)] elif isinstance(v, np.ndarray): self._stats[k] = v[keep.detach().cpu().numpy()] elif isinstance(v, list) and keep.dtype == torch.bool: self._stats[k] = [a for i, a in enumerate(v) if keep[i]] elif isinstance(v, list): self._stats[k] = [v[i] for i in keep] else: raise TypeError(f"MaskData key {k} has an unsupported type {type(v)}.") def cat(self, new_stats: "MaskData") -> None: for k, v in new_stats.items(): if k not in self._stats or self._stats[k] is None: self._stats[k] = deepcopy(v) elif isinstance(v, torch.Tensor): self._stats[k] = torch.cat([self._stats[k], v], dim=0) elif isinstance(v, np.ndarray): self._stats[k] = np.concatenate([self._stats[k], v], axis=0) elif isinstance(v, list): self._stats[k] = self._stats[k] + deepcopy(v) else: raise TypeError(f"MaskData key {k} has an unsupported type {type(v)}.") def to_numpy(self) -> None: for k, v in self._stats.items(): if isinstance(v, torch.Tensor): self._stats[k] = v.detach().cpu().numpy() def is_box_near_crop_edge( boxes: torch.Tensor, crop_box: List[int], orig_box: List[int], atol: float = 20.0 ) -> torch.Tensor: """Filter masks at the edge of a crop, but not at the edge of the original image.""" crop_box_torch = torch.as_tensor(crop_box, dtype=torch.float, device=boxes.device) orig_box_torch = torch.as_tensor(orig_box, dtype=torch.float, device=boxes.device) boxes = uncrop_boxes_xyxy(boxes, crop_box).float() near_crop_edge = torch.isclose(boxes, crop_box_torch[None, :], atol=atol, rtol=0) near_image_edge = torch.isclose(boxes, orig_box_torch[None, :], atol=atol, rtol=0) near_crop_edge = torch.logical_and(near_crop_edge, ~near_image_edge) return torch.any(near_crop_edge, dim=1) def box_xyxy_to_xywh(box_xyxy: torch.Tensor) -> torch.Tensor: box_xywh = deepcopy(box_xyxy) box_xywh[2] = box_xywh[2] - box_xywh[0] box_xywh[3] = box_xywh[3] - box_xywh[1] return box_xywh def batch_iterator(batch_size: int, *args) -> Generator[List[Any], None, None]: assert len(args) > 0 and all( len(a) == len(args[0]) for a in args ), "Batched iteration must have inputs of all the same size." n_batches = len(args[0]) // batch_size + int(len(args[0]) % batch_size != 0) for b in range(n_batches): yield [arg[b * batch_size : (b + 1) * batch_size] for arg in args] def mask_to_rle_pytorch(tensor: torch.Tensor) -> List[Dict[str, Any]]: """ Encodes masks to an uncompressed RLE, in the format expected by pycoco tools. """ # Put in fortran order and flatten h,w b, h, w = tensor.shape tensor = tensor.permute(0, 2, 1).flatten(1) # Compute change indices diff = tensor[:, 1:] ^ tensor[:, :-1] change_indices = diff.nonzero() # Encode run length out = [] for i in range(b): cur_idxs = change_indices[change_indices[:, 0] == i, 1] cur_idxs = torch.cat( [ torch.tensor([0], dtype=cur_idxs.dtype, device=cur_idxs.device), cur_idxs + 1, torch.tensor([h * w], dtype=cur_idxs.dtype, device=cur_idxs.device), ] ) btw_idxs = cur_idxs[1:] - cur_idxs[:-1] counts = [] if tensor[i, 0] == 0 else [0] counts.extend(btw_idxs.detach().cpu().tolist()) out.append({"size": [h, w], "counts": counts}) return out def rle_to_mask(rle: Dict[str, Any]) -> np.ndarray: """Compute a binary mask from an uncompressed RLE.""" h, w = rle["size"] mask = np.empty(h * w, dtype=bool) idx = 0 parity = False for count in rle["counts"]: mask[idx : idx + count] = parity idx += count parity ^= True mask = mask.reshape(w, h) return mask.transpose() # Put in C order def area_from_rle(rle: Dict[str, Any]) -> int: return sum(rle["counts"][1::2]) def calculate_stability_score( masks: torch.Tensor, mask_threshold: float, threshold_offset: float ) -> torch.Tensor: """ Computes the stability score for a batch of masks. The stability score is the IoU between the binary masks obtained by thresholding the predicted mask logits at high and low values. """ # One mask is always contained inside the other. # Save memory by preventing unnecessary cast to torch.int64 intersections = ( (masks > (mask_threshold + threshold_offset)) .sum(-1, dtype=torch.int16) .sum(-1, dtype=torch.int32) ) unions = ( (masks > (mask_threshold - threshold_offset)) .sum(-1, dtype=torch.int16) .sum(-1, dtype=torch.int32) ) return intersections / unions def build_point_grid(n_per_side: int) -> np.ndarray: """Generates a 2D grid of points evenly spaced in [0,1]x[0,1].""" offset = 1 / (2 * n_per_side) points_one_side = np.linspace(offset, 1 - offset, n_per_side) points_x = np.tile(points_one_side[None, :], (n_per_side, 1)) points_y = np.tile(points_one_side[:, None], (1, n_per_side)) points = np.stack([points_x, points_y], axis=-1).reshape(-1, 2) return points def build_all_layer_point_grids( n_per_side: int, n_layers: int, scale_per_layer: int ) -> List[np.ndarray]: """Generates point grids for all crop layers.""" points_by_layer = [] for i in range(n_layers + 1): n_points = int(n_per_side / (scale_per_layer**i)) points_by_layer.append(build_point_grid(n_points)) return points_by_layer def generate_crop_boxes( im_size: Tuple[int, ...], n_layers: int, overlap_ratio: float ) -> Tuple[List[List[int]], List[int]]: """ Generates a list of crop boxes of different sizes. Each layer has (2**i)**2 boxes for the ith layer. """ crop_boxes, layer_idxs = [], [] im_h, im_w = im_size short_side = min(im_h, im_w) # Original image crop_boxes.append([0, 0, im_w, im_h]) layer_idxs.append(0) def crop_len(orig_len, n_crops, overlap): return int(math.ceil((overlap * (n_crops - 1) + orig_len) / n_crops)) for i_layer in range(n_layers): n_crops_per_side = 2 ** (i_layer + 1) overlap = int(overlap_ratio * short_side * (2 / n_crops_per_side)) crop_w = crop_len(im_w, n_crops_per_side, overlap) crop_h = crop_len(im_h, n_crops_per_side, overlap) crop_box_x0 = [int((crop_w - overlap) * i) for i in range(n_crops_per_side)] crop_box_y0 = [int((crop_h - overlap) * i) for i in range(n_crops_per_side)] # Crops in XYWH format for x0, y0 in product(crop_box_x0, crop_box_y0): box = [x0, y0, min(x0 + crop_w, im_w), min(y0 + crop_h, im_h)] crop_boxes.append(box) layer_idxs.append(i_layer + 1) return crop_boxes, layer_idxs def uncrop_boxes_xyxy(boxes: torch.Tensor, crop_box: List[int]) -> torch.Tensor: x0, y0, _, _ = crop_box offset = torch.tensor([[x0, y0, x0, y0]], device=boxes.device) # Check if boxes has a channel dimension if len(boxes.shape) == 3: offset = offset.unsqueeze(1) return boxes + offset def uncrop_points(points: torch.Tensor, crop_box: List[int]) -> torch.Tensor: x0, y0, _, _ = crop_box offset = torch.tensor([[x0, y0]], device=points.device) # Check if points has a channel dimension if len(points.shape) == 3: offset = offset.unsqueeze(1) return points + offset def uncrop_masks( masks: torch.Tensor, crop_box: List[int], orig_h: int, orig_w: int ) -> torch.Tensor: x0, y0, x1, y1 = crop_box if x0 == 0 and y0 == 0 and x1 == orig_w and y1 == orig_h: return masks # Coordinate transform masks pad_x, pad_y = orig_w - (x1 - x0), orig_h - (y1 - y0) pad = (x0, pad_x - x0, y0, pad_y - y0) return torch.nn.functional.pad(masks, pad, value=0) def remove_small_regions( mask: np.ndarray, area_thresh: float, mode: str ) -> Tuple[np.ndarray, bool]: """ Removes small disconnected regions and holes in a mask. Returns the mask and an indicator of if the mask has been modified. """ import cv2 # type: ignore assert mode in ["holes", "islands"] correct_holes = mode == "holes" working_mask = (correct_holes ^ mask).astype(np.uint8) n_labels, regions, stats, _ = cv2.connectedComponentsWithStats(working_mask, 8) sizes = stats[:, -1][1:] # Row 0 is background label small_regions = [i + 1 for i, s in enumerate(sizes) if s < area_thresh] if len(small_regions) == 0: return mask, False fill_labels = [0] + small_regions if not correct_holes: fill_labels = [i for i in range(n_labels) if i not in fill_labels] # If every region is below threshold, keep largest if len(fill_labels) == 0: fill_labels = [int(np.argmax(sizes)) + 1] mask = np.isin(regions, fill_labels) return mask, True def coco_encode_rle(uncompressed_rle: Dict[str, Any]) -> Dict[str, Any]: from pycocotools import mask as mask_utils # type: ignore h, w = uncompressed_rle["size"] rle = mask_utils.frPyObjects(uncompressed_rle, h, w) rle["counts"] = rle["counts"].decode("utf-8") # Necessary to serialize with json return rle def batched_mask_to_box(masks: torch.Tensor) -> torch.Tensor: """ Calculates boxes in XYXY format around masks. Return [0,0,0,0] for an empty mask. For input shape C1xC2x...xHxW, the output shape is C1xC2x...x4. """ # torch.max below raises an error on empty inputs, just skip in this case if torch.numel(masks) == 0: return torch.zeros(*masks.shape[:-2], 4, device=masks.device) # Normalize shape to CxHxW shape = masks.shape h, w = shape[-2:] if len(shape) > 2: masks = masks.flatten(0, -3) else: masks = masks.unsqueeze(0) # Get top and bottom edges in_height, _ = torch.max(masks, dim=-1) in_height_coords = in_height * torch.arange(h, device=in_height.device)[None, :] bottom_edges, _ = torch.max(in_height_coords, dim=-1) in_height_coords = in_height_coords + h * (~in_height) top_edges, _ = torch.min(in_height_coords, dim=-1) # Get left and right edges in_width, _ = torch.max(masks, dim=-2) in_width_coords = in_width * torch.arange(w, device=in_width.device)[None, :] right_edges, _ = torch.max(in_width_coords, dim=-1) in_width_coords = in_width_coords + w * (~in_width) left_edges, _ = torch.min(in_width_coords, dim=-1) # If the mask is empty the right edge will be to the left of the left edge. # Replace these boxes with [0, 0, 0, 0] empty_filter = (right_edges < left_edges) | (bottom_edges < top_edges) out = torch.stack([left_edges, top_edges, right_edges, bottom_edges], dim=-1) out = out * (~empty_filter).unsqueeze(-1) # Return to original shape if len(shape) > 2: out = out.reshape(*shape[:-2], 4) else: out = out[0] return out
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/utils/amg.py
0.921481
0.646767
amg.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch import torch.nn as nn from torch.nn import functional as F from typing import Tuple from ..modeling import Sam from .amg import calculate_stability_score class SamOnnxModel(nn.Module): """ This model should not be called directly, but is used in ONNX export. It combines the prompt encoder, mask decoder, and mask postprocessing of Sam, with some functions modified to enable model tracing. Also supports extra options controlling what information. See the ONNX export script for details. """ def __init__( self, model: Sam, return_single_mask: bool, use_stability_score: bool = False, return_extra_metrics: bool = False, ) -> None: super().__init__() self.mask_decoder = model.mask_decoder self.model = model self.img_size = model.image_encoder.img_size self.return_single_mask = return_single_mask self.use_stability_score = use_stability_score self.stability_score_offset = 1.0 self.return_extra_metrics = return_extra_metrics @staticmethod def resize_longest_image_size( input_image_size: torch.Tensor, longest_side: int ) -> torch.Tensor: input_image_size = input_image_size.to(torch.float32) scale = longest_side / torch.max(input_image_size) transformed_size = scale * input_image_size transformed_size = torch.floor(transformed_size + 0.5).to(torch.int64) return transformed_size def _embed_points(self, point_coords: torch.Tensor, point_labels: torch.Tensor) -> torch.Tensor: point_coords = point_coords + 0.5 point_coords = point_coords / self.img_size point_embedding = self.model.prompt_encoder.pe_layer._pe_encoding(point_coords) point_labels = point_labels.unsqueeze(-1).expand_as(point_embedding) point_embedding = point_embedding * (point_labels != -1) point_embedding = point_embedding + self.model.prompt_encoder.not_a_point_embed.weight * ( point_labels == -1 ) for i in range(self.model.prompt_encoder.num_point_embeddings): point_embedding = point_embedding + self.model.prompt_encoder.point_embeddings[ i ].weight * (point_labels == i) return point_embedding def _embed_masks(self, input_mask: torch.Tensor, has_mask_input: torch.Tensor) -> torch.Tensor: mask_embedding = has_mask_input * self.model.prompt_encoder.mask_downscaling(input_mask) mask_embedding = mask_embedding + ( 1 - has_mask_input ) * self.model.prompt_encoder.no_mask_embed.weight.reshape(1, -1, 1, 1) return mask_embedding def mask_postprocessing(self, masks: torch.Tensor, orig_im_size: torch.Tensor) -> torch.Tensor: masks = F.interpolate( masks, size=(self.img_size, self.img_size), mode="bilinear", align_corners=False, ) prepadded_size = self.resize_longest_image_size(orig_im_size, self.img_size).to(torch.int64) masks = masks[..., : prepadded_size[0], : prepadded_size[1]] # type: ignore orig_im_size = orig_im_size.to(torch.int64) h, w = orig_im_size[0], orig_im_size[1] masks = F.interpolate(masks, size=(h, w), mode="bilinear", align_corners=False) return masks def select_masks( self, masks: torch.Tensor, iou_preds: torch.Tensor, num_points: int ) -> Tuple[torch.Tensor, torch.Tensor]: # Determine if we should return the multiclick mask or not from the number of points. # The reweighting is used to avoid control flow. score_reweight = torch.tensor( [[1000] + [0] * (self.model.mask_decoder.num_mask_tokens - 1)] ).to(iou_preds.device) score = iou_preds + (num_points - 2.5) * score_reweight best_idx = torch.argmax(score, dim=1) masks = masks[torch.arange(masks.shape[0]), best_idx, :, :].unsqueeze(1) iou_preds = iou_preds[torch.arange(masks.shape[0]), best_idx].unsqueeze(1) return masks, iou_preds @torch.no_grad() def forward( self, image_embeddings: torch.Tensor, point_coords: torch.Tensor, point_labels: torch.Tensor, mask_input: torch.Tensor, has_mask_input: torch.Tensor, orig_im_size: torch.Tensor, ): sparse_embedding = self._embed_points(point_coords, point_labels) dense_embedding = self._embed_masks(mask_input, has_mask_input) masks, scores = self.model.mask_decoder.predict_masks( image_embeddings=image_embeddings, image_pe=self.model.prompt_encoder.get_dense_pe(), sparse_prompt_embeddings=sparse_embedding, dense_prompt_embeddings=dense_embedding, ) if self.use_stability_score: scores = calculate_stability_score( masks, self.model.mask_threshold, self.stability_score_offset ) if self.return_single_mask: masks, scores = self.select_masks(masks, scores, point_coords.shape[1]) upscaled_masks = self.mask_postprocessing(masks, orig_im_size) if self.return_extra_metrics: stability_scores = calculate_stability_score( upscaled_masks, self.model.mask_threshold, self.stability_score_offset ) areas = (upscaled_masks > self.model.mask_threshold).sum(-1).sum(-1) return upscaled_masks, scores, stability_scores, areas, masks return upscaled_masks, scores, masks
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/utils/onnx.py
0.943436
0.545649
onnx.py
pypi
# This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import numpy as np import torch from torch.nn import functional as F from torchvision.transforms.functional import resize, to_pil_image # type: ignore from copy import deepcopy from typing import Tuple class ResizeLongestSide: """ Resizes images to the longest side 'target_length', as well as provides methods for resizing coordinates and boxes. Provides methods for transforming both numpy array and batched torch tensors. """ def __init__(self, target_length: int) -> None: self.target_length = target_length def apply_image(self, image: np.ndarray) -> np.ndarray: """ Expects a numpy array with shape HxWxC in uint8 format. """ target_size = self.get_preprocess_shape(image.shape[0], image.shape[1], self.target_length) return np.array(resize(to_pil_image(image), target_size)) def apply_coords(self, coords: np.ndarray, original_size: Tuple[int, ...]) -> np.ndarray: """ Expects a numpy array of length 2 in the final dimension. Requires the original image size in (H, W) format. """ old_h, old_w = original_size new_h, new_w = self.get_preprocess_shape( original_size[0], original_size[1], self.target_length ) coords = deepcopy(coords).astype(float) coords[..., 0] = coords[..., 0] * (new_w / old_w) coords[..., 1] = coords[..., 1] * (new_h / old_h) return coords def apply_boxes(self, boxes: np.ndarray, original_size: Tuple[int, ...]) -> np.ndarray: """ Expects a numpy array shape Bx4. Requires the original image size in (H, W) format. """ boxes = self.apply_coords(boxes.reshape(-1, 2, 2), original_size) return boxes.reshape(-1, 4) def apply_image_torch(self, image: torch.Tensor) -> torch.Tensor: """ Expects batched images with shape BxCxHxW and float format. This transformation may not exactly match apply_image. apply_image is the transformation expected by the model. """ # Expects an image in BCHW format. May not exactly match apply_image. target_size = self.get_preprocess_shape(image.shape[2], image.shape[3], self.target_length) return F.interpolate( image, target_size, mode="bilinear", align_corners=False, antialias=True ) def apply_coords_torch( self, coords: torch.Tensor, original_size: Tuple[int, ...] ) -> torch.Tensor: """ Expects a torch tensor with length 2 in the last dimension. Requires the original image size in (H, W) format. """ old_h, old_w = original_size new_h, new_w = self.get_preprocess_shape( original_size[0], original_size[1], self.target_length ) coords = deepcopy(coords).to(torch.float) coords[..., 0] = coords[..., 0] * (new_w / old_w) coords[..., 1] = coords[..., 1] * (new_h / old_h) return coords def apply_boxes_torch( self, boxes: torch.Tensor, original_size: Tuple[int, ...] ) -> torch.Tensor: """ Expects a torch tensor with shape Bx4. Requires the original image size in (H, W) format. """ boxes = self.apply_coords_torch(boxes.reshape(-1, 2, 2), original_size) return boxes.reshape(-1, 4) @staticmethod def get_preprocess_shape(oldh: int, oldw: int, long_side_length: int) -> Tuple[int, int]: """ Compute the output size given input size and target long side length. """ scale = long_side_length * 1.0 / max(oldh, oldw) newh, neww = oldh * scale, oldw * scale neww = int(neww + 0.5) newh = int(newh + 0.5) return (newh, neww)
/rf_segment_anything-1.0.tar.gz/rf_segment_anything-1.0/segment_anything/utils/transforms.py
0.92866
0.736874
transforms.py
pypi
try: import importlib.resources as resources except ImportError: # pragma: no cover import importlib_resources as resources from logging import debug from robotlibcore import DynamicCore, keyword from robot.libraries.BuiltIn import BuiltIn from typing import Iterable from ._version import __version__ def load_resource_file( package: resources.Package, resources_: Iterable[resources.Resource] ): built_in = BuiltIn() for resource in resources_: with resources.path(package, resource) as path: debug(f'Importing resource file from {path}') built_in.import_resource(str(path).replace("\\", "/")) def _parse_args_and_load_resource_file(args): if len(args) < 2: raise ValueError( 'Not enough arguments. Expected package name as first argument and resource names as following arguments.') load_resource_file(args[0], args[1:]) class SharedResources(DynamicCore): '''Library for importing Robot Framework resource files from python libraries. To include non-python files, in this case ``.robot`` or ``.resource`` files, to the Python package, use ``package_data`` or ``include_package_data`` settings of Python setuptools to configure files to be included in the package. See setuptools [https://setuptools.pypa.io/en/latest/userguide/datafiles.html#data-files-support|documentation] for details. ''' ROBOT_LISTENER_API_VERSION = 2 __version__ = __version__ def __init__(self, *args): ''' Can be either imported without parameters or with parameters of `Import resource from package`. If parameters are given, the resources defined by the parameters are imported during the library initialization. Examples: | Library | SharedResources | | Library | SharedResources | EmbeddedResources.resources | a_keywords.resource | b_keywords.robot | ''' self.ROBOT_LIBRARY_LISTENER = self # pylint: disable=invalid-name '''Due to RF library import caching the `__init__()` method is called only once per unique args list. Thus listener API has to be used to do resource file loading when library is imported again with same arguments. See `library_import()` method.''' DynamicCore.__init__(self, []) if args: _parse_args_and_load_resource_file(args) @keyword def import_resource_from_package( self, package: resources.Package, *resources_: resources.Resource): '''Imports a resource file embedded in Python packages resources. Examples: | Import resource from package | EmbeddedResources.resources | a_keywords.resource | | Import resource from package | EmbeddedResources.resources | a_keywords.resource | b_keywords.robot | ''' load_resource_file(package, resources_) def library_import(self, _, attributes): '''Listener for library import notifications Listen for library import notifications and load resource files when this library is imported. See also `ROBOT_LIBRARY_LISTENER` instance variable in `__init__()` method. ''' name = attributes.get('originalname') args = attributes.get('args') if name == self.__class__.__name__: _parse_args_and_load_resource_file(args)
/rf_shared_resources-0.1.2-py3-none-any.whl/SharedResources/_shared_resources.py
0.803135
0.203767
_shared_resources.py
pypi
import scipy.signal as signal import scipy.optimize as optimize import scipy.integrate as integrate import scipy.special as special import scipy.ndimage as ndimage import numpy as np import numpy.polynomial.polynomial as poly from mpl_toolkits.mplot3d import axes3d # 3D plot import matplotlib.pyplot as plt import matplotlib as mpl from cycler import cycler """from pyhht.visualization import plot_imfs # Hilbert-Huang TF analysis from pyhht import EMD # Hilbert-Huang TF analysis""" import rftool.utility as util import rftool.estimation as estimate class chirp: """ Object for generating a set of linear chirps """ t = None T = None def __init__( self, Fs=1e3, T=1, fStart=1, fStop=10, nChirps=16, **kwargs): """ T is the chirp duration [s]. Fs is the intended sampling frequency [Hz]. Fs must be at last twice the highest frequency in the input PSD. If Fs < 2*max(f), then Fs = 2*max(f) nChirps is the number of chirps to be generated direction is the chirp direction, 'up', 'down', or 'both' """ self.direction = kwargs.get('direction', 'both') # If 'both' chirp directions are selected, nChirps must be even if (0<nChirps%2) & (self.direction=='both'): nChirps+=1 self.Fs = Fs self.T = T self.points = np.intc(Fs*T) self.dt = 1/self.Fs self.t = np.linspace(0,T,self.points) self.fStart = fStart self.fStop = fStop self.nChirps = np.intc(nChirps) self.getPrimaryChirp() def getPrimaryChirp(self): self.omega_t = np.linspace( self.fStart, self.fStop, np.intc(self.T*self.Fs) ) # Delay for each symbol in samples # Half of the symbols is in one direction, another half in the other (up/down). if self.direction=='both': self.symbolDelay = np.linspace(0, self.points-(self.points/(self.nChirps/2)), np.intc(self.nChirps/2)) self.symbolDelay = np.append(self.symbolDelay, self.symbolDelay) else: self.symbolDelay = np.linspace(0, self.points-(self.points/(self.nChirps)), np.intc(self.nChirps)) def getSymbolSig(self, symbol): """ Generate chirps. """ omega_t = self.omega_t if self.direction=='down': omega_t = np.max(omega_t) - (omega_t-np.min(omega_t)) elif self.direction=='both': # The second half of symbols has invertedd chirp direction if np.intc(self.nChirps/2)-1<symbol: omega_t = np.max(omega_t) - (omega_t-np.min(omega_t)) phi_t = util.indefIntegration( omega_t, self.dt ) sig = np.exp(np.multiply(1j*2*np.pi, phi_t)) sig = np.roll( sig, np.intc(self.symbolDelay[symbol]) ) #! Debug code """plt.figure() plt.plot(sig) plt.show()""" #! Debug code return sig def getSymbolIF(self, symbol): """ Return the IF of the symbols """ omega_t = np.roll( self.omega_t, np.intc(self.symbolDelay[symbol]) ) if self.direction=='down': omega_t = np.max(omega_t) - (omega_t-np.min(omega_t)) elif self.direction=='both': # The second half of sympols has invertedd chirp direction if np.intc(self.nChirps/2)-1<symbol: omega_t = np.max(omega_t) - (omega_t-np.min(omega_t)) return omega_t def plotSymbols(self): root = np.intc(np.ceil(np.sqrt(self.nChirps))) fig, ax = plt.subplots(root,root) fig.set_size_inches((7,2.5)) for index, axis in enumerate(ax.flat): if index<self.nChirps: axis.plot(self.t, self.getSymbolIF(index), label=str(index)) #axis.legend() axis.set_ylabel('$f$ [Hz]') axis.set_xlabel('$t$ [s]') plt.tight_layout() #fig.suptitle('Chirp Instantaneous Frequency') def plotAutocorr(self): root = np.intc(np.ceil(np.sqrt(self.nChirps))) fig, axs = plt.subplots(root,root) fig.figsize=[7, 4] #fig.subtitle('Autocorrelation') for index, axis in enumerate(axs.flat): if index<self.nChirps: axis.plot( util.pow2normdb(np.abs(signal.correlate( self.getSymbolSig(index), self.getSymbolSig(index) , mode='same', method='fft'))), label=str(index)) #axis.legend() #fig.suptitle('Autocorrelation') plt.tight_layout() def plotXcorr(self): corrmat = np.zeros((self.nChirps,self.nChirps)) it = np.nditer(corrmat, flags=['multi_index']) while not it.finished: corrmat[it.multi_index] = np.max( np.abs(signal.correlate( self.getSymbolSig(it.multi_index[0]), self.getSymbolSig(it.multi_index[1]) , mode='same', method='fft')) ) it.iternext() corrmat = util.pow2normdb(corrmat) plt.figure(figsize=(3.5, 2.5)) plt.title('Normalized Cross Corrlation [dB]') plt.pcolormesh(corrmat) plt.colorbar() def plotDotProd(self): corrmat = np.zeros((self.nChirps,self.nChirps)) it = np.nditer(corrmat, flags=['multi_index']) while not it.finished: corrmat[it.multi_index] = np.abs(np.dot(self.getSymbolSig(it.multi_index[0]), self.getSymbolSig(it.multi_index[1])) ) it.iternext() corrmatDb = util.pow2normdb(corrmat) plt.figure(figsize=(2.8, 2.1)) plt.title('Normalized Dot Product [dB]') plt.pcolormesh(corrmatDb) plt.colorbar() return corrmatDb def modulate( self, symbolStream=np.array([1,0,1,0])): """ Modulate bit stream to a chirp. One chirp per symbol. symbolStream is the bitstream to be modulated (numpy array). """ # Calculate length of signal sigLen = len(symbolStream)*len(self.omega_t) # generate frame packetSig = np.empty([sigLen], dtype=complex) # Iterate through symbolStream and add to packetSig for m, symbol in enumerate(symbolStream): packetSig[m*self.points:(m+1)*self.points] = self.getSymbolSig(symbol) return packetSig
/rf-tool-0.0.17.tar.gz/rf-tool-0.0.17/rftool/LFM.py
0.679072
0.510008
LFM.py
pypi
import numpy as np import scipy.constants as const import mpmath as mp def effectivePermittivityHJ( h, w, e_r ): """ Calculate effective permittivity from Hammerstad-Jensen (simplified formula). h strip height over dielectric. w strip width. e_r is the relative permittivity of the dielectric. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ e_eff = np.divide((e_r+1),2) + np.divide((e_r-1),2)*np.divide(1,np.sqrt(1+(12*np.divide(h,w)))) return e_eff def Z01HJ( h, w, e_r ): """ Calculate Z01 from Hammerstad-Jensen (simplified formula). Impedance instrip with air dielectric. h strip height over dielectric. w strip width. e_r is the relative permittivity of the dielectric. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ e_eff = effectivePermittivityHJ( h, w, e_r) u = np.divide(w,h) F1 = 6+(2*np.pi-6)*np.exp(-np.power(np.divide(30.666,u), 0.7528)) z_01 = 60*np.log( np.divide(F1, u) + np.sqrt(1+np.power(np.divide(2,u),2)) ) return z_01 def microstripImpedanceHJ( h, w, e_r ): """ Calculate Characteristic Impedance from Hammerstad-Jensen (simplified formula). w <--------> e_0 +--------+ | | +--------------+--------+--------------+ ^ | | | | e_r | | h | | | +--------------------------------------+ v h is the strip height over dielectric. w is the strip width. e_r is the relative permittivity of the dielectric. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ e_eff = effectivePermittivityHJ( h, w, e_r) z_01 = Z01HJ(h, w, e_r) z_0 = np.divide(z_01,np.sqrt(e_eff)) return z_0 def effectiveStripWidthHJ( h, w, t, e_r ): """ Calculate effective width w_eff for a microstrip of finite thickness. Hammerstad and Jenson's method. This effective width can be used in microstripImpedanceHJ to take strip thickness into account. w <--------> e_0 +--------+ ^ | | | t +--------------+--------+--------------+ ^ v | | | | e_r | | h | | | +--------------------------------------+ v t is the strip thickness. h is the strip height over dielectric. w is the strip width. e_r is the relative permittivity of the dielectric. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ delta_w_1 = np.divide(t*h, const.pi)*np.log( float(1 + np.divide( 4*const.e, t*np.power(mp.coth( np.sqrt( 6.517*np.divide(w,h) ) ),2) ) )) delta_w_r = np.divide(1,2)*( 1+np.divide( 1, mp.cosh(np.sqrt(e_r-1)) ) )*delta_w_1 w_eff = float(w + delta_w_r) return w_eff def shieldedMicrostripImpedanceHJ( h, w, t, a, b, e_r ): """ Calculate Characteristic Impedance of microstrip in a metallic enclosure. Hammerstad-Jensen (simplified formula) quasi-static impedance. Using Hammerstad-Jensen effective width calculation. +--------------------------------------+ ^ | w | | | <--------> | | a | e_0 +--------+ | | ^ | | | | | | t +--------------+--------+--------------+ | ^ V | | | | | e_r | | | h | | | | +--------------------------------------+ v v <--------------------------------------> b h strip height over dielectric. w strip width. t is the strip thickness. a is the enclosure height. b is the enclosure width. e_r is the relative permittivity of the dielectric. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ z_0u = microstripImpedanceHJ( h, w, e_r ) w_eff = effectiveStripWidthHJ( h, w, t, e_r ) h_prime = a-h delta_z_0s1 = 270*( 1-np.tanh(0.28+1.2*np.sqrt(np.divide(h_prime,h))) ) delta_z_0s2 = delta_z_0s1*( 1-np.tanh(float(1+np.divide( 0.48*np.power(np.divide(w_eff, h)-1,0.5), np.power(1+np.divide(h_prime, h), 2) ))) ) if np.divide(w,h)>1.3: z_0 = z_0u-delta_z_0s1 else: z_0 = z_0u-delta_z_0s2 return z_0 def effectivePermittivityYa( h, w, e_r, f ): """ Calculate frequency dependendt effective permittivity form Yamashita (dispersion). w <--------> e_0 +--------+ | | +--------------+--------+--------------+ ^ | | | | e_r | | h | | | +--------------------------------------+ v h strip height over dielectric [M]. w strip width [M]. e_r is the relative permittivity of the dielectric. f is the fignal frequency [Hz]. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ e_eff = effectivePermittivityHJ( h, w, e_r ) F = np.divide( 4*h*f*np.sqrt(e_eff-1), const.c ) * (0.5+np.power( 1+2*np.log10(1+np.divide(w,h)), 2 )) e_eff_freq = np.power(np.divide( np.sqrt(e_r)-np.sqrt(e_eff), 1+4*np.power(F,-1.5) ) + np.sqrt(e_eff), 2) return e_eff_freq def microstripImpedanceYa( h, w, e_r, f ): """ Calculate frequency dependendt Characteristic Impedance form Yamashita. w <--------> e_0 +--------+ | | +--------------+--------+--------------+ ^ | | | | e_r | | h | | | +--------------------------------------+ v h strip height over dielectric [M]. w strip width [M]. e_r is the relative permittivity of the dielectric. f is the fignal frequency [Hz]. Accurate within 1% for 0.1 < f < 100 [GHz] - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ e_eff_freq = effectivePermittivityYa(h, w, e_r, f) z_01 = Z01HJ(h, w, e_r) Z_0_freq = np.divide( z_01, np.sqrt(e_eff_freq) ) return Z_0_freq def microstripImpedanceKJ( h, w, e_r, f ): """ Calculate frequency dependendt Characteristic Impedance form Kirschning and Jansen. w <--------> e_0 +--------+ | | +--------------+--------+--------------+ ^ | | | | e_r | | h | | | +--------------------------------------+ v h strip height over dielectric [M]. w strip width. e_r is the relative permittivity of the dielectric. f is the fignal frequency [Hz] Accurate within 0.6% for: f < 60 [GHz] 1 <= e_r <= 20 0.1 <= w/h <= 100 0 <= h/lambda_0 <= 0.13 - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ e_eff = effectivePermittivityHJ( h, w, e_r) F = np.divide(f, 1e9) H = np.divide(h, 1e-2) P1 = 0.27488 + np.divide( 0.6315+0.525, np.power(1+0.157*F*H, 20))*np.divide(w,h) - 0.0065683*np.exp(-8.7513*np.divide(w,h)) P2 = 0.33622*(1-np.exp(-0.03442*e_r)) P3 = 0.0363*np.exp(-4.6*np.divide(w,h))*(1-np.exp(-np.power(np.divide(F*H,3.87),4.97))) P4 = 1+2.751*(1-np.exp(-np.power(np.divide(e_r,15.916),8))) def P(F): return P1*P2*np.power( (0.1844+P3*P4)*10*F*H, 1.5763 ) e_eff_freq = e_r-np.divide(e_r-e_eff,1+P(F)) z_01 = Z01HJ(h, w, e_r) Z_0_freq = np.divide( z_01, np.sqrt(e_eff_freq) ) return Z_0_freq def coupledMicrostripOddImpedanceHJ( h, w, s, e_r): """ Calculate quasi-static odd impedance (Hammerstad and Jansen's method). s w <--------> e_0 <--------> +--------+ +--------+ | | | | +----+--------+----------+--------+----+ ^ | | | | e_r | | h | | | +--------------------------------------+ v h is the strip height over dielectric [M] w is the strip width. s is the strip separation. e_r is the relative permittivity of the dielectric. - T. C. Edwards and M. B. Steer, Foundations for microstrip circuit design, fourth edition, Wiley, 2016 """ u = np.divide(w,h) g = np.divide(s,h) q = np.exp(-1.366-g) r = 1 + 0.15*(1-np.divide(np.exp(1-np.divide(np.power(e_r-1, 2), 8.2)), 1+np.power(g, -6))) p = np.divide( np.exp(-0.745*np.power(g, 0.295)), np.cosh(np.power(g, 0.68)) ) f_o1 = 1 - np.exp(-0.179*np.power(g, 0.15)-np.divide(0.328*np.power(g, r), np.log(np.exp(1)+np.power(np.divide(g,7),2.8)))) f_o = f_o1*np.exp(p*np.log(u)+q*np.sin(const.pi*np.divide(np.log(u), np.log(10)))) n = (np.divide(1,17.7)+np.exp(-6.424-0.76*np.log(g)-np.power(np.divide(g, 0.23), 5))) * np.log(np.divide(10+68*np.power(g, 2), 1+32.5*np.power(g, 3.093))) m = 0.2175 + np.power(4.113 + np.power(np.divide(20.36, g), 6), -0.251) + np.divide(1, 323)*np.log(np.divide(np.power(g, 10), 1 + np.power(np.divide(g, 13.8), 10))) beta = 0.2306 + np.divide(1,301.8)*np.log(np.divide(np.power(g,10),1+np.power(np.divide(g, 3.73), 10))) + np.divide(1, 5.3)*np.log(1+0.646*np.power(g, 1.175)) theta = 1.729+1.175*np.log(1+np.divide( 0.627, g + 0.327*np.power(g, 2.17) )) a = 1 + np.divide(1, 49) * np.log(np.divide(np.power(u,4)+np.power(np.divide(u,52), 2), np.power(u,4)+0.432)) + np.divide(1, 18.7)*np.log(1+np.power(np.divide(u, 18.1), 3)) b = 0.564*np.power(np.divide(e_r-0.9, e_r+3), 0.053) alpha = 0.5*np.exp(-g) Psi = 1 + np.divide(g, 1.45) + np.divide(np.power(g, 2.09), 3.95) phi = 0.8645*np.power(u, 0.1472) Phi_e = np.divide(phi, Psi*(alpha*np.power(u, m) + (1-alpha)*np.power(u, -m))) Phi_o = Phi_e-np.divide(theta, Psi)*np.exp(beta*np.power(u, n)*np.log(u)) F_o = f_o*np.power( 1+np.divide(10, u), -a*b ) e_eff_odd = np.divide(e_r+1, 2) + np.divide(e_r-1, 2)*F_o eta_0 = const.pi*119.9169832 # intrinsic impedance of free space z01 = microstripImpedanceHJ( h, w, e_r ) z01_o = np.divide(z01, 1-np.divide(z01*Phi_o, eta_0)) z0_o = np.divide(z01_o, np.sqrt(e_eff_odd)) return z0_o
/rf-tool-0.0.17.tar.gz/rf-tool-0.0.17/rftool/pcb.py
0.716615
0.608129
pcb.py
pypi