index
int64
0
1,000k
blob_id
stringlengths
40
40
code
stringlengths
7
10.4M
12,600
1f9130558b445e5c9058bcd1fb3f39d410fc9db0
items = [ ('Tabassum', 2), ('mony', 3), ('Tamanna', 1), ] items.sort(key=lambda item: item[1]) print(items)
12,601
0c4bc3947d5109b682325d66a57ed64365eea055
import datetime from django.db import models from base.ufunc import UploadRenameImage # moth class MarketMonthEconomic(models.Model): """ macro valuation, Weekly update """ date = models.DateField( help_text='Monthly', unique=True, default=datetime.datetime.now, ) # major economics indicator eco_cycle = models.CharField( choices=( ('bull', 'Bull - WLI growth > FIG inflate'), ('neutral', 'Neutral - WLI growth <= FIG inflate'), ('bear', 'Bear - WLI < FIG inflate'), ('jump', 'Jump - Sudden heavily increase in WLI >= FIG'), ('crash', 'Crash - Sudden large decrease in WLI & FIG'), ('unknown', 'Unknown - WLI or FIG shift heavily'), ), max_length=20, help_text='ECRI Economics cycle dashboard', default='neutral' ) eco_index = models.CharField( choices=( ('bull', 'Bull - Leading up; coincident follow; lagging delay'), ('neutral', 'Neutral - Leading neutral; coincident same; lagging delay'), ('bear', 'Bear - Leading down; coincident follow; lagging delay'), ('crash', 'Crash - Leading crash; coincident neutral; lagging neutral'), ), max_length=20, help_text='ECRI leading/coincident/lagging index', default='neutral' ) eco_chart0 = models.ImageField( blank=True, null=True, default=None, help_text='WLI & FIG', upload_to=UploadRenameImage('market/month/eco/main/') ) eco_chart1 = models.ImageField( blank=True, null=True, default=None, help_text='WEEKLY INDEXES GROWTH RATES,%', upload_to=UploadRenameImage('market/month/eco/main/') ) eco_chart2 = models.ImageField( blank=True, null=True, default=None, help_text='U.S. Weekly Leading Index (weekly)', upload_to=UploadRenameImage('market/month/eco/main/') ) eco_chart3 = models.ImageField( blank=True, null=True, default=None, help_text='U.S. Coincident Index (monthly)', upload_to=UploadRenameImage('market/month/eco/main/') ) eco_chart4 = models.ImageField( blank=True, null=True, default=None, help_text='U.S. Lagging Index', upload_to=UploadRenameImage('market/month/eco/main/') ) # top 3 inflation = models.CharField( max_length=20, help_text='Inflation rate; M2:FRED', default='neutral', choices=( ('bull', 'Bull - inflation up, stock should up'), ('neutral', 'Neutral - inflation neutral, stock should neutral'), ('bear', 'Bear - inflation down, stock should down') ), ) gdp = models.CharField( max_length=20, help_text='GDP; GDP:FRED', default='neutral', choices=( ('bull', 'Bull - total good & service value grow faster'), ('neutral', 'Neutral - total good & service value grow slowly'), ('bear', 'Bear - total good & service value decline') ), ) employ = models.CharField( max_length=20, help_text='Unemployment rate; UNRATE:FRED', default='neutral', choices=( ('bull', 'Bull - decline unemployment rate. more people got job'), ('neutral', 'Neutral - stable unemployment rate'), ('bear', 'Bear - increase unemployment rate, moe people leave job') ), ) top_chart0 = models.ImageField( blank=True, null=True, default=None, help_text='Inflation', upload_to=UploadRenameImage('market/month/eco/top/inflation') ) top_chart1 = models.ImageField( blank=True, null=True, default=None, help_text='GDP', upload_to=UploadRenameImage('market/month/eco/top/gdp') ) top_chart2 = models.ImageField( blank=True, null=True, default=None, help_text='Unemployment ate', upload_to=UploadRenameImage('market/month/eco/top/employ') ) # major interest_rate = models.CharField( max_length=20, help_text='Interest Rate; INTDSRUSM193N:FRED', default='neutral', choices=( ('bull', 'Bull - interest rate rise, more money into USD & treasury/bond'), ('neutral', 'Neutral - interest rate un-change'), ('bear', 'Bear - interest rate drop, less money into USD & treasury/bond') ), ) m2_supply = models.CharField( max_length=20, help_text='M2 Money stock; M2:FRED', default='neutral', choices=( ('bull', 'Bull - large increase in money to fund economics'), ('neutral', 'Neutral - Normal increase in money to keep economics going'), ('bear', 'Bear - low increase in money to budgeting economics') ), ) trade_deficit = models.CharField( max_length=20, help_text='Trade Deficit; BOPGSTB:FRED', default='neutral', choices=( ('bull', 'Bear - more export than import, good economics'), ('neutral', 'Neutral - ranging export/import'), ('bear', 'Bull - less export than import, bad economics') ), ) major_chart0 = models.ImageField( blank=True, null=True, default=None, help_text='Interest rate', upload_to=UploadRenameImage('market/month/eco/major/rate') ) major_chart1 = models.ImageField( blank=True, null=True, default=None, help_text='M2 Money stock', upload_to=UploadRenameImage('market/month/eco/major/m2') ) major_chart2 = models.ImageField( blank=True, null=True, default=None, help_text='Trade deficit', upload_to=UploadRenameImage('market/month/eco/major/trade_deficit') ) # consumer cpi = models.CharField( max_length=20, help_text='Consumer Price Index; CPIAUCSL:FRED', default='neutral', choices=( ('bull', 'Bull - increase in price of good & service purchased'), ('neutral', 'Neutral - same price of good & service purchased'), ('bear', 'Bear - decline price of good & service purchased') ), ) cc_survey = models.CharField( max_length=20, help_text='Consumer Confidence Survey; UMCSENT:FRED', default='neutral', choices=( ('bull', 'Bull - consumer are optimist, keep spending more'), ('neutral', 'Neutral - consumer think eco ok and have normal spend'), ('bear', 'Bear - consumer are pessimist, spend less & saving money') ), ) retail_sale = models.CharField( max_length=20, help_text='US Retail Sales; RSXFS:FRED', default='neutral', choices=( ('bull', 'Bull - retail shop sell growth increase'), ('neutral', 'Neutral - retail shop sell is ok'), ('bear', 'Bear - retail shop sell decline') ), ) house_start = models.CharField( max_length=20, help_text='Housing Starts; HOUST:FRED', default='neutral', choices=( ('bull', 'Bull - a lot of new house start building, good economics'), ('neutral', 'Neutral - normal range new house start building'), ('bear', 'Bear - less new house start building, bad economics') ), ) consumer_chart0 = models.ImageField( blank=True, null=True, default=None, help_text='CPI', upload_to=UploadRenameImage('market/month/eco/consumer/cpi') ) consumer_chart1 = models.ImageField( blank=True, null=True, default=None, help_text='Consumer survey', upload_to=UploadRenameImage('market/month/eco/consumer/cc_survey') ) consumer_chart2 = models.ImageField( blank=True, null=True, default=None, help_text='Retail sale', upload_to=UploadRenameImage('market/month/eco/consumer/retail_sale') ) consumer_chart3 = models.ImageField( blank=True, null=True, default=None, help_text='Housing start', upload_to=UploadRenameImage('market/month/eco/consumer/house_start') ) # industry ppi = models.CharField( max_length=20, help_text='Producer Price Index', default='neutral', choices=( ('bull', 'Bull - selling price increase for domestic product'), ('neutral', 'Neutral - selling price stay range for domestic product'), ('bear', 'Bear - selling price decline for domestic product') ), ) ipi = models.CharField( max_length=20, help_text='Industry Production Index; PPIACO:FRED', default='neutral', choices=( ('bull', 'Bull - industry produce more goods, good economics'), ('neutral', 'Neutral - industry produce same quantity of goods'), ('bear', 'Bear - industry produce less goods, bad economics') ), ) biz_store = models.CharField( max_length=20, help_text='Total Business Inventories; ISRATIO:FRED', default='neutral', choices=( ('bull', 'Bull - company hold mass inventory, try to push more sale'), ('neutral', 'Neutral - company hold average inventory, so keep doing business'), ('bear', 'Bear - company reduce inventory, sale not going well') ), ) corp_profit = models.CharField( max_length=20, help_text='Corporate Profits After Tax; CP:FRED', default='neutral', choices=( ('bull', 'Bull - company are making more profit, good market'), ('neutral', 'Neutral - company are making same average profit'), ('bear', 'Bear - company are making less profit, bad market') ), ) wage = models.CharField( max_length=20, help_text='Average Weekly Earnings; CES0500000011:FRED', default='neutral', choices=( ('bull', 'Bull - worker earn more wage weekly, more to spend'), ('neutral', 'Neutral - worker earn average wage'), ('bear', 'Bear - worker earn less wage, less to spend') ), ) product_chart0 = models.ImageField( blank=True, null=True, default=None, help_text='PPI', upload_to=UploadRenameImage('market/month/eco/dollar/ppi') ) product_chart1 = models.ImageField( blank=True, null=True, default=None, help_text='Industry production index', upload_to=UploadRenameImage('market/month/eco/dollar/ipi') ) product_chart2 = models.ImageField( blank=True, null=True, default=None, help_text='Business inventory', upload_to=UploadRenameImage('market/month/eco/product/biz_store') ) product_chart3 = models.ImageField( blank=True, null=True, default=None, help_text='Corp profit after tax', upload_to=UploadRenameImage('market/month/eco/product/crop_profit') ) product_chart4 = models.ImageField( blank=True, null=True, default=None, help_text='Weekly wage', upload_to=UploadRenameImage('market/month/eco/product/wage') ) # currency dollar = models.CharField( max_length=20, help_text='Foreign Exchange Indicators', default='neutral', choices=( ('bull', 'Bull - USD currency in bullish, more money pull into market'), ('neutral', 'Neutral - USD currency in sideway, no impact on market'), ('bear', 'Bear - USD currency in bearish, money are out USA market') ), ) dollar_chart0 = models.ImageField( blank=True, null=True, default=None, help_text='EUR/USD', upload_to=UploadRenameImage('market/month/eco/dollar/eur') ) dollar_chart1 = models.ImageField( blank=True, null=True, default=None, help_text='USD/CAD', upload_to=UploadRenameImage('market/month/eco/dollar/cad') ) dollar_chart2 = models.ImageField( blank=True, null=True, default=None, help_text='USD/JPY', upload_to=UploadRenameImage('market/month/eco/dollar/jpy') ) dollar_chart3 = models.ImageField( blank=True, null=True, default=None, help_text='USD/CNH', upload_to=UploadRenameImage('market/month/eco/dollar/cnh') ) dollar_chart4 = models.ImageField( blank=True, null=True, default=None, help_text='Dollar', upload_to=UploadRenameImage('market/month/eco/dollar/usd') ) # policy monetary = models.TextField( null=True, blank=True, help_text='Monetary policy simple explanation' ) commentary = models.TextField( null=True, blank=True, help_text='Write down what important next month' ) policy_report = models.FileField( blank=True, null=True, default=None, help_text='Major policy', upload_to=UploadRenameImage('market/month/eco/policy') ) # eco stage bubble_stage = models.CharField( max_length=20, help_text='Market fair value', default='new_era', choices=( ('birth', 'The birth of a boom - some sector, other sector down'), ('breed', 'The breed of a bubble - rate low, credit grow, company increase profit'), ('new_era', 'Everyone buy new ara - always go up, valuation standard abandon'), ('distress', 'Financial distress - insider cash out, excess leverage, fraud detected'), ('scare', 'Financial scare - investor scare, no longer trade in market'), ), ) market_scenario = models.CharField( max_length=20, help_text='Inflation, Rates, and Stock', default='positive', choices=( ('very_negative', 'Very Negative - interest+, inflation+, stock-, cash-'), ('midly_negative', 'Midly Negative - interest+, inflation+, stock-, cash+'), ('positive', 'Positive - rate+, inflation+, stock+, sale+') ) ) def __unicode__(self): return 'MonthEconomic {date}'.format( date=self.date ) # week class MarketWeek(models.Model): date = models.DateField(unique=True, help_text='Weekly') commentary = models.TextField( default='Write down weekly comment & expectation', null=True, blank=True ) def __unicode__(self): return 'MarketWeek {date}'.format( date=self.date ) # fund relocation class MarketWeekRelocation(models.Model): """ Asset relocation """ market_week = models.OneToOneField(MarketWeek, null=True, default=None) tlt = models.BooleanField(default=False, help_text='Buy more bond than stock?') gld = models.BooleanField(default=False, help_text='Buy more gold than stock?') veu = models.BooleanField(default=False, help_text='Buy more global than stock?') eem = models.BooleanField(default=False, help_text='Buy more emerging than stock?') chart_image = models.ImageField( blank=True, null=True, default=None, help_text='SPY to TLT/GLD/VEU/EEM ratio', upload_to=UploadRenameImage('market/week/relocation'), ) class MarketWeekPrice(models.Model): """ Price for all watching items """ market_week = models.OneToOneField(MarketWeek, null=True, default=None) sector_price = models.ImageField( blank=True, null=True, default=None, help_text='Sector price (mix)', upload_to=UploadRenameImage('market/week/price/sector'), ) indices_price = models.ImageField( blank=True, null=True, default=None, help_text='Sector price (mix)', upload_to=UploadRenameImage('market/week/price/sector'), ) commodity_price = models.ImageField( blank=True, null=True, default=None, help_text='Sector price (mix)', upload_to=UploadRenameImage('market/week/price/sector'), ) global_price = models.ImageField( blank=True, null=True, default=None, help_text='Sector price (mix)', upload_to=UploadRenameImage('market/week/price/sector'), ) country_price = models.ImageField( blank=True, null=True, default=None, help_text='Sector price (mix)', upload_to=UploadRenameImage('market/week/price/sector'), ) # sector class MarketWeekSector(models.Model): """ Sector weight & movement """ market_week = models.OneToOneField(MarketWeek, null=True, default=None) join_chart = models.ImageField( blank=True, null=True, default=None, help_text='Sector chart (mix)', upload_to=UploadRenameImage('market/week/sector/main0'), ) week_chart = models.ImageField( blank=True, null=True, default=None, help_text='Sector chart (mix)', upload_to=UploadRenameImage('market/week/sector/main1'), ) weight_chart = models.ImageField( blank=True, null=True, default=None, help_text='Sector weight report', upload_to=UploadRenameImage('market/week/sector/weight/chart'), ) weight_report = models.FileField( blank=True, null=True, default=None, help_text='Sector weight report', upload_to=UploadRenameImage('market/week/sector/weight/report'), ) # technical chart (SPY) class MarketWeekTechnical(models.Model): market_week = models.ForeignKey(MarketWeek, null=True, default=None) symbol = models.CharField(max_length=20, default='', help_text='Symbol') name = models.CharField( choices=( ('price', 'Price'), ('volume', 'Volume'), ('cyclical', 'Cyclical'), ('momentum', 'Momentum'), ('sentiment', 'Sentiment'), ('strength', 'Strength'), ('others', 'Others'), ), max_length=20, help_text='Technical category', default='others' ) title = models.CharField(max_length=200, default='') direction = models.CharField( choices=(('bull', 'Bull'), ('neutral', 'Neutral'), ('bear', 'Bear')), max_length=20, default='neutral', help_text='Expect direction' ) chart0 = models.ImageField( blank=True, null=True, default=None, upload_to=UploadRenameImage('market/week/technical'), help_text='Chart/graph with explanation' ) chart1 = models.ImageField( blank=True, null=True, default=None, upload_to=UploadRenameImage('market/week/technical'), help_text='Chart/graph with explanation' ) chart2 = models.ImageField( blank=True, null=True, default=None, upload_to=UploadRenameImage('market/week/technical'), help_text='Chart/graph with explanation' ) chart3 = models.ImageField( blank=True, null=True, default=None, upload_to=UploadRenameImage('market/week/technical'), help_text='Chart/graph with explanation' ) chart4 = models.ImageField( blank=True, null=True, default=None, upload_to=UploadRenameImage('market/week/technical'), help_text='Chart/graph with explanation' ) desc = models.TextField( default='', null=True, blank=True, help_text='Explanation' ) # sentiment class MarketWeekFund(models.Model): market_week = models.OneToOneField(MarketWeek, null=True, default=None) # section: Contrary-Opinion Rules margin_debt = models.CharField( choices=( ('buy', 'High - borrow a lot buy'), ('hold', 'Normal - borrow to buy'), ('sell', 'Low - borrow less to buy'), ), max_length=20, help_text='Margin debt' ) # investor borrow more: higher, stock up; borrow less: lower, stock down # credit balance lower: investor buy, higher: investor sell credit_balance = models.CharField( choices=( ('buy', 'Low - invest in stock'), ('sell', 'High - invest in bond'), ), max_length=20, help_text='Market credit balance' ) # bond conf index, higher: invest in bond, lower: invest in stock confidence_index = models.CharField( choices=( ('buy', 'High - buy stock, sell bond yield bad'), ('hold', 'Normal - buy stock, buy bond'), ('sell', 'Low - sell stock, buy bond yield good'), ), max_length=20, help_text='Confidence Index' ) net_cash = models.ImageField( blank=True, null=True, default=None, help_text='Fund net cash', upload_to=UploadRenameImage('market/week/fund'), ) class MarketWeekCommitment(models.Model): market_week = models.ForeignKey(MarketWeek, null=True, default=None) name = models.CharField( choices=( ('sp500', 'S&P 500'), ('nasdaq', 'Nasdaq 100'), ('djia', 'DJIA'), ('rs2000', 'Russell 2000'), ('oil', 'Crude oil'), ('gas', 'Natural gas'), ('gold', 'Gold'), ('bond10y', 'Bond 10 years'), ('bond2y', 'Bond 2 years'), ('dollar', 'USD dollar'), ('coffee', 'Coffee'), ), max_length=20, help_text='Commodity name' ) open_interest = models.IntegerField(default=0, blank=True) change = models.IntegerField(default=0, blank=True) trade = models.IntegerField(default=0, blank=True) signal = models.CharField( choices=( ('strong_buy', 'Strong buy - trader borrow to buy'), ('buy', 'Buy - trader are buying'), ('hold', 'Hold - trader have mix buy/sell'), ('sell', 'Sell - trader are selling'), ('strong_sell', 'Strong sell - trader sell and keep cash'), ), max_length=20, help_text='CFTC trader (check volume)', default='hold', blank=True ) class MarketWeekSentiment(models.Model): market_week = models.OneToOneField(MarketWeek, null=True, default=None) # from cnn money sentiment_index = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='% Bull-Bear Spread', default='neutral' ) # greek: move up, fear: move down put_call_ratio = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='Market put call ratio', default='neutral' ) # market put call buy ratio, higher: more call, bull, lower: more put, bear market_momentum = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='Market momentum', default='neutral' ) junk_bond_demand = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='Junk bond demand', default='neutral' ) price_strength = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='Price strength', default='neutral' ) safe_heaven_demand = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='Safe heaven demand', default='neutral' ) market_volatility = models.CharField( choices=( ('ex_greed', 'Extreme Greed'), ('greed', 'Greed'), ('neutral', 'Neutral'), ('fear', 'Fear'), ('ex_fear', 'Extreme Fear') ), max_length=20, help_text='Market volatility', default='neutral' ) index_image = models.ImageField( blank=True, null=True, default=None, help_text='Sentiment index', upload_to=UploadRenameImage('market/week/sentiment/index'), ) index_chart = models.ImageField( blank=True, null=True, default=None, help_text='Sentiment chart', upload_to=UploadRenameImage('market/week/sentiment/chart'), ) class MarketWeekValuation(models.Model): market_week = models.OneToOneField(MarketWeek, null=True, default=None) # market grader mg_market_call = models.CharField( choices=( ('buy', 'Buy'), ('hold', 'Hold'), ('sell', 'Sell'), ), max_length=20, help_text='Marketgrader - market call', default='hold' ) mg_sentiment = models.CharField( choices=( ('optimism', 'Extreme optimism'), ('bullish', 'Bullish sentiment'), ('pessimism', 'Excessive pessimism '), ), max_length=20, help_text='Marketgrade - contrarian indicator', default='optimism' ) # third party sentiment = models.CharField( choices=( ('ex_greed', 'Extreme Greed - A lot more % Bull than Bear Spread'), ('greed', 'Greed - More % Bull than Bear Spread'), ('neutral', 'Neutral - Balance between % Bull & Bear Spread'), ('fear', 'Fear - Less % Bull than Bear Spread'), ('ex_fear', 'Extreme Fear - Very few % Bull and a lot Bear Spread') ), max_length=20, help_text='Investor sentiment - % Bull-Bear Spread', default='neutral' ) # t-bill eurodollar spread, # higher: money into t-bill, stock down, # lower: money out t-bill, stock up # lower: investor sell, higher: investor buy ted_spread = models.CharField( choices=( ('buy', 'Low - money sell t-bil, buy stock'), ('hold', 'Normal - money buy t-bill, buy stock'), ('sell', 'High - money buy t-bill, sell stock') ), max_length=20, help_text='Ted spread', default='hold' ) # section: market momentum # Breadth of Market: high, more advance price, stock up; low, more decline price, stock down market_breadth = models.CharField( choices=( ('buy', 'Advances - more buy tick than sell tick'), ('hold', 'In range - buy tick and sell tick almost same'), ('sell', 'Declines - less buy tick than sell tick'), ), max_length=20, help_text='Breadth of Market', default='hold' ) # below 20: oversold, above: 80 overbought ma200day_pct = models.CharField( choices=( ('buy', 'Overbought'), ('hold', 'Fair value'), ('sell', 'Oversold') ), max_length=20, help_text='% of S&P 500 Stocks > 200-Day SMA', default='hold' ) # $trin, Short-Term Trading Index: overbought: sell, oversold: buy arms_index = models.CharField( choices=( ('sell', 'High - overbought'), ('hold', 'Middle - fair value'), ('buy', 'Low - oversold'), ), max_length=20, help_text='Short-Term Trading Arms Index', default='hold' ) # market fair value, undervalue: buy, overvalue: sell fair_value = models.CharField( choices=( ('buy', 'High - overbought'), ('hold', 'Middle - fair value'), ('sell', 'Low - oversold') ), max_length=20, help_text='Market fair value', default='hold' ) chart0 = models.ImageField( blank=True, null=True, default=None, help_text='sentiment', upload_to=UploadRenameImage('market/week/valuation/sentiment'), ) chart1 = models.ImageField( blank=True, null=True, default=None, help_text='ted_spread', upload_to=UploadRenameImage('market/week/valuation/ted_spread'), ) chart2 = models.ImageField( blank=True, null=True, default=None, help_text='market_breadth', upload_to=UploadRenameImage('market/week/valuation/market_breadth'), ) chart3 = models.ImageField( blank=True, null=True, default=None, help_text='ma200day_pct', upload_to=UploadRenameImage('market/week/valuation/ma200day_pct'), ) chart4 = models.ImageField( blank=True, null=True, default=None, help_text='arms_index', upload_to=UploadRenameImage('market/week/valuation/arms_index'), ) chart5 = models.ImageField( blank=True, null=True, default=None, help_text='fair_value', upload_to=UploadRenameImage('market/week/valuation/fair_value'), ) # impl vol class MarketWeekImplVol(models.Model): market_week = models.OneToOneField(MarketWeek) move = models.CharField( choices=( ('bull', 'Bull - spike up; a lot protection are bought'), ('neutral', 'Neutral - ranging; not much protection that trade'), ('bear', 'Bear - spike down; protection are sold'), ), max_length=20, default='neutral', help_text='Vix movement' ) resist = models.FloatField(default=0, help_text='Vix resistant') support = models.FloatField(default=0, help_text='Vix support') chart = models.ImageField( blank=True, null=True, default=None, help_text='ImplVol chart', upload_to=UploadRenameImage('market/week/impl_vol'), ) # report research & article class MarketWeekResearch(models.Model): market_week = models.ForeignKey(MarketWeek, null=True, default=None) source = models.CharField( choices=( ('web', 'Web or Video'), ('schwab', 'Charles Schwab'), ('jpm', 'JP Morgan'), ('blk', 'Black Rock'), ('tda', 'TD Ameritrade'), ), max_length=20, help_text='Article source', default='' ) expect = models.CharField( choices=(('bull', 'Bull'), ('neutral', 'Neutral'), ('bear', 'Bear')), max_length=20, help_text='Expect market direction', default='neutral' ) comment = models.TextField( default='', blank=True, null=True, help_text='Commentary' ) report = models.FileField( blank=True, null=True, default=None, help_text='Report pdf', upload_to=UploadRenameImage('market/week/research'), ) class MarketWeekArticle(models.Model): market_week = models.ForeignKey(MarketWeek, null=True, default=None) date = models.DateField(default=datetime.datetime.now) link = models.CharField(max_length=2000, help_text='article source') name = models.CharField(max_length=500, help_text='article title') category = models.CharField( help_text='Type of article', max_length=20, default='review', choices=(('review', 'Review'), ('analysis', 'Analysis'), ('general', 'General')) ) chance = models.CharField( help_text='Chance of happen', max_length=20, default='low', choices=(('low', 'Low'), ('medium', 'Medium'), ('high', 'High')) ) key_point = models.TextField(help_text='Main point & extra attention') # day # eco calendar class MarketDayEconomic(models.Model): market_week = models.ForeignKey(MarketWeek) date = models.DateField( null=True, default=datetime.datetime.now, help_text='Bday', unique=True ) market_indicator = models.IntegerField(default=0) extra_attention = models.IntegerField(default=0) key_indicator = models.IntegerField(default=0) special_news = models.BooleanField(default=False) news = models.TextField(default='', null=True, blank=True) class MarketWeekEtfFlow(models.Model): market_week = models.ForeignKey(MarketWeek) asset = models.CharField( choices=( ('us_equity', 'U.S. Equity'), ('world_equity', 'International Equity'), ('us_bond', 'U.S. Fixed Income'), ('world_bond', 'International Fixed Income'), ('commodity', 'Commodities'), ('currency', 'Currency'), ('leveraged', 'Leveraged'), ('inverse', 'Inverse'), ('allocation', 'Asset Allocation'), ('alternative', 'Alternatives'), ), max_length=50, help_text='' ) pct_aum = models.FloatField( default=0, help_text='% of AUM', blank=True ) move = models.CharField( choices=( ('bull', 'Bull - price move breakout last week range'), ('neutral', 'Neutral - price move within last week range'), ('bear', 'Bear - price move breakdown last week range'), ), max_length=20, help_text='Sector move', default='neutral', blank=True ) # month to week decision class MarketStrategy(models.Model): date = models.DateField(help_text='Weekly', unique=True, default=datetime.datetime.today) economic = models.CharField( choices=( ('good', 'Good - economics is making higher'), ('normal', 'Neutral - economics move sideway'), ('bad', 'Bad - economics is moving lower'), ), max_length=20, help_text='Economics condition (report)' ) week_movement = models.CharField( choices=( ('bull', 'Bull - market bullish; making higher'), ('neutral', 'Neutral - market neutral; trading in range'), ('bear', 'Bear - market bearish; making lower'), ), max_length=50, help_text='Month to week market movement (expectation)' ) def __unicode__(self): return 'MarketStrategy {date}'.format( date=self.date ) class MarketStrategyOpportunity(models.Model): market_strategy = models.ForeignKey(MarketStrategy) name = models.CharField( choices=( ('buy', 'Buy - good economics, market bull; embrace, keep buy'), ('hold', 'Hold - good economics, market neutral; buy support & sell resist'), ('strong_buy', 'Strong buy - good economics, market bear; collect, aggressive buy'), ('hold', 'Hold - normal economics, market bull; ignore, wait for opportunity'), ('hold', 'Hold - normal economics, market neutral; buy support & sell resist'), ('buy', 'Hold - normal economics, market bear; caution buy'), ('strong_sell', 'Strong sell - bad economics, market bull; reject, aggressive short'), ('hold', 'Hold - bad economics, market neutral; buy support & sell resist'), ('sell', 'Sell - bad economics, market bear; follow, caution short'), ), max_length=50, help_text='Opportunity' ) resist = models.FloatField(default=0, blank=True) support = models.FloatField(default=0, blank=True) unique_together = (('week_strategy', 'name'), ) class MarketStrategyAllocation(models.Model): market_strategy = models.ForeignKey(MarketStrategy) name = models.CharField( choices=( ('usa_large', 'USA - Money in USA over World; large over small cap'), ('usa_small', 'USA - Money in USA over World; small over large cap'), ('usa_bond', 'USA - Money in USA over World; in Bond, not stock'), ('world_stock', 'World - Money in World over USA; Worldwide equity'), ('world_bond', 'World - Money in World over USA; Worldwide bond'), ('others', 'Others - like REIT, material, commodity and etc') ), max_length=50, help_text='Money flow allocation' ) focus = models.TextField(default='', blank=True) ignore = models.TextField(default='', blank=True) unique_together = (('week_strategy', 'name'),) class MarketStrategyDistribution(models.Model): market_strategy = models.ForeignKey(MarketStrategy) name = models.CharField( choices=( ('primary', 'Primary distribution'), ('secondary', 'Secondary distribution'), ('others', 'Others distribution'), ), max_length=50, help_text='Distribution, total 10 positions' ) long_pos = models.IntegerField(default=0, help_text='Long position') neutral_long_pos = models.IntegerField(default=0, help_text='Neutral to Long position') neutral_pos = models.IntegerField(default=10, help_text='Neutral position') neutral_short_pos = models.IntegerField(default=0, help_text='Neutral to short position') short_pos = models.IntegerField(default=0, help_text='Short position') weight = models.BooleanField(default=False, help_text='Follow sector weighting?') unique_together = (('week_strategy', 'name'),) # todo: screw you index
12,602
d91e877754d8c9d0583025ab677b533576f2adcd
import numpy as np import os from task_optim.test_scenario.one_com_waypoint_static_test import OneComWaypointStaticTest from task_optim.solvers.robo_solver import RoboSolver from task_optim.solvers.cma_solver import CmaSolver home_path = os.path.expanduser("~") root_path = home_path + "/Optimization_Tests/cost_tests-reaching/" right_hand_starting_waypoints = np.array([[0.36, -0.23, 0.5]]) com_starting_waypoints = np.array([[0.015, -0.11, 0.51]]) bo_test_path = root_path + "/bo/" cma_test_path = root_path + "/cma/" tolerance = 1e-11 maxIter = 44 costs_to_use=[['tracking', 'goal', 'energy'], ['tracking', 'energy'], ['tracking', 'goal'], ['goal', 'energy'], ['tracking'], ['goal'], ['energy']] number_of_repeats = 10 bo_solver_parameters = {'max_iter':maxIter, 'tolfun':tolerance, 'par':1000.0, 'kernel':'Matern52', 'acquisition':'EI', 'maximizer':'Direct'} cma_solver_parameters = {'max_iter':maxIter, 'tolfun':tolerance, 'initial_sigma':0.1} ###################################################################################### print("\n\n\n\n\n\n=================================================") print("Cost Tests: Reaching Experiment.") print("=================================================\n\n\n") for c in costs_to_use: for t in range(number_of_repeats): print("\n\n========================================") print("Test number:", t+1, "of", number_of_repeats, "tests.\nCosts to use:", c) print("========================================") print("\n\nUsing Bayesian Optimization...\n\n") first_test = OneComWaypointStaticTest(bo_test_path, right_hand_starting_waypoints, com_starting_waypoints, c) solver = RoboSolver(first_test, bo_solver_parameters) solver.optimize() solver.returnSolution(show_simulation=False) print("\n\nUsing CMA-ES...\n\n") first_test = OneComWaypointStaticTest(cma_test_path, right_hand_starting_waypoints, com_starting_waypoints, c) solver = CmaSolver(first_test, cma_solver_parameters) solver.optimize() solver.returnSolution(show_simulation=False)
12,603
0da0317bbfc86cb0560b262787d7ed504df17069
from datetime import datetime class Timer: def __init__(self): self.start_time = datetime.now() def lap(self): now = datetime.now() duration = now - self.start_time return duration.total_seconds() def reset(self): self.start_time = datetime.now()
12,604
33787c624468cbcdb216e498177f87e80d57a122
S = input() K = int(input()) c1 = 0 ans = S[0] for i, s in enumerate(S): if s != '1': ans = s break c1 = i+1 if c1 >= K: print(1) else: print(ans)
12,605
c5504ef5a713f22f4977a721c2cc98a6bd5157c3
from geodata import * ids = [ 'KV1_38765_30109_00_KANOPUS_20190718_080631_080722.SCN10.PMS.L2', 'KV1_38765_30109_00_KANOPUS_20190718_080631_080722.SCN11.PMS.L2', 'KV1_38765_30109_00_KANOPUS_20190718_080631_080722.SCN12.PMS.L2', 'KV1_38765_30109_00_KANOPUS_20190718_080631_080722.SCN13.PMS.L2', 'KV1_38765_30109_00_KANOPUS_20190718_080631_080722.SCN9.PMS.L2' ] path_cover = r'd:\terratech\covers\102_2020_180_Samara_fullcover.json' path_out = r'd:\terratech\covers\test' suredir(path_out) for pms_id in ids: get_pms_json_from_ms(path_cover, fullpath(path_out, pms_id, 'json'), pms_id) json_fix_datetime(fullpath(path_out, pms_id, 'json'))
12,606
08cf1d64dd84f0cde4529ee8e5ccc5a212123d5c
# Amplitudni test # Definicije potrebne za analizo parametrov import csv import numpy as np from lmfit import minimize, Parameters, fit_report def podatki(filename,stVrst): # INITIALIZE LISTS time = [] shear = [] strain = [] comp = [] # READ FROM CSV FILE with open(filename, 'rb') as csvfile: for i in range(0,stVrst): next(csvfile) podatki = csv.reader(csvfile) for row in podatki: time.append(float(row[1])) shear.append(float(row[2])) strain.append(float(row[3])) comp.append(float(row[4])) # CONVERT LIST TO ARRAYS time = np.array(time) shear = np.array(shear) strain = np.array(strain) comp = np.array(comp) return time,shear,strain,comp;
12,607
08c5006c30412a2a0c513d16386b183b1150729d
#/usr/bin/env python import sys from update_events import update_events from scrape_event import scrape_new_links from raw_results import get_new_results #update_events() scrape_new_links(sys.argv[1]) get_new_results(sys.argv[1])
12,608
7b375e6b5def9544bc1e2abb29ea50ebb926ee8f
from django.urls import path from lists import views app_name='lists' urlpatterns=[ path('', views.index, name='index'), path('todolist/add', views.addTodolist, name='add_todolist'), path('todolist/details/<int:todolist_id>',views.details,name='details'), path('todolist/addtodo/<int:todolist_id>', views.addTodo,name='add_todo'), path('todolist/deletetodo/<int:todolist_id>', views.deleteTodo, name='delete_todo'), path('todolist/deletetodolist/<int:todolist_id>' , views.deleteTodolist, name='delete_todolist') ]
12,609
48b759003f7e05e9f5c083020f31825140275b5e
#!/usr/bin/env python #import sys from setuptools import setup, find_packages # if sys.version < '2.5': # sys.exit('Python 2.5 or higher is required') setup(name='cssprefixer_py3', version='0.0.1', description="A tool that rewrites your CSS files, adding vendor-prefixed versions of CSS3 rules. ", long_description=""" Based on cssprefixer by myfreeweb (floatboth@me.com). """, license='Apache License 2.0', author='nanopony', author_email='sddeath@gmail.com', url='https://github.com/nanopony/cssprefixer', requires=['cssutils'], include_package_data=True, packages=find_packages(), keywords=['CSS', 'Cascading Style Sheets', 'Cleanup', 'prefix'], classifiers=[ 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries', ], package_data={}, entry_points = { 'console_scripts' : [ 'prefixize = cssprefixer.prefixize:main', ] }, )
12,610
bf1bf34b226cccd7aef625a31127d6c0e6ff99b5
import pandas as pd from sklearn import linear_model import matplotlib.pyplot as plt #read data dataframe = pd.read_fwf('data.txt') x_values = dataframe[['intrest']] y_values = dataframe[['price']] #train model on data body_reg = linear_model.LinearRegression() body_reg.fit(x_values, y_values) x = 11 y = body_reg.predict(x) #visualize results plt.scatter(x_values, y_values) plt.scatter(x,y,color='red') plt.plot(x_values, body_reg.predict(x_values) ,color='green') plt.show()
12,611
0242e5544013368900c699dd5c05c4231a55df09
for letter in "Das Capitial": print(letter) friends = ["Tam", "Tammy", "Jerid"] for friend in friends: print(friend) for index in range(100): print(index) for index in range(5): if index == 0: print("First") print("Not first")
12,612
d28cd07eca76332692d2e651447f311474710595
class StockNotFoundException(Exception): def __init__(self, message): super(StockNotFoundException, self).__init__(message) class DateNotInRangeException(Exception): def __init__(self, message): super(DateNotInRangeException, self).__init__(message) class HTMLElementNotFoundException(Exception): def __init__(self, message): super(HTMLElementNotFoundException, self).__init__(message)
12,613
5c84524d096a81b7b0168b4a99880f5bde259c51
def sub(num1,num2): sub_result = num1-num2 print(sub_result) sub(100,50) def mul(num1,num2): mul_result = num1*num2 print(mul_result ) mul(100,50) def div(num1,num2): div_result = num1/num2 print(div_result ) div(100,50)
12,614
1c517026b8ef990e810238ffc97a85b2c8f3d184
import unittest from sure import expect from social.tests.models import TestStorage from social.tests.strategy import TestStrategy from social.backends.utils import load_backends, get_backend from social.backends.github import GithubOAuth2 from social.exceptions import MissingBackend class BaseBackendUtilsTest(unittest.TestCase): def setUp(self): self.strategy = TestStrategy(storage=TestStorage) def tearDown(self): self.strategy = None class LoadBackendsTest(BaseBackendUtilsTest): def test_load_backends(self): loaded_backends = load_backends(( 'social.backends.github.GithubOAuth2', 'social.backends.facebook.FacebookOAuth2', 'social.backends.flickr.FlickrOAuth' ), force_load=True) keys = list(loaded_backends.keys()) keys.sort() expect(keys).to.equal(['facebook', 'flickr', 'github']) backends = () loaded_backends = load_backends(backends, force_load=True) expect(len(list(loaded_backends.keys()))).to.equal(0) class GetBackendTest(BaseBackendUtilsTest): def test_get_backend(self): backend = get_backend(( 'social.backends.github.GithubOAuth2', 'social.backends.facebook.FacebookOAuth2', 'social.backends.flickr.FlickrOAuth' ), 'github') expect(backend).to.equal(GithubOAuth2) def test_get_missing_backend(self): get_backend.when.called_with(( 'social.backends.github.GithubOAuth2', 'social.backends.facebook.FacebookOAuth2', 'social.backends.flickr.FlickrOAuth' ), 'foobar').should.throw( MissingBackend, 'Missing backend "foobar" entry' )
12,615
7c21e70f442b46004f824941b64e510a4213d0b6
from bisect import bisect_left n, m, x = map(int, input().split()) a = list(map(int, input().split())) b = bisect_left(a, x) print(min(b, m-b))
12,616
49f55c9a181359adcee97f399d5ff0c00e725e0c
def ber(predict,truth,nodes): predict=set(predict) truth=set(truth) nodes=set(nodes) fp=len(predict-truth)/float(len(predict)) predict_out=nodes-predict truth_out=nodes-predict fn=len(predict_out-truth_out)/float(len(predict_out)) balance_error_rate=0.5*(fp+fn) return balance_error_rate def mapping(predict,truths,nodes): similarity=[] for truth in truths: er=ber(predict,truth,nodes) similarity.append((truth,er)) similarity=sorted(similarity,key=lambda item:item[1]) most_accuret=1-similarity[0][1] return most_accuret def evaluation(predictions,truths,nodes): accuracy=[] for predict in predictions: map_predict=mapping(predict,truths,nodes) accuracy.append(map_predict) fenmu=len(predictions) overall=sum(accuracy)/fenmu return overall
12,617
2ed1517a917caab4bc8c2dfba038085d345726cd
from IPython import get_ipython from prompt_toolkit.enums import DEFAULT_BUFFER from prompt_toolkit.filters import HasFocus, ViInsertMode, ViNavigationMode from prompt_toolkit.key_binding.vi_state import InputMode import IPython.terminal.shortcuts as shortcuts from prompt_toolkit.keys import Keys ip = get_ipython() def switch_to_navigation_mode(event): vi_state = event.cli.vi_state vi_state.input_mode = InputMode.NAVIGATION # Register the shortcut if IPython is using prompt_toolkit if getattr(ip, 'pt_app', None): registry = ip.pt_app.key_bindings elif (getattr(ip, 'pt_cli', None)): # for IPython versions 5.x registry = ip.pt_cli.application.key_bindings_registry if registry: registry.add_binding('k', 'v', filter=(HasFocus(DEFAULT_BUFFER) & ViInsertMode()))(switch_to_navigation_mode) registry.add_binding('v', 'k', filter=(HasFocus(DEFAULT_BUFFER) & ViInsertMode()))(switch_to_navigation_mode) registry.add_binding('g', Keys.ControlV, filter=(HasFocus(DEFAULT_BUFFER) & ViNavigationMode()))( shortcuts.open_input_in_editor)
12,618
e091661c92efdc45c45ee3e4d053c8e250c8e037
from .twitter import Twitter
12,619
0a4dedce14941fb63c334fe22a01e824bb174932
# This Python module is part of the PyRate software package. # # Copyright 2020 Geoscience Australia # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # coding: utf-8 """ This Python module runs the main PyRate processing workflow """ import os from os.path import join import pickle as cp from collections import OrderedDict from typing import List, Tuple import numpy as np from pyrate.core import (shared, algorithm, orbital, ref_phs_est as rpe, ifgconstants as ifc, mpiops, config as cf, timeseries, mst, covariance as vcm_module, stack, refpixel) from pyrate.core.aps import wrap_spatio_temporal_filter from pyrate.core.shared import Ifg, PrereadIfg, get_tiles, mpi_vs_multiprocess_logging from pyrate.core.logger import pyratelogger as log from pyrate.prepifg import find_header from pyrate.configuration import MultiplePaths MASTER_PROCESS = 0 def _join_dicts(dicts): """ Function to concatenate dictionaries """ if dicts is None: # pragma: no cover return assembled_dict = {k: v for D in dicts for k, v in D.items()} return assembled_dict def _create_ifg_dict(dest_tifs, params): """ 1. Convert ifg phase data into numpy binary files. 2. Save the preread_ifgs dict with information about the ifgs that are later used for fast loading of Ifg files in IfgPart class :param list dest_tifs: List of destination tifs :param dict params: Config dictionary :param list tiles: List of all Tile instances :return: preread_ifgs: Dictionary containing information regarding interferograms that are used later in workflow :rtype: dict """ ifgs_dict = {} nifgs = len(dest_tifs) process_tifs = mpiops.array_split(dest_tifs) for d in process_tifs: ifg = shared._prep_ifg(d, params) ifgs_dict[d] = PrereadIfg(path=d, nan_fraction=ifg.nan_fraction, master=ifg.master, slave=ifg.slave, time_span=ifg.time_span, nrows=ifg.nrows, ncols=ifg.ncols, metadata=ifg.meta_data) ifg.close() ifgs_dict = _join_dicts(mpiops.comm.allgather(ifgs_dict)) preread_ifgs_file = join(params[cf.TMPDIR], 'preread_ifgs.pk') if mpiops.rank == MASTER_PROCESS: # add some extra information that's also useful later gt, md, wkt = shared.get_geotiff_header_info(process_tifs[0]) epochlist = algorithm.get_epochs(ifgs_dict)[0] log.info('Found {} unique epochs in the {} interferogram network'.format(len(epochlist.dates), nifgs)) ifgs_dict['epochlist'] = epochlist ifgs_dict['gt'] = gt ifgs_dict['md'] = md ifgs_dict['wkt'] = wkt # dump ifgs_dict file for later use cp.dump(ifgs_dict, open(preread_ifgs_file, 'wb')) mpiops.comm.barrier() preread_ifgs = OrderedDict(sorted(cp.load(open(preread_ifgs_file, 'rb')).items())) log.debug('Finished converting phase_data to numpy in process {}'.format(mpiops.rank)) return preread_ifgs def _mst_calc(dest_tifs, params, tiles, preread_ifgs): """ MPI wrapper function for MST calculation """ process_tiles = mpiops.array_split(tiles) log.info('Calculating minimum spanning tree matrix') def _save_mst_tile(tile, i, preread_ifgs): """ Convenient inner loop for mst tile saving """ mst_tile = mst.mst_multiprocessing(tile, dest_tifs, preread_ifgs, params) # locally save the mst_mat mst_file_process_n = join(params[cf.TMPDIR], 'mst_mat_{}.npy'.format(i)) np.save(file=mst_file_process_n, arr=mst_tile) for t in process_tiles: _save_mst_tile(t, t.index, preread_ifgs) log.debug('Finished mst calculation for process {}'.format(mpiops.rank)) mpiops.comm.barrier() def _ref_pixel_calc(ifg_paths: List[str], params: dict) -> Tuple[int, int]: """ Wrapper for reference pixel calculation """ lon = params[cf.REFX] lat = params[cf.REFY] ifg = Ifg(ifg_paths[0]) ifg.open(readonly=True) # assume all interferograms have same projection and will share the same transform transform = ifg.dataset.GetGeoTransform() if lon == -1 or lat == -1: log.info('Searching for best reference pixel location') half_patch_size, thresh, grid = refpixel.ref_pixel_setup(ifg_paths, params) process_grid = mpiops.array_split(grid) refpixel.save_ref_pixel_blocks(process_grid, half_patch_size, ifg_paths, params) mean_sds = refpixel._ref_pixel_mpi(process_grid, half_patch_size, ifg_paths, thresh, params) mean_sds = mpiops.comm.gather(mean_sds, root=0) if mpiops.rank == MASTER_PROCESS: mean_sds = np.hstack(mean_sds) refpixel_returned = mpiops.run_once(refpixel.find_min_mean, mean_sds, grid) if isinstance(refpixel_returned, ValueError): from pyrate.core.refpixel import RefPixelError raise RefPixelError( "Reference pixel calculation returned an all nan slice!\n" "Cannot continue downstream computation. Please change reference pixel algorithm used before " "continuing.") refy, refx = refpixel_returned # row first means first value is latitude log.info('Selected reference pixel coordinate (x, y): ({}, {})'.format(refx, refy)) lon, lat = refpixel.convert_pixel_value_to_geographic_coordinate(refx, refy, transform) log.info('Selected reference pixel coordinate (lon, lat): ({}, {})'.format(lon, lat)) else: log.info('Using reference pixel from config file (lon, lat): ({}, {})'.format(lon, lat)) log.warning("Ensure user supplied reference pixel values are in lon/lat") refx, refy = refpixel.convert_geographic_coordinate_to_pixel_value(lon, lat, transform) log.info('Converted reference pixel coordinate (x, y): ({}, {})'.format(refx, refy)) refpixel.update_refpix_metadata(ifg_paths, refx, refy, transform, params) log.debug("refpx, refpy: "+str(refx) + " " + str(refy)) ifg.close() return int(refx), int(refy) def _orb_fit_calc(multi_paths: List[MultiplePaths], params, preread_ifgs=None) -> None: """ MPI wrapper for orbital fit correction """ if not params[cf.ORBITAL_FIT]: log.info('Orbital correction not required!') print('Orbital correction not required!') return log.info('Calculating orbital correction') ifg_paths = [p.sampled_path for p in multi_paths] if preread_ifgs: # don't check except for mpi tests # perform some general error/sanity checks log.debug('Checking Orbital error correction status') if mpiops.run_once(shared.check_correction_status, ifg_paths, ifc.PYRATE_ORBITAL_ERROR): log.debug('Orbital error correction not required as all ifgs are already corrected!') return # return if True condition returned if params[cf.ORBITAL_FIT_METHOD] == 1: prcs_ifgs = mpiops.array_split(ifg_paths) orbital.remove_orbital_error(prcs_ifgs, params, preread_ifgs) else: # Here we do all the multilooking in one process, but in memory # can use multiple processes if we write data to disc during # remove_orbital_error step # A performance comparison should be made for saving multilooked # files on disc vs in memory single process multilooking if mpiops.rank == MASTER_PROCESS: headers = [find_header(p, params) for p in multi_paths] orbital.remove_orbital_error(ifg_paths, params, headers, preread_ifgs=preread_ifgs) mpiops.comm.barrier() log.debug('Finished Orbital error correction') def _ref_phase_estimation(ifg_paths, params, refpx, refpy): """ Wrapper for reference phase estimation. """ log.info("Calculating reference phase and correcting each interferogram") if len(ifg_paths) < 2: raise rpe.ReferencePhaseError( "At least two interferograms required for reference phase correction ({len_ifg_paths} " "provided).".format(len_ifg_paths=len(ifg_paths)) ) if mpiops.run_once(shared.check_correction_status, ifg_paths, ifc.PYRATE_REF_PHASE): log.debug('Finished reference phase correction') return if params[cf.REF_EST_METHOD] == 1: ref_phs = rpe.est_ref_phase_method1(ifg_paths, params) elif params[cf.REF_EST_METHOD] == 2: ref_phs = rpe.est_ref_phase_method2(ifg_paths, params, refpx, refpy) else: raise rpe.ReferencePhaseError("No such option, use '1' or '2'.") # Save reference phase numpy arrays to disk. ref_phs_file = os.path.join(params[cf.TMPDIR], 'ref_phs.npy') if mpiops.rank == MASTER_PROCESS: collected_ref_phs = np.zeros(len(ifg_paths), dtype=np.float64) process_indices = mpiops.array_split(range(len(ifg_paths))) collected_ref_phs[process_indices] = ref_phs for r in range(1, mpiops.size): process_indices = mpiops.array_split(range(len(ifg_paths)), r) this_process_ref_phs = np.zeros(shape=len(process_indices), dtype=np.float64) mpiops.comm.Recv(this_process_ref_phs, source=r, tag=r) collected_ref_phs[process_indices] = this_process_ref_phs np.save(file=ref_phs_file, arr=collected_ref_phs) else: mpiops.comm.Send(ref_phs, dest=MASTER_PROCESS, tag=mpiops.rank) log.debug('Finished reference phase correction') # Preserve old return value so tests don't break. if isinstance(ifg_paths[0], Ifg): ifgs = ifg_paths else: ifgs = [Ifg(ifg_path) for ifg_path in ifg_paths] mpiops.comm.barrier() return ref_phs, ifgs def main(params): """ Top level function to perform PyRate workflow on given interferograms :return: refpt: tuple of reference pixel x and y position :rtype: tuple :return: maxvar: array of maximum variance values of interferograms :rtype: ndarray :return: vcmt: Variance-covariance matrix array :rtype: ndarray """ mpi_vs_multiprocess_logging("process", params) ifg_paths = [] for ifg_path in params[cf.INTERFEROGRAM_FILES]: ifg_paths.append(ifg_path.sampled_path) rows, cols = params["rows"], params["cols"] return process_ifgs(ifg_paths, params, rows, cols) def process_ifgs(ifg_paths, params, rows, cols): """ Top level function to perform PyRate workflow on given interferograms :param list ifg_paths: List of interferogram paths :param dict params: Dictionary of configuration parameters :param int rows: Number of sub-tiles in y direction :param int cols: Number of sub-tiles in x direction :return: refpt: tuple of reference pixel x and y position :rtype: tuple :return: maxvar: array of maximum variance values of interferograms :rtype: ndarray :return: vcmt: Variance-covariance matrix array :rtype: ndarray """ if mpiops.size > 1: # turn of multiprocessing during mpi jobs params[cf.PARALLEL] = False outdir = params[cf.TMPDIR] if not os.path.exists(outdir): shared.mkdir_p(outdir) tiles = mpiops.run_once(get_tiles, ifg_paths[0], rows, cols) preread_ifgs = _create_ifg_dict(ifg_paths, params=params) # validate user supplied ref pixel refpixel.validate_supplied_lat_lon(params) refpx, refpy = _ref_pixel_calc(ifg_paths, params) # remove non ifg keys _ = [preread_ifgs.pop(k) for k in ['gt', 'epochlist', 'md', 'wkt']] multi_paths = params[cf.INTERFEROGRAM_FILES] _orb_fit_calc(multi_paths, params, preread_ifgs) _ref_phase_estimation(ifg_paths, params, refpx, refpy) shared.save_numpy_phase(ifg_paths, tiles, params) _mst_calc(ifg_paths, params, tiles, preread_ifgs) # spatio-temporal aps filter wrap_spatio_temporal_filter(ifg_paths, params, tiles, preread_ifgs) maxvar, vcmt = _maxvar_vcm_calc(ifg_paths, params, preread_ifgs) # save phase data tiles as numpy array for timeseries and stackrate calc shared.save_numpy_phase(ifg_paths, tiles, params) _timeseries_calc(ifg_paths, params, vcmt, tiles, preread_ifgs) _stack_calc(ifg_paths, params, vcmt, tiles, preread_ifgs) log.info('PyRate workflow completed') return (refpx, refpy), maxvar, vcmt def _stack_calc(ifg_paths, params, vcmt, tiles, preread_ifgs): """ MPI wrapper for stacking calculation """ process_tiles = mpiops.array_split(tiles) log.info('Calculating rate map from stacking') output_dir = params[cf.TMPDIR] for t in process_tiles: log.info('Stacking of tile {}'.format(t.index)) ifg_parts = [shared.IfgPart(p, t, preread_ifgs, params) for p in ifg_paths] mst_grid_n = np.load(os.path.join(output_dir, 'mst_mat_{}.npy'.format(t.index))) rate, error, samples = stack.stack_rate_array(ifg_parts, params, vcmt, mst_grid_n) # declare file names np.save(file=os.path.join(output_dir, 'stack_rate_{}.npy'.format(t.index)), arr=rate) np.save(file=os.path.join(output_dir, 'stack_error_{}.npy'.format(t.index)), arr=error) np.save(file=os.path.join(output_dir, 'stack_samples_{}.npy'.format(t.index)), arr=samples) mpiops.comm.barrier() log.debug("Finished stack rate calc!") def _maxvar_vcm_calc(ifg_paths, params, preread_ifgs): """ MPI wrapper for maxvar and vcmt computation """ log.info('Calculating the temporal variance-covariance matrix') process_indices = mpiops.array_split(range(len(ifg_paths))) def _get_r_dist(ifg_path): """ Get RDIst class object """ ifg = Ifg(ifg_path) ifg.open() r_dist = vcm_module.RDist(ifg)() ifg.close() return r_dist r_dist = mpiops.run_once(_get_r_dist, ifg_paths[0]) prcs_ifgs = mpiops.array_split(ifg_paths) process_maxvar = [] for n, i in enumerate(prcs_ifgs): log.debug('Calculating maxvar for {} of process ifgs {} of total {}'.format(n+1, len(prcs_ifgs), len(ifg_paths))) process_maxvar.append(vcm_module.cvd(i, params, r_dist, calc_alpha=True, write_vals=True, save_acg=True)[0]) if mpiops.rank == MASTER_PROCESS: maxvar = np.empty(len(ifg_paths), dtype=np.float64) maxvar[process_indices] = process_maxvar for i in range(1, mpiops.size): # pragma: no cover rank_indices = mpiops.array_split(range(len(ifg_paths)), i) this_process_ref_phs = np.empty(len(rank_indices), dtype=np.float64) mpiops.comm.Recv(this_process_ref_phs, source=i, tag=i) maxvar[rank_indices] = this_process_ref_phs else: # pragma: no cover maxvar = np.empty(len(ifg_paths), dtype=np.float64) mpiops.comm.Send(np.array(process_maxvar, dtype=np.float64), dest=MASTER_PROCESS, tag=mpiops.rank) mpiops.comm.barrier() maxvar = mpiops.comm.bcast(maxvar, root=0) vcmt = mpiops.run_once(vcm_module.get_vcmt, preread_ifgs, maxvar) log.debug("Finished maxvar and vcm calc!") return maxvar, vcmt def _timeseries_calc(ifg_paths, params, vcmt, tiles, preread_ifgs): """ MPI wrapper for time series calculation. """ if params[cf.TIME_SERIES_CAL] == 0: log.info('Time Series Calculation not required') return if params[cf.TIME_SERIES_METHOD] == 1: log.info('Calculating time series using Laplacian Smoothing method') elif params[cf.TIME_SERIES_METHOD] == 2: log.info('Calculating time series using SVD method') output_dir = params[cf.TMPDIR] total_tiles = len(tiles) process_tiles = mpiops.array_split(tiles) for t in process_tiles: log.debug("Calculating time series for tile "+str(t.index)+" out of "+str(total_tiles)) ifg_parts = [shared.IfgPart(p, t, preread_ifgs, params) for p in ifg_paths] mst_tile = np.load(os.path.join(output_dir, 'mst_mat_{}.npy'.format(t.index))) res = timeseries.time_series(ifg_parts, params, vcmt, mst_tile) tsincr, tscum, _ = res np.save(file=os.path.join(output_dir, 'tsincr_{}.npy'.format(t.index)), arr=tsincr) np.save(file=os.path.join(output_dir, 'tscuml_{}.npy'.format(t.index)), arr=tscum) mpiops.comm.barrier() log.debug("Finished timeseries calc!")
12,620
34d8ce519b2607d048455d0d15bbf226986a2c71
import tensorflow as tf def squared_loss(y, y_hat): """Squared loss function.""" y_hat = tf.reshape(y_hat, y.shape) return (y - y_hat) ** 2 / 2 def softmax(X): """Softmax implementation.""" X_exp = tf.math.exp(X) partition = tf.reduce_sum(X_exp, axis=1, keepdims=True) return X_exp / partition def cross_entropy(y, y_hat): """Cross entropy loss function.""" return -tf.math.log( tf.gather_nd(y_hat, tf.reshape(y, (-1, 1)), batch_dims=1) ) def softmax_cross_entropy(y, y_hat): """Softmax cross entropy loss function.""" loss = cross_entropy(y, softmax(y_hat)) filter_ = ~tf.math.is_finite(loss) replace_ = tf.zeros_like(loss) return tf.where(filter_, replace_, loss)
12,621
56ad62c76fb3c3168cd50f8c477ae4ef82d9fe7b
#!/usr/bin/env python2.5 # # Copyright 2011 the Melange authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """The role conversion updates are defined in this module. """ __authors__ = [ '"Daniel Hans" <daniel.m.hans@gmail.com>', ] import gae_django from google.appengine.ext import db from google.appengine.ext import deferred from google.appengine.runtime import DeadlineExceededError from django import http from soc.models.host import Host from soc.models.linkable import Linkable from soc.models.mentor import Mentor from soc.models.org_admin import OrgAdmin from soc.models.role import StudentInfo from soc.modules.gsoc.models.mentor import GSoCMentor from soc.modules.gsoc.models.organization import GSoCOrganization from soc.modules.gsoc.models.org_admin import GSoCOrgAdmin from soc.modules.gsoc.models.profile import GSoCProfile from soc.modules.gsoc.models.program import GSoCProgram from soc.modules.gsoc.models.student import GSoCStudent from soc.modules.gsoc.models.student_project import StudentProject from soc.modules.gsoc.models.student_proposal import StudentProposal ROLE_MODELS = [GSoCMentor, GSoCOrgAdmin, GSoCStudent] POPULATED_PROFILE_PROPS = set( GSoCProfile.properties()) - set(Linkable.properties()) POPULATED_STUDENT_PROPS = StudentInfo.properties() def getDjangoURLPatterns(): """Returns the URL patterns for the tasks in this module. """ patterns = [ (r'^tasks/role_conversion/update_references', 'soc.tasks.updates.role_conversion.updateReferences'), (r'^tasks/role_conversion/update_project_references', 'soc.tasks.updates.role_conversion.updateStudentProjectReferences'), (r'^tasks/role_conversion/update_proposal_references', 'soc.tasks.updates.role_conversion.updateStudentProposalReferences'), (r'^tasks/role_conversion/update_roles$', 'soc.tasks.updates.role_conversion.updateRoles'), (r'^tasks/role_conversion/update_mentors$', 'soc.tasks.updates.role_conversion.updateMentors'), (r'^tasks/role_conversion/update_org_admins$', 'soc.tasks.updates.role_conversion.updateOrgAdmins'), (r'^tasks/role_conversion/update_students$', 'soc.tasks.updates.role_conversion.updateStudents'), (r'^tasks/role_conversion/update_hosts$', 'soc.tasks.updates.role_conversion.updateHosts'), ] return patterns class HostUpdater(object): """Class which is responsible for updating Host entities. """ def run(self, batch_size=25): """Starts the updater. """ self._process(None, batch_size) def _process(self, start_key, batch_size): """Retrieves Host entities and updates them. """ query = Host.all() if start_key: query.filter('__key__ > ', start_key) try: entities = query.fetch(batch_size) if not entities: # all entities has already been processed return for entity in entities: sponsor = entity.scope host_for = entity.user.host_for if not host_for: host_for = [] user = entity.user if sponsor.key() not in host_for: host_for.append(sponsor.key()) user.host_for = host_for db.put(user) # process the next batch of entities start_key = entities[-1].key() deferred.defer(self._process, start_key, batch_size) except DeadlineExceededError: # here we should probably be more careful deferred.defer(self._process, start_key, batch_size) class RoleUpdater(object): """Class which is responsible for updating the entities. """ def __init__(self, model, profile_model, program_field, role_field=None): self.MODEL = model self.PROFILE_MODEL = profile_model self.PROGRAM_FIELD = program_field self.ROLE_FIELD = role_field def run(self, batch_size=25): """Starts the updater. """ self._process(None, batch_size) def _processEntity(self, entity): program = getattr(entity, self.PROGRAM_FIELD) user = entity.user # try to find an existing Profile entity or create a new one key_name = program.key().name() + '/' + user.link_id properties = { 'link_id': entity.link_id, 'scope_path': program.key().name(), 'scope': program, 'parent': user, } for prop in POPULATED_PROFILE_PROPS: properties[prop] = getattr(entity, prop) profile = self.PROFILE_MODEL.get_or_insert( key_name=key_name, **properties) # do not update anything if the role is already in the profile if profile.student_info and self.MODEL == GSoCStudent: return elif self.ROLE_FIELD: if entity.scope.key() in getattr(profile, self.ROLE_FIELD): return to_put = [profile] # a non-invalid role is found, we should re-populate the profile if profile.status == 'invalid' and entity.status != 'invalid': for prop_name in entity.properties(): value = getattr(entity, prop_name) setattr(profile, prop_name, value) if profile.student_info: profile.student_info = None if self.ROLE_FIELD: # the role is either Mentor or OrgAdmin getattr(profile, self.ROLE_FIELD).append(entity.scope.key()) else: # the role is certainly Student; we have to create a new StudentInfo properties = {} for prop in POPULATED_STUDENT_PROPS: properties[prop] = getattr(entity, prop) key_name = profile.key().name() student_info = StudentInfo(key_name=key_name, parent=profile, **properties) profile.student_info = student_info to_put.append(student_info) db.run_in_transaction(db.put, to_put) def _process(self, start_key, batch_size): """Retrieves entities and creates or updates a corresponding Profile entity. """ query = self.MODEL.all() if start_key: query.filter('__key__ > ', start_key) try: entities = query.fetch(batch_size) if not entities: # all entities has already been processed return for entity in entities: try: self._processEntity(entity) except db.Error, e: import logging logging.exception(e) logging.error("Broke on %s: %s" % (entity.key().name(), self.MODEL)) # process the next batch of entities start_key = entities[-1].key() deferred.defer(self._process, start_key, batch_size) except DeadlineExceededError: # here we should probably be more careful deferred.defer(self._process, start_key, batch_size) def updateHosts(request): """Starts a task which updates Host entities. """ updater = HostUpdater() updater.run() return http.HttpResponse("Ok") def updateRole(role_name): """Starts a task which updates a particular role. """ if role_name == 'gsoc_mentor': updater = RoleUpdater(GSoCMentor, GSoCProfile, 'program', 'mentor_for') elif role_name == 'gsoc_org_admin': updater = RoleUpdater( GSoCOrgAdmin, GSoCProfile, 'program', 'org_admin_for') elif role_name == 'gsoc_student': updater = RoleUpdater(GSoCStudent, GSoCProfile, 'scope') updater.run() return http.HttpResponse("Ok") def updateRoles(request): """Starts a bunch of iterative tasks which update particular roles. In order to prevent issues with concurrent access to entities, we set ETA so that each role is processed in separation. """ # update org admins #updateRole('gsoc_org_admin') # update mentors #updateRole('gsoc_mentor') # update students # we can assume that students cannot have any other roles, so we do not # need to set ETA updateRole('gsoc_student') def updateMentors(request): """Starts an iterative task which update mentors. """ return updateRole('gsoc_mentor') def updateOrgAdmins(request): """Starts an iterative task which update org admins. """ return updateRole('gsoc_org_admin') def updateStudents(request): """Starts an iterative task which update students. """ return updateRole('gsoc_student') def _getProfileForRole(entity, profile_model): """Returns GSoCProfile or GCIProfile which corresponds to the specified entity. """ if isinstance(entity, profile_model): return entity if isinstance(entity, OrgAdmin) or isinstance(entity, Mentor): key_name = entity.program.key().name() + '/' + entity.user.key().name() else: key_name = entity.key().name() parent = entity.user return profile_model.get_by_key_name(key_name, parent=parent) def _getProfileKeyForRoleKey(key, profile_model): """Returns Key instance of the Profile which corresponds to the Role which is represented by the specified Key. """ entity = db.get(key) profile = _getProfileForRole(entity, profile_model) return profile.key() class ReferenceUpdater(object): """Class which is responsible for updating references to Profile in the specified model. """ def __init__(self, model, profile_model, fields_to_update, lists_to_update=[]): self.MODEL = model self.PROFILE_MODEL = profile_model self.FIELDS_TO_UPDATE = fields_to_update self.LISTS_TO_UPDATE = lists_to_update def run(self, batch_size=25): """Starts the updater. """ self._process(None, batch_size) def _process(self, start_key, batch_size): """Iterates through the entities and updates the references. """ query = self.MODEL.all() if start_key: query.filter('__key__ > ', start_key) try: entities = query.fetch(batch_size) if not entities: # all entities has already been processed return for entity in entities: for field in self.FIELDS_TO_UPDATE: old_reference = getattr(entity, field) if not old_reference: continue # check if the field has not been updated if isinstance(old_reference, self.PROFILE_MODEL): continue profile = _getProfileForRole(old_reference, self.PROFILE_MODEL) setattr(entity, field, profile) for list_property in self.LISTS_TO_UPDATE: l = getattr(entity, list_property) new_l = [] for key in l: new_l.append(_getProfileKeyForRoleKey(key, self.PROFILE_MODEL)) setattr(entity, list_property, new_l) db.put(entities) start_key = entities[-1].key() deferred.defer(self._process, start_key, batch_size) except DeadlineExceededError: # here we should probably be more careful deferred.defer(self._process, start_key, batch_size) def updateReferencesForModel(model): """Starts a task which updates references for a particular model. """ if model == 'student_proposal': updater = ReferenceUpdater(StudentProposal, GSoCProfile, ['scope', 'mentor'], ['possible_mentors']) elif model == 'student_project': updater = ReferenceUpdater(StudentProject, GSoCProfile, ['mentor', 'student'], ['additional_mentors']) updater.run() return http.HttpResponse("Ok") def updateStudentProjectReferences(request): """Starts a bunch of iterative tasks which update references in StudentProjects. """ return updateReferencesForModel('student_project') def updateStudentProposalReferences(request): """Starts a bunch of iterative tasks which update references in StudentProposals. """ return updateReferencesForModel('student_proposal') def updateReferences(request): """Starts a bunch of iterative tasks which update references to various roles. """ # updates student proposals updateReferencesForModel('student_proposal') # updates student projects updateReferencesForModel('student_project') return http.HttpResponse("Ok")
12,622
35fec210f4fcfe7634313aaa5cc29e723c49f776
for _ in range(int(input())): x,y = map(int,input().split()) minnum =min(x,y) n =0 for i in range(1,minnum+1): if x%i ==0 and y %i ==0 : n =i print(int(x*y/n))
12,623
6d7dcf7d46456e6ff7f8e75ee958e38ccc0d4a4f
from numpy import * # Performing Gradient Descent def gradient_descent(b_current, m_current, points, learning_rate): b_gradient = 0 m_gradient = 0 N = float(len(points)) for i in range(0, len(points)): x = points[i, 0] y = points[i, 1] b_gradient += -(2/N) * (y - (m_current * x + b_current)) m_gradient += -(2/N) * x * (y - (m_current * x + b_current)) new_b = b_current - (learning_rate * b_gradient) new_m = m_current - (learning_rate * m_gradient) return [new_b, new_m] # Computing Sum of Square Error def ssError(b, m, points): totalError = 0 for i in range(0, len(points)): x = points[i, 0] y = points[i, 1] totalError += (y - (m * x + b)) ** 2 return totalError / float(len(points)) def main(): # Read x and y values from the dataset and store them as an array in points. points = genfromtxt("data.csv", delimiter=",") # Hyperparameter (How fast our model learns) learning_rate = 0.0001 # y = mx + b b = 0 m = 0 num_iterations = 1000 print("Before Gradient Descent: b: {}, m: {}, Error: {}".format(b, m, ssError(b, m, points))) # Iteratively calculating new slope and y-intercepts for each row in the dataset. for i in range(num_iterations): b, m = gradient_descent(b, m, array(points), learning_rate) print("After Gradient Descent: b: {}, m: {}, Error: {}".format(b, m, ssError(b, m, points))) if __name__ == "__main__": main()
12,624
9517288d5da47e2aeb02964a20032e6d98a898f7
""" lipydomics/identification/__init__.py Dylan H. Ross 2019/10/04 description: Module for performing identification of individual lipid features """ from sqlite3 import connect import os import pickle from lipydomics.identification.id_levels import ( id_feat_any, id_feat_meas_mz_rt_ccs, id_feat_pred_mz_rt_ccs, id_feat_meas_mz_rt, id_feat_pred_mz_rt, id_feat_meas_mz_ccs, id_feat_pred_mz_ccs, id_feat_meas_mz, id_feat_pred_mz, id_feat_custom ) from lipydomics.identification.encoder_params import ( ccs_lipid_classes, ccs_ms_adducts, ccs_fa_mods, rt_lipid_classes, rt_fa_mods ) from lipydomics.identification.train_lipid_ccs_pred import ( prep_encoders as ccs_prep_encoders, featurize as ccs_featurize ) from lipydomics.identification.mz_generation import get_lipid_mz from lipydomics.identification.train_lipid_rt_pred import ( prep_encoders as rt_prep_encoders, featurize as rt_featurize ) def add_feature_ids(dataset, tol, level='any', norm='l2', mz_tol_type='Da', db_version_tstamp=None, use_rt=True): """ add_feature_ids description: Goes through the list of features (mz, rt, ccs) in Dataset.labels and provides an identification for each. If a feature is unable to be identified using the specified criteria, then it is given a generic fixed-width feature name based on mz, rt, and CCS: 'UNK_{:09.4f}_{:05.2f}_{:06.2f}'.format(mz, rt, ccs) and the associated id_level is '' The method for making identifications is specified by the `level` param: (low) 'pred_mz' -- simple matching based on predicted m/z 'meas_mz' -- simple matching based on measured m/z 'pred_mz_ccs' -- match on predicted m/z and CCS\ 'meas_mz_ccs' -- match on measured m/z and CCS 'pred_mz_rt' -- match on predicted m/z and rt 'meas_mz_rt' -- match on measured m/z and rt 'pred_mz_rt_ccs' -- match on predicted m/z, rt, and CCS 'meas_mz_rt_ccs' -- match on m/z, rt, and CCS (high) 'any' -- start at the highest level, then work downward The `level` param can also be a list of specific levels, which will be attempted in the order provided. The identifications are stored in `Dataset.feat_ids` and the associated identification levels are stored in `Dataset.feat_id_levels` For each feature, the identification is a list of strings with all possible identifications (e.g. ['PC(40:3)_[M+H]+', 'PE(42:2)_[M+H]+', 'PC(p36:1)_[M+Na]+']). The corresponding identification level is always a single string (e.g. 'meas_mass_rt_ccs'). The identification score is a list of floats corresponding to scores for each of the possible identifications. The list is empty in the case of a failure to identify a feature. * whenever multiple identifications are returned, always sort in order of descending scores * The same tolerances are used for all levels of identification, and CCS tolerance is a percentage NOT an absolute number Potential identifications are automatically restricted on the basis of electrospray ionization mode (taken from Dataset.esi_mode) if it is set to 'pos' or 'neg' > If a retention time calibration is available, use calibrated retention time for feature identification < * if identifications have already been made, subsequent calls to this function will override previous results * parameters: dataset (lipydomics.data.Dataset) -- lipidomics dataset tol (list(float, float, float)) -- tolerance for m/z, rt, and CCS, respectively [level (str or list(str))] -- specify a single level of confidence for identifications, a list of confidence levels, or 'any' to use a tiered approach [optional, default='any'] [norm (str)] -- specify l1 or l2 norm for computing scores [optional, default='l2'] [mz_tol_type (str)] -- specify whether to use Da or ppm for m/z search tolerance, 'Da' or 'ppm' [optional, default='Da'] [db_version_tstamp (str or None)] -- use a specific time-stamped version of the lipids database instead of the default (most recent build) [optional, default=None] [use_rt (bool)] -- whether to use identification levels that involve retention time, ignored unless used with the 'any' identification level [optional, default=True] """ if level not in ['pred_mz', 'pred_mz_ccs', 'pred_mz_rt_ccs', 'meas_mz_ccs', 'meas_mz_rt_ccs', 'any', 'meas_mz', 'meas_mz_rt', 'pred_mz_rt'] and type(level) is not list: m = 'add_feature_ids: identification level "{}" not recognized' raise ValueError(m.format(level)) if db_version_tstamp: # option to use a time-stamped version from the builds directory db_path = os.path.join(os.path.dirname(__file__), 'builds/lipids_{}.db'.format(db_version_tstamp)) else: db_path = os.path.join(os.path.dirname(__file__), 'lipids.db') # make sure we can find the database if not os.path.isfile(db_path): m = 'add_feature_ids: unable to find lipid database ({})'.format(db_path) raise RuntimeError(m) if mz_tol_type not in ['Da', 'ppm']: m = 'add_feature_ids: mz_tol_type must be either "Da" or "ppm" (was: "{}")'.format(mz_tol_type) raise ValueError(m) # available identification functions id_funcs = { 'any': id_feat_any, 'meas_mz_rt_ccs': id_feat_meas_mz_rt_ccs, 'pred_mz_rt_ccs': id_feat_pred_mz_rt_ccs, 'meas_mz_rt': id_feat_meas_mz_rt, 'pred_mz_rt': id_feat_pred_mz_rt, 'meas_mz_ccs': id_feat_meas_mz_ccs, 'pred_mz_ccs': id_feat_pred_mz_ccs, 'meas_mz': id_feat_meas_mz, 'pred_mz': id_feat_pred_mz } # ESI mode from Dataset esi = dataset.esi_mode # initialize connection to lipids.db (stored within the lipydomics package) con = connect(db_path) cur = con.cursor() feat_ids, feat_id_levels, feat_id_scores = [], [], [] for mz, rt, ccs in dataset.labels: mzt, rtt, ccst = tol # use calibrated retention time if a retention time calibration has been set up rt = dataset.rt_calibration.get_calibrated_rt(rt) if dataset.rt_calibration is not None else rt # convert the CCS tolerance into an absolute from the percentage ccst = (ccst / 100.) * ccs # m/z tolerance may be either Da or ppm, if ppm calculate the equivalent Da if mz_tol_type == 'ppm': mzt = mzt * mz / 1000000. tol2 = [mzt, rtt, ccst] # try to get identification(s) if type(level) is list: # use custom list of identification levels feat_id, feat_id_level, feat_id_score = id_feat_custom(level, cur, mz, rt, ccs, *tol2, esi, norm=norm) elif level == 'any' and not use_rt: # use any identification level that does not include retention time feat_id, feat_id_level, feat_id_score = id_funcs['any'](cur, mz, rt, ccs, *tol2, esi, norm=norm, use_rt=False) else: feat_id, feat_id_level, feat_id_score = id_funcs[level](cur, mz, rt, ccs, *tol2, esi, norm=norm) if feat_id: if len(feat_id) > 1: # sort feat_id and feat_id_score in order of descending score feat_id, feat_id_score = [list(x) for x in zip(*sorted(zip(feat_id, feat_id_score), key=lambda pair: pair[1], reverse=True))] feat_ids.append(feat_id) feat_id_levels.append(feat_id_level) feat_id_scores.append(feat_id_score) else: # fallback identification feat_id = 'UNK_{:09.4f}_{:05.2f}_{:06.2f}'.format(mz, rt, ccs) feat_ids.append(feat_id) feat_id_levels.append('') feat_id_scores.append([]) # apply the identifications (and identification levels) to the Dataset dataset.feat_ids = feat_ids dataset.feat_id_levels = feat_id_levels dataset.feat_id_scores = feat_id_scores # close the database connection con.close() def predict_ccs(lipid_class, lipid_nc, lipid_nu, adduct, mz='generate', fa_mod=None, ignore_encoding_errors=False): """ predict_ccs description: Predicts a predicted CCS of a lipid as defined by lipid class, fatty acid sum composition and MS adduct. If any of the parameters are not specifically encoded (i.e. not present in the training data) a ValueError is raised. This behavior can be overridden by the ignore_encoding_errors flag in order to get the prediction to be made regardless, although such predictions are subject to a high degree of error. parameters: lipid_class (str) -- lipid class lipid_nc (int) -- sum composition, number of fatty acid carbons lipid_nu (int) -- sum composition, number of fatty acid unsaturations adduct (str) -- MS adduct [mz (str or float)] -- m/z of MS adduct or 'generate' to generate an m/z value automatically using LipidMass [optional, default='generate'] [fa_mod (None or str)] -- fatty acid modifier (e.g. 'p', 'o') [optional, default=None] [ignore_encoding_errors (bool)] -- generate a prediction even if one or more of the input parameters are not encodable [optional, default=False] returns: (float) -- predicted CCS """ # first check whether the lipid class, MS adduct and FA mod are encodable lc_ok = lipid_class in ccs_lipid_classes ad_ok = adduct in ccs_ms_adducts fm_ok = fa_mod is None or fa_mod in ccs_fa_mods all_ok = lc_ok and ad_ok and fm_ok if not (all_ok or ignore_encoding_errors): # either all of the checks were good or we are ignoring errors m = '' if not lc_ok: m += 'lipid class "{}" not encodable '.format(lipid_class) if not ad_ok: m += 'MS adduct "{}" not encodable '.format(adduct) if not fm_ok: m += 'FA modifier "{}" not encodable '.format(fa_mod) raise ValueError('predict_ccs: {}'.format(m)) # try to generate an m/z value if one wasn't provided if mz == 'generate': try: mz = get_lipid_mz(lipid_class, lipid_nc, lipid_nu, adduct, fa_mod=fa_mod) except ValueError as ve: m = 'predict_ccs: unable to generate m/z for lipid: "{}({}{}:{})_{}" ({})' m = m.format(lipid_class, '' if fa_mod is None else fa_mod, lipid_nc, lipid_nu, adduct, ve) raise ValueError(m) # prepare encoders c_encoder, f_encoder, a_encoder = ccs_prep_encoders() # load the predictive model and the scaler this_dir = os.path.dirname(__file__) model_path = os.path.join(this_dir, 'lipid_ccs_pred.pickle') scaler_path = os.path.join(this_dir, 'lipid_ccs_scale.pickle') with open(model_path, 'rb') as pf1, open(scaler_path, 'rb') as pf2: model = pickle.load(pf1) scaler = pickle.load(pf2) # featurize, scale, and predict CCS x = [ccs_featurize(lipid_class, lipid_nc, lipid_nu, fa_mod, adduct, mz, c_encoder, f_encoder, a_encoder)] return model.predict(scaler.transform(x))[0] def predict_rt(lipid_class, lipid_nc, lipid_nu, fa_mod=None, ignore_encoding_errors=False): """ predict_ccs description: Predicts a predicted HILIC retention time of a lipid as defined by lipid class and fatty acid sum composition. If any of the parameters are not specifically encoded (i.e. not present in the training data) a ValueError is raised. This behavior can be overridden by the ignore_encoding_errors flag in order to get the prediction to be made regardless, although such predictions are subject to a high degree of error. parameters: lipid_class (str) -- lipid class lipid_nc (int) -- sum composition, number of fatty acid carbons lipid_nu (int) -- sum composition, number of fatty acid unsaturations [fa_mod (None or str)] -- fatty acid modifier (e.g. 'p', 'o') [optional, default=None] [ignore_encoding_errors (bool)] -- generate a prediction even if one or more of the input parameters are not encodable [optional, default=False] returns: (float) -- predicted HILIC retention time """ # first check whether the lipid class and FA mod are encodable lc_ok = lipid_class in ccs_lipid_classes fm_ok = fa_mod is None or fa_mod in ccs_fa_mods all_ok = lc_ok and fm_ok if not (all_ok or ignore_encoding_errors): # either all of the checks were good or we are ignoring errors m = '' if not lc_ok: m += 'lipid class "{}" not encodable '.format(lipid_class) if not fm_ok: m += 'FA modifier "{}" not encodable '.format(fa_mod) raise ValueError('predict_rt: {}'.format(m)) # prepare encoders c_encoder, f_encoder = rt_prep_encoders() # load the predictive model and the scaler this_dir = os.path.dirname(__file__) model_path = os.path.join(this_dir, 'lipid_rt_pred.pickle') scaler_path = os.path.join(this_dir, 'lipid_rt_scale.pickle') with open(model_path, 'rb') as pf1, open(scaler_path, 'rb') as pf2: model = pickle.load(pf1) scaler = pickle.load(pf2) # featurize, scale, and predict RT x = [rt_featurize(lipid_class, lipid_nc, lipid_nu, fa_mod, c_encoder, f_encoder)] return model.predict(scaler.transform(x))[0] def remove_potential_nonlipids(dataset, bounds=(10., -10.)): """ remove_potential_nonlipids description: Goes through the list of features that have been identified at any level that DOES NOT include CCS (e.g. pred_mz_rt) and removes annotations if the MEASURED CCS of the feature is outside of the specified bounds (in percent, default is +/- 10%) relative to the CCS expected given its MEASURED M/Z. The expected CCS is determined by global fits of the CCS vs. m/z data in the measured database (separate fits computed for positive/negative mode data). Requires that add_feature_ids(...) has been used to identify lipid features in this dataset already. * the default fits are only relevant for singly-charged species in positive or negative ESI mode, if you expect to have doubly-charged species in your dataset consider expanding upper-bound accordingly * parameters: dataset (lipydomics.data.Dataset) -- lipidomics dataset [bounds (tuple(float))] -- upper and lower bounds for filtering bad CCS values (in percent), default is +/- 10% [optional, default=(10., -10.)] returns: (int) -- number of identifications removed """ # only works with 'pos' or 'neg' ESI mode specified if dataset.esi_mode not in ['neg', 'pos']: m = 'remove_potential_nonlipids: esi_mode must be "pos" or "neg"' raise ValueError(m) # make sure identification has been performed before if dataset.feat_ids is None: m = 'remove_potential_nonlipids: lipid identification (add_feature_ids) must be performed first' raise RuntimeError(m) # power function: CCS = A * m/z ^ B + C # this packs the already-fit parameters into a power function with a single paramter (mz) def get_pf(A, B, C): def f(x): return A * x ** B + C return f # pre-fit power function parameters for positive and negative modes params = {'pos': [5.41617109, 0.58680119, 21.89186606], 'neg': [1.50301879, 0.73943564, 72.3738431]} # get the function with params pf = get_pf(*params[dataset.esi_mode]) # convert the bounds from percentages to multiplicative factors (e.g. +10% -> 1.1, -10% -> 0.9) upper = (100. + bounds[0]) / 100. lower = (100. + bounds[1]) / 100. # iterate through all of the identifications n_removed = 0 for i in range(dataset.n_features): if dataset.feat_id_levels[i] in ['pred_mz', 'meas_mz', 'meas_mz_rt', 'pred_mz_rt']: mz, rt, ccs = dataset.labels[i] fit_ccs = pf(mz) if ccs > upper * fit_ccs or ccs < lower * fit_ccs: # measured CCS is outside of bounds, remove the identification dataset.feat_ids[i] = 'UNK_{:09.4f}_{:05.2f}_{:06.2f}'.format(mz, rt, ccs) dataset.feat_id_levels[i] = '' dataset.feat_id_scores[i] = [] n_removed += 1 # return how many identifications were removed return n_removed
12,625
9ac8d22a4bbf9fe3591eb78d71c3c8449508a3ec
n=int(input()) hennsai=100000 for i in range(n): hennsai=int(hennsai*1.05) if hennsai % 1000>0: hennsai=(hennsai - hennsai % 1000) + 1000 print(hennsai)
12,626
361db53604e8fb88c8d56edfc386bad588f1e253
/Users/eva/anaconda3/lib/python3.6/re.py
12,627
89151d2909fbb4fc0ffd878106e70f435b868286
#!/usr/bin/env python import os import glob from time import sleep as sleep import gzip import subprocess import re import argparse def main(): print ("Parsing options") options = parse_options() sleep(1) print(" :::::\n\nMerging Arbitrary R1 and R2 coverage files") cov_files = glob.glob("G*NOM*.cov.gz") # print (cov_files) cov_files.sort() print (cov_files) print(" :::::\n\n") sleep(1) # To process a set of files, we need to take 2 files while len(cov_files) >= 2: file1 = cov_files.pop(0) file2 = cov_files.pop(0) process_set_of_files(file1,file2,options) def parse_options(): parser = argparse.ArgumentParser(description="Run a command on the cluster") parser.add_argument("--dryrun", help="Don't run anything, just say what you would do", action="store_true") options=parser.parse_args() return options def process_set_of_files(file1,file2,options): # print (f"processing the following set of files: {file1} and {file2}") # GSM4056543_32cell_embryoMixed_25_NOMe-seq_R1_GRCm38_bismark_bt2.deduplicated.bismark.cov.gz pattern = re.compile("(.*)_NOMe-seq") m = pattern.match(file1) if m: pass # print('Match found: ', m.group(1)) else: pass print('No match') # check if it is also present for file2 #print (file2) # print (m.group(1)) basename = m.group(1) if file2.startswith(f"{m.group(1)}"): # print (f"Yes, it does!") pass else: print ("Nah...") sys.exit() print ("Ready to launch merging process for:") print (basename) print (file1) print (file2) print (" :::::: \n") command = f"/bi/home/fkrueger/VersionControl/stonecluster/bin/ssub.py -o {basename}.log --email --mem 150G /bi/scratch/scripts/headstone/merge_coverage_files_ARGV.py" # print (f"Command:\n{command}") arguments = f"--basename {basename} {file1} {file2}" # print (f"Arguments:\n{arguments}") full_command = f"{command} {arguments}" if options.dryrun: print("Dry-Run Command\n===============") print(f"{full_command}\n\n") # bismark --pbat --genome /bi/scratch/Genomes/Human/GRCh38_dbSNP_N-masked/dbSNP_N-masked/ -1 test_R1.fq.gz -2 test_R2.fq.gz else: # This works, but shell=True may be a security issue. Instead, use ['list','of','arguments'] # for using a user given input, see the fix_spaces function below. The way of using a String with shell=True # does not require this fixing right now subprocess.run(f"{full_command}",shell=True, check = True) # Also works with an os.system() command, but this is now deprecated # os.system(full_command) def fix_spaces(): # If the user put an option with spaces in it in their command # then this will be included as a single argument to ARGV, but # we won't be able to spot it later. We need to add in quotes # if we find this. for i in range(len(sys.argv)): if (" " in sys.argv[i]): sys.argv[i] = '"'+sys.argv[i]+'"' # print ("All done, enjoy the merged coverage file!\n") if __name__ == "__main__": main()
12,628
d7fee559587fd6ae14c9892c41031861e79077d9
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.']), })
12,629
8d117eee3cb766094bead5714c9bec8fd29167d0
""" " HACK to make this file source'able by vim as well as importable by Python: pyx import sys; sys.modules.pop("pythonhelper", None); import pythonhelper finish """ # import of required modules {{{ import re import sys import time import vim # }}} # global dictionaries of tags and their line numbers, keys are buffer numbers {{{ TAGS = {} TAGLINENUMBERS = {} BUFFERTICKS = {} # }}} # class PythonTag() {{{ class PythonTag(object): # DOC {{{ """A simple storage class representing a python tag. """ # }}} # STATIC VARIABLES {{{ # possible tag types {{{ TT_CLASS = 0 TT_METHOD = 1 TT_FUNCTION = 2 # }}} # tag type names {{{ TAG_TYPE_NAME = { TT_CLASS : "class", TT_METHOD : "method", TT_FUNCTION : "function", } # }}} # }}} # METHODS {{{ def __init__(self, type, name, fullName, lineNumber, indentLevel): # DOC {{{ """Initializes instances of PythonTag(). Parameters type -- tag type name -- short tag name fullName -- full tag name (in dotted notation) lineNumber -- line number on which the tag starts indentLevel -- indentation level of the tag """ # }}} # CODE {{{ # remember the settings {{{ self.type = type self.name = name self.fullName = fullName self.lineNumber = lineNumber self.indentLevel = indentLevel # }}} # }}} def __str__(self): # DOC {{{ """Returns a string representation of the tag. """ # }}} # CODE {{{ return "%s (%s) [%s, %u, %u]" % (self.name, PythonTag.TAG_TYPE_NAME[self.type], self.fullName, self.lineNumber, self.indentLevel,) # }}} __repr__ = __str__ # }}} # }}} # class SimplePythonTagsParser() {{{ class SimplePythonTagsParser(object): # DOC {{{ """Provides a simple python tag parser. """ # }}} # STATIC VARIABLES {{{ # how many chars a single tab represents (visually) TABSIZE = 8 # regexp used to extract indentation and strip comments COMMENTS_INDENT_RE = re.compile('([ \t]*)([^\n#]*).*') # regexp used to extract a class name CLASS_RE = re.compile('class[ \t]+([^(: \t]+).*') # regexp used to extract a method or function name METHOD_RE = re.compile('(?:async\s*)?def[ \t]+([^( \t]+).*') # }}} # METHODS {{{ def __init__(self, source): # DOC {{{ """Initializes instances of SimplePythonTagsParser(). Parameters source -- source for which the tags will be generated. It must provide callable method readline (i.e. as file objects do). """ # }}} # CODE {{{ # make sure source has readline() method {{{ if ((hasattr(source, 'readline') == 0) or (callable(source.readline) == 0)): raise AttributeError("Source must have callable readline method.") # }}} # remember what the source is self.source = source # }}} def getTags(self): # DOC {{{ """Determines all the tags for the buffer. Returns a tuple in format (tagLineNumbers, tags,). """ # }}} # CODE {{{ # initialize the resulting list of the tag line numbers and the tag information {{{ tagLineNumbers = [] tags = {} # }}} # initalize local auxiliary variables {{{ tagsStack = [] lineNumber = 0 # }}} # go through all the lines in the source and localize all python tags in it {{{ while 1: # get next line line = self.source.readline() # finish if this is the end of the source {{{ if (line == ''): break # }}} # increase the line number lineNumber += 1 # extract the line indentation characters and its content {{{ lineMatch = self.COMMENTS_INDENT_RE.match(line) lineContent = lineMatch.group(2) # }}} # handle the class tag {{{ # match for the class tag tagMatch = self.CLASS_RE.match(lineContent) # if the class tag has been found, store some information on it {{{ if (tagMatch): currentTag = self.getPythonTag(tagsStack, lineNumber, lineMatch.group(1), tagMatch.group(1), self.tagClassTypeDecidingMethod) tagLineNumbers.append(lineNumber) tags[lineNumber] = currentTag # }}} # }}} # handle the function/method/none tag {{{ else: # match for the method/function tag tagMatch = self.METHOD_RE.match(lineContent) # if the method/function tag has been found, store some information on it {{{ if (tagMatch): currentTag = self.getPythonTag(tagsStack, lineNumber, lineMatch.group(1), tagMatch.group(1), self.tagFunctionTypeDecidingMethod) tagLineNumbers.append(lineNumber) tags[lineNumber] = currentTag # }}} # }}} # }}} # return the tags data for the source return (tagLineNumbers, tags,) # }}} def getParentTag(self, tagsStack): # DOC {{{ """Returns the parent/enclosing tag (instance of PythonTag()) from the specified tag list. If no such parent tag exists, returns None. Parameters tagsStack -- list (stack) of currently open PythonTag() instances """ # }}} # CODE {{{ # determine the parent tag {{{ if (len(tagsStack)): parentTag = tagsStack[-1] else: parentTag = None # }}} # return the tag return parentTag # }}} def computeIndentationLevel(indentChars): # DOC {{{ """Computes the indentation level from the specified string. Parameters indentChars -- white space before any other character on line """ # }}} # CODE {{{ # initialize the indentation level indentLevel = 0 # compute the indentation level (expand tabs) {{{ for char in indentChars: if (char == '\t'): indentLevel += SimplePythonTagsParser.TABSIZE else: indentLevel += 1 # }}} # return the computed indentation level return indentLevel # }}} computeIndentationLevel = staticmethod(computeIndentationLevel) def getPythonTag(self, tagsStack, lineNumber, indentChars, tagName, tagTypeDecidingMethod): # DOC {{{ """Returns instance of PythonTag() based on the specified data. Parameters tagsStack -- list (stack) of tags currently active. Note: Modified in this method! lineNumber -- current line number indentChars -- characters making up the indentation level of the current tag tagName -- short name of the current tag tagTypeDecidingMethod -- reference to method that is called to determine the type of the current tag """ # }}} # CODE {{{ # compute the indentation level indentLevel = self.computeIndentationLevel(indentChars) # get the parent tag parentTag = self.getParentTag(tagsStack) # handle an enclosed tag {{{ while (parentTag): # if the indent level of the parent tag is greater than of the current tag, use parent tag of the parent tag {{{ if (parentTag.indentLevel >= indentLevel): del tagsStack[-1] # }}} # otherwise we have all information on the current tag and can return it {{{ else: # create the tag tag = PythonTag(tagTypeDecidingMethod(parentTag.type), tagName, "%s.%s" % (parentTag.fullName, tagName,), lineNumber, indentLevel) # break the loop break # }}} # use parent tag of the parent tag parentTag = self.getParentTag(tagsStack) # }}} # handle a top-indent level tag {{{ else: # create the tag tag = PythonTag(tagTypeDecidingMethod(None), tagName, tagName, lineNumber, indentLevel) # }}} # add the tag to the list of tags tagsStack.append(tag) # return the tag return tag # }}} def tagClassTypeDecidingMethod(self, parentTagType): # DOC {{{ """Returns tag type of the current tag based on its previous tag (super tag) for classes. Parameters parentTagType -- type of the enclosing/parent tag """ # }}} # CODE {{{ # is always class no matter what return PythonTag.TT_CLASS # }}} def tagFunctionTypeDecidingMethod(self, parentTagType): # DOC {{{ """Returns tag type of the current tag based on its previous tag (super tag) for functions/methods. Parameters parentTagType -- type of the enclosing/parent tag """ # }}} # CODE {{{ if (parentTagType == PythonTag.TT_CLASS): return PythonTag.TT_METHOD else: return PythonTag.TT_FUNCTION # }}} # }}} # }}} # class VimReadlineBuffer() {{{ class VimReadlineBuffer(object): # DOC {{{ """A simple wrapper class around vim's buffer that provides readline method. """ # }}} # METHODS {{{ def __init__(self, vimBuffer): # DOC {{{ """Initializes instances of VimReadlineBuffer(). Parameters vimBuffer -- VIM's buffer """ # }}} # CODE {{{ # remember the settings self.vimBuffer = vimBuffer # initialize instance attributes {{{ self.currentLine = -1 self.bufferLines = len(vimBuffer) # }}} # }}} def readline(self): # DOC {{{ """Returns next line from the buffer. If all the buffer has been read, returns empty string. """ # }}} # CODE {{{ # increase the current line counter self.currentLine += 1 # notify end of file if we reached beyond the last line {{{ if (self.currentLine == self.bufferLines): return '' # }}} # return the line with an added newline (vim stores the lines without it) return "%s\n" % (self.vimBuffer[self.currentLine],) # }}} # }}} # }}} def getNearestLineIndex(row, tagLineNumbers): # DOC {{{ """Returns the index of line in 'tagLineNumbers' list that is nearest to the specified cursor row. Parameters row -- current cursor row tagLineNumbers -- list of tags' line numbers (ie. their position) """ # }}} # CODE {{{ # initialize local auxiliary variables {{{ nearestLineNumber = -1 nearestLineIndex = -1 # }}} # go through all tag line numbers and find the one nearest to the specified row {{{ for lineIndex, lineNumber in enumerate(tagLineNumbers): # if the current line is nearer the current cursor position, take it {{{ if (nearestLineNumber < lineNumber <= row): nearestLineNumber = lineNumber nearestLineIndex = lineIndex # }}} # if we've got past the current cursor position, let's end the search {{{ if (lineNumber >= row): break # }}} # }}} # return index of the line with the nearest tag return nearestLineIndex # }}} def getTags(bufferNumber, changedTick): # DOC {{{ """Reads the tags for the specified buffer number. Returns a tuple (taglinenumber[buffer], tags[buffer],). Parameters bufferNumber -- number of the current buffer changedTick -- ever increasing number used to tell if the buffer has been modified since the last time """ # }}} # CODE {{{ # define global variables global TAGLINENUMBERS, TAGS, BUFFERTICKS # return immediately if there's no need to update the tags {{{ if (BUFFERTICKS.get(bufferNumber, None) == changedTick): return (TAGLINENUMBERS[bufferNumber], TAGS[bufferNumber],) # }}} # get the tags {{{ simpleTagsParser = SimplePythonTagsParser(VimReadlineBuffer(vim.current.buffer)) tagLineNumbers, tags = simpleTagsParser.getTags() # }}} # update the global variables {{{ TAGS[bufferNumber] = tags TAGLINENUMBERS[bufferNumber] = tagLineNumbers BUFFERTICKS[bufferNumber] = changedTick # }}} # return the tuple (tagLineNumbers, tags,) return (tagLineNumbers, tags,) # }}} def findTag(bufferNumber, changedTick): # DOC {{{ """Tries to find the best tag for the current cursor position. Parameters bufferNumber -- number of the current buffer changedTick -- ever increasing number used to tell if the buffer has been modified since the last time """ # }}} # CODE {{{ # try to find the best tag {{{ try: # get the tags data for the current buffer tagLineNumbers, tags = getTags(bufferNumber, changedTick) # link to vim's internal data {{{ currentBuffer = vim.current.buffer currentWindow = vim.current.window row, col = currentWindow.cursor # }}} # get the index of the nearest line nearestLineIndex = getNearestLineIndex(row, tagLineNumbers) # if any line was found, try to find if the tag is appropriate {{{ # (ie. the cursor can be below the last tag but on a code that has nothing # to do with the tag, because it's indented differently, in such case no # appropriate tag has been found.) while (nearestLineIndex > -1): # get the line number of the nearest tag nearestLineNumber = tagLineNumbers[nearestLineIndex] # walk through all the lines in range (nearestTagLine, cursorRow) {{{ for lineNumber in range(nearestLineNumber + 1, row): # get the current line line = currentBuffer[lineNumber] # count the indentation of the line, if it's lower than the tag's, the tag is invalid {{{ if (len(line)): # initialize local auxiliary variables {{{ lineStart = 0 i = 0 # }}} # compute the indentation of the line {{{ while ((i < len(line)) and (line[i].isspace())): # move the start of the line code {{{ if (line[i] == '\t'): lineStart += SimplePythonTagsParser.TABSIZE else: lineStart += 1 # }}} # go to the next character on the line i += 1 # }}} # if the line contains only spaces, skip it {{{ if (i == len(line)): continue # }}} # if the next character is a '#' (python comment), skip the line {{{ if (line[i] == '#'): continue # }}} # if the next character is a ')', skip the line {{{ # this is so that the following style works correctly: # # def foo( # args, # ): # pass if (line[i] == ')'): continue # }}} # if the line's indentation starts before or at the nearest tag's one, the tag is invalid {{{ if (lineStart <= tags[nearestLineNumber].indentLevel): nearestLineIndex -= 1 break # }}} # }}} # }}} # the tag is appropriate, so use it {{{ else: break # }}} # }}} # no appropriate tag has been found {{{ else: nearestLineNumber = -1 # }}} # describe the cursor position (what tag the cursor is on) {{{ # reset the description tagDescription = "" # if an appropriate tag has been found, set the description accordingly {{{ if (nearestLineNumber > -1): tagInfo = tags[nearestLineNumber] tagDescription = "[%s]" % (tagInfo.fullName, ) # not using PythonTag.TAG_TYPE_NAME[tagInfo.type] because ENOSPC # }}} # }}} # update the variable for the status line so it get updated with the new description vim.command("let w:PHStatusLine=\"%s\"" % (tagDescription,)) # }}} # handle possible exceptions {{{ except Exception: # bury into the traceback {{{ ec, ei, tb = sys.exc_info() while (tb != None): if (tb.tb_next == None): break tb = tb.tb_next # }}} # spit out the error {{{ print("ERROR: %s %s %s:%u" % (ec.__name__, ei, tb.tb_frame.f_code.co_filename, tb.tb_lineno,)) time.sleep(0.5) # }}} # }}} # }}} def deleteTags(bufferNumber): # DOC {{{ """Removes tags data for the specified buffer number. Parameters bufferNumber -- number of the buffer """ # }}} # CODE {{{ # define global variables global TAGS, TAGLINENUMBERS, BUFFERTICKS # try to delete the tags for the buffer {{{ try: del TAGS[bufferNumber] del TAGLINENUMBERS[bufferNumber] del BUFFERTICKS[bufferNumber] except: pass # }}} # }}}
12,630
b839ecf728d56d498498dff07959fde78deef050
import socket, json, time IP = '127.0.0.1' PORT = 51001 def query(data): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # assume that it would always success s.connect((IP, PORT)) # print("Connected") # print("Sent: ", data) s.sendall(bytes(json.dumps(data) + '\n', "UTF-8")) ret = s.recv(1024) s.close() return (ret) def run(): device = [(40, "t"), (41, "t"), (42, "t"), (43, "l"), (44, "l"), (45, "l"), (50, "s")] print("Querying...") data = {"cmd": "query", "args": {"device_id": 40}} while True: for i in range(7): data["args"]["device_id"], type = device[i] ret = query(data) ret = json.loads(str(ret, encoding="UTF-8")) if type == "t": print("Temperature-humidity sensor ID:", data["args"]["device_id"], " Temperature:", ret["data"]["device_value"]["temperature"], " Humidity:", ret["data"]["device_value"]["humidity"]) elif type == "l": print("Light sensor ID:", data["args"]["device_id"], " Lightness:", ret["data"]["device_value"]) else: print("6-axes ID:", data["args"]["device_id"], " Value:", ret["data"]["device_value"]) print("Waiting...\n") time.sleep(5) if __name__ == "__main__": run()
12,631
f1652b425b98c91048b49370eb6f255cda0073be
from django.db import models # Create your models here. class CourseModel(models.Model): courseId=models.IntegerField(primary_key=True) courseName=models.CharField(max_length=50) class StudentModel(models.Model): studentId=models.IntegerField(primary_key=True) StudentName=models.CharField(max_length=30) contactNo=models.IntegerField() subject=models.ManyToManyField(CourseModel)
12,632
59248b67a4c5e6d4a021babace714aa51cc1fc58
def is_palindrome(txt): res = txt.lower().replace(" ","") res = res.replace("-","") res = res.replace(",","") res = res.replace("!","") return res == res[::-1]
12,633
45ed04ee73a21349e83461ced8aed0e96e68f72c
import json from flask import Flask app = Flask(__name__) data = json.load(open('meme.json')) # memes = data['list'] @app.route("/") def index(): return "Check /all at the moment" @app.route("/all") def meme(): return data
12,634
5da6d2a529533419601962c35e2cb05bf9e750d7
import os from tempfile import NamedTemporaryFile import pytest from lhotse import ( AudioSource, CutSet, Features, FeatureSet, MonoCut, MultiCut, Recording, RecordingSet, SupervisionSegment, SupervisionSet, load_manifest, store_manifest, ) from lhotse.lazy import LazyJsonlIterator from lhotse.serialization import SequentialJsonlWriter, load_manifest_lazy, open_best from lhotse.supervision import AlignmentItem from lhotse.testing.dummies import DummyManifest from lhotse.utils import fastcopy from lhotse.utils import nullcontext as does_not_raise @pytest.mark.parametrize( ["path", "exception_expectation"], [ ("test/fixtures/audio.json", does_not_raise()), ("test/fixtures/supervision.json", does_not_raise()), ("test/fixtures/dummy_feats/feature_manifest.json", does_not_raise()), ("test/fixtures/libri/cuts.json", does_not_raise()), ("test/fixtures/libri/cuts_multi.json", does_not_raise()), ("test/fixtures/feature_config.yml", pytest.raises(ValueError)), ("no/such/path.xd", pytest.raises(ValueError)), ], ) def test_load_any_lhotse_manifest(path, exception_expectation): with exception_expectation: load_manifest(path) @pytest.mark.parametrize( ["path", "exception_expectation"], [ ("test/fixtures/audio.json", does_not_raise()), ("test/fixtures/supervision.json", does_not_raise()), ("test/fixtures/dummy_feats/feature_manifest.json", does_not_raise()), ("test/fixtures/libri/cuts.json", does_not_raise()), ("test/fixtures/libri/cuts_multi.json", does_not_raise()), ("test/fixtures/feature_config.yml", pytest.raises(ValueError)), ("no/such/path.xd", pytest.raises(ValueError)), ], ) def test_load_any_lhotse_manifest_lazy(path, exception_expectation): with exception_expectation: me = load_manifest(path) # some temporary files are needed to convert JSON to JSONL with NamedTemporaryFile(suffix=".jsonl.gz") as f: me.to_file(f.name) f.flush() ml = load_manifest_lazy(f.name) assert list(me) == list(ml) # equal under iteration @pytest.fixture def recording_set(): return RecordingSet.from_recordings( [ Recording( id="x", sources=[ AudioSource( type="file", channels=[0], source="text/fixtures/mono_c0.wav" ), AudioSource( type="command", channels=[1], source="cat text/fixtures/mono_c1.wav", ), ], sampling_rate=8000, num_samples=4000, duration=0.5, ) ] ) @pytest.fixture def supervision_set(): return SupervisionSet.from_segments( [ SupervisionSegment( id="segment-1", recording_id="recording-1", channel=0, start=0.1, duration=0.3, text="transcript of the first segment", language="english", speaker="Norman Dyhrentfurth", gender="male", alignment={ "word": [ AlignmentItem(symbol="transcript", start=0.1, duration=0.08), AlignmentItem(symbol="of", start=0.18, duration=0.02), AlignmentItem(symbol="the", start=0.2, duration=0.03), AlignmentItem(symbol="first", start=0.23, duration=0.07), AlignmentItem(symbol="segment", start=0.3, duration=0.1), ] }, ) ] ) @pytest.fixture def feature_set(): return FeatureSet( features=[ Features( recording_id="irrelevant", channels=0, start=0.0, duration=20.0, type="fbank", num_frames=2000, num_features=20, frame_shift=0.01, sampling_rate=16000, storage_type="lilcom", storage_path="/irrelevant/", storage_key="path.llc", ) ] ) @pytest.fixture def cut_set(): cut = MonoCut( id="cut-1", start=0.0, duration=10.0, channel=0, features=Features( type="fbank", num_frames=100, num_features=40, frame_shift=0.01, sampling_rate=16000, start=0.0, duration=10.0, storage_type="lilcom", storage_path="irrelevant", storage_key="irrelevant", ), recording=Recording( id="rec-1", sampling_rate=16000, num_samples=160000, duration=10.0, sources=[AudioSource(type="file", channels=[0], source="irrelevant")], ), supervisions=[ SupervisionSegment( id="sup-1", recording_id="irrelevant", start=0.5, duration=6.0 ), SupervisionSegment( id="sup-2", recording_id="irrelevant", start=7.0, duration=2.0 ), ], ) multi_cut = MultiCut( id="cut-2", start=0.0, duration=10.0, channel=0, recording=Recording( id="rec-2", sampling_rate=16000, num_samples=160000, duration=10.0, channel_ids=[0, 1], sources=[AudioSource(type="file", channels=[0, 1], source="irrelevant")], ), supervisions=[ SupervisionSegment( id="sup-3", recording_id="irrelevant", start=0.5, duration=6.0 ), SupervisionSegment( id="sup-4", recording_id="irrelevant", start=7.0, duration=2.0 ), ], ) return CutSet.from_cuts( [ cut, fastcopy(cut, id="cut-nosup", supervisions=[]), fastcopy(cut, id="cut-norec", recording=None), fastcopy(cut, id="cut-nofeat", features=None), cut.pad(duration=30.0, direction="left"), cut.pad(duration=30.0, direction="right"), cut.pad(duration=30.0, direction="both"), cut.mix(cut, offset_other_by=5.0, snr=8), multi_cut, ] ) @pytest.mark.parametrize( ["format", "compressed"], [ ("yaml", False), ("yaml", True), ("json", False), ("json", True), ("jsonl", False), ("jsonl", True), ], ) def test_feature_set_serialization(feature_set, format, compressed): with NamedTemporaryFile(suffix=".gz" if compressed else "") as f: if format == "jsonl": feature_set.to_jsonl(f.name) feature_set_deserialized = FeatureSet.from_jsonl(f.name) if format == "json": feature_set.to_json(f.name) feature_set_deserialized = FeatureSet.from_json(f.name) if format == "yaml": feature_set.to_yaml(f.name) feature_set_deserialized = FeatureSet.from_yaml(f.name) assert feature_set_deserialized == feature_set @pytest.mark.parametrize( ["format", "compressed"], [ ("yaml", False), ("yaml", True), ("json", False), ("json", True), ("jsonl", False), ("jsonl", True), ], ) def test_serialization(recording_set, format, compressed): with NamedTemporaryFile(suffix=".gz" if compressed else "") as f: if format == "jsonl": recording_set.to_jsonl(f.name) deserialized = RecordingSet.from_jsonl(f.name) if format == "yaml": recording_set.to_yaml(f.name) deserialized = RecordingSet.from_yaml(f.name) if format == "json": recording_set.to_json(f.name) deserialized = RecordingSet.from_json(f.name) assert deserialized == recording_set @pytest.mark.parametrize( ["format", "compressed"], [ ("yaml", False), ("yaml", True), ("json", False), ("json", True), ("jsonl", False), ("jsonl", True), ], ) def test_supervision_set_serialization(supervision_set, format, compressed): with NamedTemporaryFile(suffix=".gz" if compressed else "") as f: if format == "yaml": supervision_set.to_yaml(f.name) restored = supervision_set.from_yaml(f.name) if format == "json": supervision_set.to_json(f.name) restored = supervision_set.from_json(f.name) if format == "jsonl": supervision_set.to_jsonl(f.name) restored = supervision_set.from_jsonl(f.name) assert supervision_set == restored @pytest.mark.parametrize( ["format", "compressed"], [ ("yaml", False), ("yaml", True), ("json", False), ("json", True), ("jsonl", False), ("jsonl", True), ], ) def test_cut_set_serialization(cut_set, format, compressed): with NamedTemporaryFile(suffix=".gz" if compressed else "") as f: if format == "yaml": cut_set.to_yaml(f.name) restored = CutSet.from_yaml(f.name) if format == "json": cut_set.to_json(f.name) restored = CutSet.from_json(f.name) if format == "jsonl": cut_set.to_jsonl(f.name) restored = CutSet.from_jsonl(f.name) assert cut_set == restored @pytest.fixture def manifests(recording_set, supervision_set, feature_set, cut_set): return { "recording_set": recording_set, "supervision_set": supervision_set, "feature_set": feature_set, "cut_set": cut_set, } @pytest.mark.parametrize( "manifest_type", ["recording_set", "supervision_set", "feature_set", "cut_set"] ) @pytest.mark.parametrize( ["format", "compressed"], [ ("yaml", False), ("yaml", True), ("json", False), ("json", True), ("jsonl", False), ("jsonl", True), ], ) def test_generic_serialization_classmethod( manifests, manifest_type, format, compressed ): manifest = manifests[manifest_type] with NamedTemporaryFile(suffix="." + format + (".gz" if compressed else "")) as f: manifest.to_file(f.name) restored = type(manifest).from_file(f.name).to_eager() assert manifest == restored @pytest.mark.parametrize( "manifest_type", ["recording_set", "supervision_set", "feature_set", "cut_set"] ) @pytest.mark.parametrize( ["format", "compressed"], [ ("yaml", False), ("yaml", True), ("json", False), ("json", True), ("jsonl", False), ("jsonl", True), ], ) def test_generic_serialization(manifests, manifest_type, format, compressed): manifest = manifests[manifest_type] with NamedTemporaryFile(suffix="." + format + (".gz" if compressed else "")) as f: store_manifest(manifest, f.name) restored = load_manifest(f.name) assert manifest == restored @pytest.mark.parametrize( "manifest_type", ["recording_set", "supervision_set", "cut_set", "feature_set"] ) @pytest.mark.parametrize( ["format", "compressed"], [ ("jsonl", False), ("jsonl", True), ], ) def test_sequential_jsonl_writer(manifests, manifest_type, format, compressed): manifest = manifests[manifest_type] with NamedTemporaryFile( suffix="." + format + (".gz" if compressed else "") ) as jsonl_f: with manifest.open_writer(jsonl_f.name) as writer: for item in manifest: writer.write(item) restored = writer.open_manifest() # Same manifest type assert type(manifest) == type(restored) # Equal under iteration assert list(manifest) == list(restored) def test_sequential_jsonl_writer_with_dict_input(): data = [{"key": "value", "other_key": "other_value"}, {"key": "value2"}] with NamedTemporaryFile(suffix=".jsonl") as jsonl_f: with SequentialJsonlWriter(jsonl_f.name) as writer: for item in data: writer.write(item) restored = list(LazyJsonlIterator(jsonl_f.name)) assert len(restored) == 2 assert data[0] == restored[0] assert data[1] == restored[1] @pytest.mark.parametrize( "manifest_type", ["recording_set", "supervision_set", "cut_set", "feature_set"] ) def test_in_memory_writer(manifests, manifest_type): manifest = manifests[manifest_type] with manifest.open_writer(None) as writer: for item in manifest: writer.write(item) restored = writer.open_manifest() assert manifest == restored @pytest.mark.parametrize("overwrite", [True, False]) def test_sequential_jsonl_writer_overwrite(overwrite): cuts = DummyManifest(CutSet, begin_id=0, end_id=100) half = cuts.split(num_splits=2)[0] with NamedTemporaryFile(suffix=".jsonl") as jsonl_f: # Store the first half half.to_file(jsonl_f.name) # Open sequential writer with CutSet.open_writer(jsonl_f.name, overwrite=overwrite) as writer: if overwrite: assert all(not writer.contains(id_) for id_ in half.ids) else: assert all(writer.contains(id_) for id_ in half.ids) @pytest.mark.parametrize( "manifest_type", ["recording_set", "supervision_set", "cut_set", "feature_set"] ) def test_manifest_is_lazy(manifests, manifest_type): # Eager manifest is not lazy eager = manifests[manifest_type] cls = type(eager) assert not eager.is_lazy # Save the manifest to JSONL and open it lazily with NamedTemporaryFile(suffix=".jsonl") as f, cls.open_writer(f.name) as writer: for item in eager: writer.write(item) f.flush() lazy = writer.open_manifest() # Lazy manifest is lazy assert lazy.is_lazy # Concatenation of eager + eager manifests is eager eager_eager_cat = eager + eager assert eager_eager_cat.is_lazy # Concatenation of lazy + eager manifests is lazy lazy_eager_cat = lazy + eager assert lazy_eager_cat.is_lazy # Concatenation of eager + lazy manifests is lazy eager_lazy_cat = eager + lazy assert eager_lazy_cat.is_lazy # Concatenation of eager + lazy manifests is lazy lazy_lazy_cat = eager + lazy assert lazy_lazy_cat.is_lazy # Muxing of eager + eager manifests is lazy eager_eager_mux = cls.mux(eager, eager) assert eager_eager_mux.is_lazy # Muxing of lazy + eager manifests is lazy lazy_eager_mux = cls.mux(lazy, eager) assert lazy_eager_mux.is_lazy # Muxing of eager + lazy manifests is lazy eager_lazy_mux = cls.mux(eager, lazy) assert eager_lazy_mux.is_lazy # Muxing of eager + lazy manifests is lazy lazy_lazy_mux = cls.mux(lazy, lazy) assert lazy_lazy_mux.is_lazy @pytest.mark.skipif(os.name == "nt", reason="This test cannot be run on Windows.") def test_open_pipe(tmp_path): data = "text" with open_best(f"pipe:gzip -c > {tmp_path}/text.gz", mode="w") as f: print(data, file=f) with open_best(f"pipe:gunzip -c {tmp_path}/text.gz", mode="r") as f: data_read = f.read().strip() assert data_read == data @pytest.mark.skipif(os.name == "nt", reason="This test cannot be run on Windows.") def test_open_pipe_iter(tmp_path): lines = [ "line0", "line1", "line2", ] with open_best(f"pipe:gzip -c > {tmp_path}/text.gz", mode="w") as f: for l in lines: print(l, file=f) lines_read = [] with open_best(f"pipe:gunzip -c {tmp_path}/text.gz", mode="r") as f: for l in f: lines_read.append(l.strip()) assert lines_read == lines
12,635
b300c7e004ff2999ee6c2887e34fbfafbb86efdb
import urllib.request,json from .models import Source, Article #getting the key api_key = None #getting the base url source_base_url = None article_base_url = None headlines_base_url = None def configure_request(app): global api_key,source_base_url,article_base_url,headlines_base_url api_key = app.config['MY_KEY'] source_base_url= app.config['SOURCES_URL'] article_base_url = app.config["ARTICLES_URL"] headlines_base_url = app.config["HEADLINES_URL"] def get_sources(): '''function to get data from the api url returns: source_results : a list of dictionary containing Source objects ''' get_sources_url = source_base_url.format(api_key) with urllib.request.urlopen(get_sources_url) as url: get_sources_data = url.read() get_sources_response = json.loads(get_sources_data) sources_results =None if get_sources_response["sources"]: sources_results_list = get_sources_response["sources"] sources_results = process_sources_results(sources_results_list) return sources_results def process_sources_results(sources_list): '''function to process results and create Source objects args: sources_list: a list of dictionaries returns: sources_results: list of Source objects ''' sources_results = [] counter = 0 for source in sources_list: id = source.get('id') name = source.get('name') description = source.get('description') source_object = Source(id,name,description) sources_results.append(source_object) counter +=1 if counter == 15: break return sources_results def get_articles(id): '''function to get all articles from a source and create article objects args: id: id of the source of which its articles are to be gotten returns: articles_results: a list of articles results ''' get_articles_url = article_base_url.format(id,api_key) with urllib.request.urlopen(get_articles_url) as url: get_articles_data = url.read() get_articles_response = json.loads(get_articles_data) articles_results = None if get_articles_response["articles"]: articles_results_lists = get_articles_response["articles"] articles_results = process_articles_results(articles_results_lists) return articles_results def get_headlines(): '''function to get top headlines returns: headlines_results:a list of top articles ''' get_headlines_url = headlines_base_url.format(api_key) with urllib.request.urlopen(get_headlines_url) as url: get_headlines_data = url.read() get_headlines_response = json.loads(get_headlines_data) headlines_results = None if get_headlines_response["articles"]: headlines_results_lists = get_headlines_response["articles"] headlines_results = process_headlines_results(headlines_results_lists) return headlines_results def process_headlines_results(headlines_list): ''' Function to process the results from get_headlines function args: headlines_list: alist of dictionaries from get_headlines function returns: articles_results: a list of Article objects''' articles_results = [] counter = 0 for article in headlines_list: title = article.get('title') author = article.get('author') description = article.get('description') link = article.get('url') image_url = article.get('urlToImage') published_time = article.get('publishedAt') article_object = Article(title,author,description,link,image_url,published_time) articles_results.append(article_object) counter +=1 if counter == 4: break return articles_results def process_articles_results(articles_list): ''' Function to process the results from get_articles function args: articles_list: alist of dictionaries returned by get_articles function returns: articles_results: a list of Article objects''' articles_results = [] for article in articles_list: title = article.get('title') author = article.get('author') description = article.get('description') link = article.get('url') image_url = article.get('urlToImage') published_time = article.get('publishedAt') article_object = Article(title,author,description,link,image_url,published_time) articles_results.append(article_object) return articles_results
12,636
750e08ccb7de906b9921d95d836f5b0d9674fdae
from client.game_client import * from time import sleep from random import randrange as rd, choice if __name__ == '__main__': gk = [] for i in range(10): gk.append(GameClient()) sleep(1) for i in range(len(gk)): x, y, direction = gk[i].connect(name=str(i)) i = 4 while True: i += 1 gk[i % len(gk)].move() sleep(0.1) for p in range(2): gk[(i + p) % len(gk)].fire() gk[(i * 2 % 77 - i // 6) % len(gk)].turn(choice(['left', 'right', 'up', 'down'])) sleep(0.03)
12,637
59cc50326c6552c93c8c9d7234193369502c5d40
#!/usr/bin/env python import sys import json import time import datetime import requests from collections import defaultdict import redis import MySQLdb as mdb import get_urls import config try: con = mdb.connect(config.HOST, config.USER, config.PASSWORD, config.DB_NAME) cur = con.cursor() sql = """CREATE TABLE IF NOT EXISTS %s ( DATE_TIME DATETIME, STATUS CHAR(5), URL VARCHAR(256), RESPONSE_TIME FLOAT, COUNT INT, PRIMARY KEY (DATE_TIME, STATUS, URL) ) """ % (config.TABLE_RESPONSE) cur.execute(sql) except mdb.Error, e: print "Error %d: %s" % (e.args[0],e.args[1]) con.close() sys.exit(1) #Redis connection try: r = redis.Redis( host=config.REDIS_SERVER, port=config.REDIS_PORT) except redis.ConnectionError: print('Redis Connection Error') tmp_count = 0 if __name__ == '__main__': while True: try: rsp = requests.get(config.URL) except requests.exceptions.ConnectionError: print('Run log API on the log server to get data.') time.sleep(3) print('Retrying...') continue try: response_by_minute = rsp.json()['log_by_min'] response_by_minute_count = rsp.json()['log_by_count'] except: print('Invalid Data(either no log file exists or data returned is not json).\nExiting...') time.sleep(1) sys.exit(1) for date_time in response_by_minute.keys(): for rsp in response_by_minute[date_time].keys(): for url, rsp_tym in response_by_minute[date_time][rsp].iteritems(): print (date_time, rsp, url, rsp_tym, response_by_minute_count[date_time][rsp][url]) cur.execute('INSERT INTO API_PERFORM_ONE (DATE_TIME, STATUS, URL, RESPONSE_TIME, COUNT) VALUES (%s, %s, %s, %s, %s) ON DUPLICATE KEY UPDATE RESPONSE_TIME = VALUES(RESPONSE_TIME), COUNT = VALUES(COUNT)' , (date_time, rsp, url, rsp_tym, response_by_minute_count[date_time][rsp][url])) con.commit()
12,638
317deadaa6252837bf87fa13ef27c5a5713f2b5d
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'pyarduino.ui' # # Created by: PyQt4 UI code generator 4.11.4 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui import os import subprocess from serial.tools.list_ports import comports import sys import time import icon_rc cwd = os.getcwd() try: _fromUtf8 = QtCore.QString.fromUtf8 except AttributeError: def _fromUtf8(s): return s try: _encoding = QtGui.QApplication.UnicodeUTF8 def _translate(context, text, disambig): return QtGui.QApplication.translate(context, text, disambig, _encoding) except AttributeError: def _translate(context, text, disambig): return QtGui.QApplication.translate(context, text, disambig) class Ui_MainWindow(object): def setupUi(self, MainWindow): MainWindow.setObjectName(_fromUtf8("MainWindow")) #defining the main window and it's layout MainWindow.resize(800, 600) MainWindow.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) icon = QtGui.QIcon() MainWindow.setIconSize(QtCore.QSize(30, 24)) myPixmap = QtGui.QPixmap(_fromUtf8(":/icons/Python Arduino Logo4.png")) # adding main window icon #myScaledPixmap = myPixmap.scaled(QtCore.QSize(512,512)) icon.addPixmap(myPixmap, QtGui.QIcon.Normal, QtGui.QIcon.Off) MainWindow.setWindowIcon(icon) MainWindow.setUnifiedTitleAndToolBarOnMac(True) self.centralwidget = QtGui.QWidget(MainWindow) self.centralwidget.setObjectName(_fromUtf8("centralwidget")) self.gridLayout = QtGui.QGridLayout(self.centralwidget) self.gridLayout.setObjectName(_fromUtf8("gridLayout")) self.tabWidget = QtGui.QTabWidget(self.centralwidget) #defining the tab widget and it's layout self.tabWidget.setAutoFillBackground(True) self.tabWidget.setStyleSheet(_fromUtf8("Qtool::QTabWidget{url(:/icons/File-New-icon (1).png)}")) self.tabWidget.setDocumentMode(True) self.tabWidget.setTabsClosable(True) self.tabWidget.setMovable(True) self.tabWidget.setObjectName(_fromUtf8("tabWidget")) self.tab = QtGui.QWidget() self.tab.setObjectName(_fromUtf8("tab")) self.verticalLayout = QtGui.QVBoxLayout(self.tab) self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) self.verticalLayout.setSpacing(0) self.verticalLayout.setMargin(0) self.textEdit_2 = QtGui.QTextEdit(self.tab) # Main Editor self.textEdit_2.setTabChangesFocus(True) self.textEdit_2.setObjectName(_fromUtf8("textEdit_2")) self.textEdit_2.setStyleSheet("QTextEdit{padding-left:20}") self.verticalLayout.addWidget(self.textEdit_2,2) self.groupBox = QtGui.QGroupBox(self.tab) self.groupBox.setAlignment(QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) self.groupBox.setFlat(True) self.groupBox.setObjectName(_fromUtf8("groupBox")) self.verticalLayout.addWidget(self.groupBox) self.textEdit = QtGui.QTextEdit(self.tab) # Console """self.horizontalLayout = QtGui.QHBoxLayout(self.textEdit) self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) self.toolBar_2 = QtGui.QToolBar(self.textEdit) self.toolBar_2.setMovable(True) self.toolBar_2.setToolButtonStyle(QtCore.Qt.ToolButtonFollowStyle) self.toolBar_2.setObjectName(_fromUtf8("toolBar_2")) self.horizontalLayout.addWidget(self.toolBar_2,20)""" palette = QtGui.QPalette() # backgorund color of console brush = QtGui.QBrush(QtGui.QColor(245, 245, 245)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Base, brush) brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Window, brush) brush = QtGui.QBrush(QtGui.QColor(255, 255, 255)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Base, brush) brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Window, brush) brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Base, brush) brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) brush.setStyle(QtCore.Qt.SolidPattern) palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Window, brush) self.textEdit.setPalette(palette) self.textEdit.setTextColor(QtGui.QColor(255,0,55)) font = QtGui.QFont() #Font appearances font.setBold(False) font.setItalic(False) font.setFamily(_fromUtf8("Consolas")) font.setUnderline(False) font.setWeight(50) font.setPointSize(10) self.textEdit.setFont(font) self.textEdit.setReadOnly(True) #Console should be read on;y font.setWordSpacing(0) font.setPointSize(11) self.textEdit_2.setFont(font) self.textEdit.setTabChangesFocus(True) self.textEdit.setObjectName(_fromUtf8("textEdit")) self.verticalLayout.addWidget(self.textEdit,1) self.tabWidget.addTab(self.tab, _fromUtf8("")) self.gridLayout.addWidget(self.tabWidget, 0, 0, 0, 0) self.gridLayout.setMargin(0) self.gridLayout.setSpacing(0) MainWindow.setCentralWidget(self.centralwidget) self.menubar = QtGui.QMenuBar(MainWindow) #Adding Menu Bar self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21)) self.menubar.setObjectName(_fromUtf8("menubar")) self.menuFile = QtGui.QMenu(self.menubar) self.menuFile.setObjectName(_fromUtf8("menuFile")) self.menuEdit = QtGui.QMenu(self.menubar) self.menuEdit.setObjectName(_fromUtf8("menuEdit")) self.menuHelp = QtGui.QMenu(self.menubar) self.menuHelp.setObjectName(_fromUtf8("menuHelp")) self.menuAbout = QtGui.QMenu(self.menuHelp) self.menuAbout.setObjectName(_fromUtf8("menuAbout")) self.menuEdit_2 = QtGui.QMenu(self.menubar) self.menuEdit_2.setObjectName(_fromUtf8("menuEdit_2")) self.menuView = QtGui.QMenu(self.menubar) self.menuView.setObjectName(_fromUtf8("menuView")) MainWindow.setMenuBar(self.menubar) self.toolBar = QtGui.QToolBar(MainWindow) #Adding Toolbar self.toolBar.setMovable(False) self.toolBar.setToolButtonStyle(QtCore.Qt.ToolButtonFollowStyle) self.toolBar.setObjectName(_fromUtf8("toolBar")) MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar) self.statusBar = QtGui.QStatusBar(MainWindow) #Adding Status bar self.statusBar.setObjectName(_fromUtf8("statusBar")) MainWindow.setStatusBar(self.statusBar) self.dockWidget = QtGui.QDockWidget(MainWindow) #Dockwidget for list of experiments self.dockWidget.setObjectName(_fromUtf8("dockWidget")) self.dockWidget.setTitleBarWidget(QtGui.QWidget()) self.dockWidgetContents_2 = QtGui.QWidget() self.dockWidgetContents_2.setObjectName(_fromUtf8("dockWidgetContents_2")) self.gridLayout_2 = QtGui.QGridLayout(self.dockWidgetContents_2) self.gridLayout_2.setObjectName(_fromUtf8("gridLayout_2")) self.treeWidget = QtGui.QTreeWidget(self.dockWidgetContents_2) #TreeWidget appearances for experiments list sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.treeWidget.sizePolicy().hasHeightForWidth()) self.treeWidget.setSizePolicy(sizePolicy) self.treeWidget.setAcceptDrops(True) self.treeWidget.setAutoFillBackground(True) self.treeWidget.setFrameShape(QtGui.QFrame.StyledPanel) self.treeWidget.setTabKeyNavigation(True) self.treeWidget.setProperty("showDropIndicator", True) self.treeWidget.setDragEnabled(True) self.treeWidget.setDragDropOverwriteMode(True) self.treeWidget.setDragDropMode(QtGui.QAbstractItemView.DragDrop) self.treeWidget.setSelectionBehavior(QtGui.QAbstractItemView.SelectItems) self.treeWidget.setTextElideMode(QtCore.Qt.ElideNone) self.treeWidget.setVerticalScrollMode(QtGui.QAbstractItemView.ScrollPerItem) self.treeWidget.setAnimated(False) self.treeWidget.setAllColumnsShowFocus(False) self.treeWidget.setWordWrap(True) self.treeWidget.setHeaderHidden(False) self.treeWidget.setAlternatingRowColors(True) self.treeWidget.setRootIsDecorated(True) self.treeWidget.setObjectName(_fromUtf8("treeWidget")) font = QtGui.QFont() #font for tree widgets font.setFamily(_fromUtf8("Arial")) font.setPointSize(12) font.setBold(True) font.setUnderline(False) font.setWeight(25) #setting font size font.setKerning(True) self.treeWidget.headerItem().setFont(0, font) self.treeWidget.headerItem().setBackground(0, QtGui.QColor(169, 163, 170)) brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) brush.setStyle(QtCore.Qt.SolidPattern) self.treeWidget.headerItem().setForeground(0, brush) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) #defining tree widget's item item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) item_1 = QtGui.QTreeWidgetItem(item_0) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_0 = QtGui.QTreeWidgetItem(self.treeWidget) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) item_1 = QtGui.QTreeWidgetItem(item_0) ####### CHANGE 1 ###### ###item_0 = QtGui.QTreeWidgetItem(self.treeWidget) TO ADD MAIN HEADING ###item_1 = QtGui.QTreeWidgetItem(item_0) ADD THIS LINE ONCE TO ADD EACH EXPERIMENT ###item_1 = QtGui.QTreeWidgetItem(item_0) ###item_1 = QtGui.QTreeWidgetItem(item_0) self.treeWidget.header().setCascadingSectionResizes(True) self.treeWidget.header().setDefaultSectionSize(100) self.treeWidget.header().setHighlightSections(True) self.treeWidget.header().setMinimumSectionSize(33) self.treeWidget.header().setSortIndicatorShown(False) self.gridLayout_2.addWidget(self.treeWidget, 0, 0, 0, 0) self.gridLayout_2.setMargin(0) self.gridLayout_2.setSpacing(0) self.dockWidget.setWidget(self.dockWidgetContents_2) MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(1), self.dockWidget) ######################################## Defining and adding icon to each option in menu bar ########################################### self.actionNew = QtGui.QAction(MainWindow) icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/File-New-icon (1).png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionNew.setIcon(icon) self.actionNew.setObjectName(_fromUtf8("actionNew")) self.actionOpen = QtGui.QAction(MainWindow) icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/File-Open-icon.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionOpen.setIcon(icon1) self.actionOpen.setObjectName(_fromUtf8("actionOpen")) self.actionSave = QtGui.QAction(MainWindow) icon2 = QtGui.QIcon() icon2.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Actions-document-save-as-icon (3).png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionSave.setIcon(icon2) self.actionSave.setObjectName(_fromUtf8("actionSave")) self.actionSave_as = QtGui.QAction(MainWindow) self.actionSave_as.setObjectName(_fromUtf8("actionSave_as")) self.actionExit = QtGui.QAction(MainWindow) self.actionExit.setObjectName(_fromUtf8("actionExit")) self.actionPlot = QtGui.QAction(MainWindow) icon9 = QtGui.QIcon() icon9.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/plot256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionPlot.setIcon(icon9) self.actionPlot.setObjectName(_fromUtf8("actionPlot")) self.actionRun = QtGui.QAction(MainWindow) icon10 = QtGui.QIcon() icon10.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/run256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionRun.setIcon(icon10) self.actionRun.setObjectName(_fromUtf8("actionRun")) self.actioncc = QtGui.QAction(MainWindow) self.actioncc.setObjectName(_fromUtf8("actioncc")) self.actionDebug = QtGui.QAction(MainWindow) self.actionDebug.setObjectName(_fromUtf8("actionDebug")) self.actionAbout_Software = QtGui.QAction(MainWindow) self.actionAbout_Software.setObjectName(_fromUtf8("actionAbout_Software")) self.actionAbout_company = QtGui.QAction(MainWindow) self.actionAbout_company.setObjectName(_fromUtf8("actionAbout_company")) self.actionCut = QtGui.QAction(MainWindow) icon4 = QtGui.QIcon() icon4.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/cut-icon.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionCut.setIcon(icon4) self.actionCut.setObjectName(_fromUtf8("actionCut")) self.actionCopy = QtGui.QAction(MainWindow) icon5 = QtGui.QIcon() icon5.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Document-Copy-icon.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionCopy.setIcon(icon5) self.actionCopy.setObjectName(_fromUtf8("actionCopy")) self.actionPaste = QtGui.QAction(MainWindow) icon6 = QtGui.QIcon() icon6.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Paste-icon.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionPaste.setIcon(icon6) self.actionPaste.setObjectName(_fromUtf8("actionPaste")) self.actionDelete = QtGui.QAction(MainWindow) self.actionDelete.setObjectName(_fromUtf8("actionDelete")) self.actionSelect_All = QtGui.QAction(MainWindow) icon7 = QtGui.QIcon() icon7.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Actions-edit-select-all-icon.png")), QtGui.QIcon.Normal,QtGui.QIcon.Off) self.actionSelect_All.setIcon(icon7) self.actionSelect_All.setObjectName(_fromUtf8("actionSelect_All")) self.actionUndo = QtGui.QAction(MainWindow) icon8 = QtGui.QIcon() icon8.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Undo-icon.png")), QtGui.QIcon.Normal,QtGui.QIcon.Off) self.actionUndo.setIcon(icon8) self.actionUndo.setObjectName(_fromUtf8("actionUndo")) self.actionRedo = QtGui.QAction(MainWindow) icon9 = QtGui.QIcon() icon9.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Redo-icon.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.actionRedo.setIcon(icon9) self.actionRedo.setObjectName(_fromUtf8("actionRedo")) self.actionToolbar = QtGui.QAction(MainWindow) self.actionToolbar.setObjectName(_fromUtf8("actionToolbar")) self.actionStatusbar = QtGui.QAction(MainWindow) self.actionStatusbar.setObjectName(_fromUtf8("actionStatusbar")) #################################### Adding all the actions to options of menu bar ######################## self.menuFile.addAction(self.actionNew) self.menuFile.addAction(self.actionOpen) self.menuFile.addSeparator() self.menuFile.addAction(self.actionSave) self.menuFile.addAction(self.actionSave_as) self.menuFile.addSeparator() self.menuFile.addAction(self.actionExit) self.menuEdit_2.addAction(self.actionCut) self.menuEdit_2.addAction(self.actionCopy) self.menuEdit_2.addAction(self.actionPaste) self.menuEdit_2.addAction(self.actionDelete) self.menuEdit_2.addAction(self.actionSelect_All) self.menuEdit_2.addSeparator() self.menuEdit_2.addAction(self.actionUndo) self.menuEdit_2.addAction(self.actionRedo) self.menuView.addAction(self.actionStatusbar) self.menuView.addAction(self.actionToolbar) self.menuEdit.addAction(self.actionPlot) self.menuEdit.addAction(self.actionRun) self.menuEdit.addAction(self.actionDebug) self.menuEdit.addSeparator() self.menuEdit.addAction(self.actioncc) self.menuAbout.addAction(self.actionAbout_Software) self.menuAbout.addAction(self.actionAbout_company) self.menuHelp.addAction(self.menuAbout.menuAction()) ############################# Adding file,edit,view,help,edit_2 to menubar ################################################ self.menubar.addAction(self.menuFile.menuAction()) self.menubar.addAction(self.menuEdit_2.menuAction()) self.menubar.addAction(self.menuView.menuAction()) self.menubar.addAction(self.menuEdit.menuAction()) self.menubar.addAction(self.menuHelp.menuAction()) ############################### Adding icons to tool bar ################################################### self.toolBar.addSeparator() self.toolBar.addAction(self.actionNew) self.toolBar.addAction(self.actionOpen) self.toolBar.addAction(self.actionSave) self.toolBar.addSeparator() self.toolBar.addSeparator() self.toolBar.addAction(self.actionCut) self.toolBar.addAction(self.actionCopy) self.toolBar.addAction(self.actionPaste) self.toolBar.addAction(self.actionSelect_All) self.toolBar.addSeparator() self.toolBar.addSeparator() self.toolBar.addAction(self.actionUndo) self.toolBar.addAction(self.actionRedo) self.toolBar.addSeparator() self.toolBar.addSeparator() self.toolBar.addAction(self.actionPlot) self.toolBar.addAction(self.actionRun) ############################### Showing port no. on status bar #################################################### ports = list(comports()) port="None" for i in ports: for j in i: if 'Arduino' in j: port = i[0] if(port=="None"): self.lblBoard = QtGui.QLabel("Arduino Board-- Port NONE--") else: self.lblBoard = QtGui.QLabel("Arduino -- Port %s--" %port[len(port)-1]) self.statusBar.addPermanentWidget(self.lblBoard) ########### TO DO ############ ########### Adding new tab ############ """self.tabWidget.connect(self.tabWidget, QtCore.SIGNAL("tabCloseRequested (int)"), self.on_close_tab_requested) self.tabWidget.connect(self.tabWidget, QtCore.SIGNAL("currentChanged (int)"), self.on_tab_change) self.tabButton = QtGui.QToolButton() self.tabButton.setText('+') self.tabButton.adjustSize() font = self.tabButton.font() font.setBold(True) self.tabButton.setFont(font) self.tabWidget.setCornerWidget(self.tabButton) #self.tabButton.clicked.connect()""" self.retranslateUi(MainWindow) self.tabWidget.setCurrentIndex(0) QtCore.QMetaObject.connectSlotsByName(MainWindow) #def on_close_tab_requested(self, tabIndex): #self.tabWidget.removeTab(tabIndex) #def on_tab_change(self, index): #self.setWindowTitle(self.title_text % self.tabWidget.tabText(index)) def retranslateUi(self, MainWindow): MainWindow.setWindowTitle(_translate("MainWindow", "Pyarduino", None)) MainWindow.setDockNestingEnabled(True) self.groupBox.setTitle(_translate("MainWindow", "Console ", None)) self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "Tab 1", None)) ################ Names to menubar options ################################# self.menuFile.setTitle(_translate("MainWindow", "File", None)) self.menuEdit.setTitle(_translate("MainWindow", "Tool", None)) self.menuHelp.setTitle(_translate("MainWindow", "Help", None)) self.menuAbout.setTitle(_translate("MainWindow", "About", None)) self.menuEdit_2.setTitle(_translate("MainWindow", "Edit", None)) self.menuView.setTitle(_translate("MainWindow", "View", None)) self.toolBar.setWindowTitle(_translate("MainWindow", "toolBar", None)) ######################## font for tree widget ########################################### font = QtGui.QFont() font.setBold(True) font.setItalic(False) font.setFamily(_fromUtf8("Comic sans")) font.setWeight(60) font.setPointSize(10) font.setUnderline(True) self.dockWidget.setFont(font) self.dockWidget.setWindowTitle(_translate("MainWindow", "Experiments", None)) font.setUnderline(False) font.setBold(False) self.dockWidget.setFont(font) self.treeWidget.headerItem().setText(0, _translate("MainWindow", " Experiments ", None)) __sortingEnabled = self.treeWidget.isSortingEnabled() self.treeWidget.setSortingEnabled(False) self.treeWidget.expandAll() self.textEdit_2.setFrameStyle(0) ############################# Names and icons for tree wadget items ############################# self.treeWidget.topLevelItem(0).setText(0, _translate("MainWindow", " To glow an LED", None)) iconled = QtGui.QIcon() iconled.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/led256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(0).setIcon(0,iconled) self.treeWidget.topLevelItem(0).child(0).setText(0, _translate("MainWindow", "1.1 LED", None)) self.treeWidget.topLevelItem(0).child(1).setText(0, _translate("MainWindow", "1.2 LED", None)) self.treeWidget.topLevelItem(0).child(2).setText(0, _translate("MainWindow", "1.3 LED", None)) self.treeWidget.topLevelItem(0).child(3).setText(0, _translate("MainWindow", "1.4 LED", None)) self.treeWidget.topLevelItem(1).setText(0, _translate("MainWindow", " Using the Pushbutton", None)) iconpb = QtGui.QIcon() iconpb.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/pushbutton1.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(1).setIcon(0, iconpb) self.treeWidget.topLevelItem(1).child(1).setText(0, _translate("MainWindow", "2.2 Pushbutton", None)) self.treeWidget.topLevelItem(1).child(0).setText(0, _translate("MainWindow", "2.1 Pushbutton", None)) self.treeWidget.topLevelItem(2).setText(0, _translate("MainWindow", " Using a LDR", None)) iconldr = QtGui.QIcon() iconldr.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/LDR-256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(2).setIcon(0, iconldr) self.treeWidget.topLevelItem(2).child(1).setText(0, _translate("MainWindow", "3.2 LDR", None)) self.treeWidget.topLevelItem(2).child(0).setText(0, _translate("MainWindow", "3.1 LDR", None)) self.treeWidget.topLevelItem(3).setText(0, _translate("MainWindow", " Potentiometer", None)) iconpot = QtGui.QIcon() iconpot.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Potentiometer256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(3).setIcon(0, iconpot) self.treeWidget.topLevelItem(3).child(0).setText(0, _translate("MainWindow", "4.1 Potentiometer", None)) self.treeWidget.topLevelItem(4).setText(0, _translate("MainWindow", " DC Motor", None)) icondc = QtGui.QIcon() icondc.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/motor1.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(4).setIcon(0, icondc) self.treeWidget.topLevelItem(4).child(0).setText(0, _translate("MainWindow", "5.1 DC Motor", None)) self.treeWidget.topLevelItem(4).child(1).setText(0, _translate("MainWindow", "5.2 DC Motor", None)) self.treeWidget.topLevelItem(4).child(2).setText(0, _translate("MainWindow", "5.3 DC Motor", None)) self.treeWidget.topLevelItem(5).setText(0, _translate("MainWindow", " Servomotor", None)) iconser = QtGui.QIcon() iconser.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Servo256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(5).setIcon(0, iconser) self.treeWidget.topLevelItem(5).child(0).setText(0, _translate("MainWindow", "6.1 Servomotor", None)) self.treeWidget.topLevelItem(5).child(1).setText(0, _translate("MainWindow", "6.2 Servomotor", None)) self.treeWidget.topLevelItem(5).child(2).setText(0, _translate("MainWindow", "6.3 Servomotor", None)) self.treeWidget.topLevelItem(5).child(3).setText(0, _translate("MainWindow", "6.4 Servomotor", None)) self.treeWidget.topLevelItem(6).setText(0, _translate("MainWindow", " Energymeter", None)) iconenergy = QtGui.QIcon() iconenergy.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/energy1.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.treeWidget.topLevelItem(6).setIcon(0, iconenergy) self.treeWidget.topLevelItem(6).child(0).setText(0, _translate("MainWindow", "Energymeter current", None)) self.treeWidget.topLevelItem(6).child(1).setText(0, _translate("MainWindow", "Energymeter voltage", None)) self.treeWidget.topLevelItem(6).child(2).setText(0, _translate("MainWindow", "Energymeter power", None)) self.treeWidget.setSortingEnabled(__sortingEnabled) ############### CHANGE 2 ##################### #self.treeWidget.topLevelItem(7).setText(0, _translate("MainWindow", " Heading_Name", None)) #iconenergy = QtGui.QIcon() #iconenergy.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/Add_Icon_name.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) #self.treeWidget.topLevelItem(7).setIcon(0, iconenergy) #TO ADD ICON TO HEADING #self.treeWidget.topLevelItem(7).child(0).setText(0, _translate("MainWindow", "EXPERIMENT_NAME1", None)) #TO ADD NAME OF EXPERIMENT IN SOFTWARE #self.treeWidget.topLevelItem(7).child(1).setText(0, _translate("MainWindow", "EXPERIMENT_NAME2", None)) #self.treeWidget.topLevelItem(7).child(2).setText(0, _translate("MainWindow", "EXPERIMENT_NAME3", None)) ############################### Defining name,status bar tip,whats this and shortcut for each option in menu bar ################################ self.actionNew.setText(_translate("MainWindow", " New Project", None)) self.actionNew.setStatusTip(_translate("MainWindow", "Create a new file", None)) self.actionNew.setWhatsThis(_translate("MainWindow", "To create a new file", None)) self.actionNew.setShortcut(_translate("MainWindow", "Ctrl+N", None)) self.actionOpen.setText(_translate("MainWindow", "Open", None)) self.actionOpen.setStatusTip(_translate("MainWindow", "Open an existing File", None)) self.actionOpen.setWhatsThis(_translate("MainWindow", "To open an existing File", None)) self.actionOpen.setShortcut(_translate("MainWindow", "Ctrl+O", None)) self.actionSave.setText(_translate("MainWindow", "Save", None)) self.actionSave.setStatusTip(_translate("MainWindow", "Save the current File", None)) self.actionSave.setWhatsThis(_translate("MainWindow", "To save the current File", None)) self.actionSave.setShortcut(_translate("MainWindow", "Ctrl+S", None)) self.actionSave_as.setText(_translate("MainWindow", "Save as", None)) self.actionSave_as.setStatusTip(_translate("MainWindow", "Rewrites the current File", None)) self.actionSave_as.setWhatsThis(_translate("MainWindow", "To save the current File", None)) self.actionExit.setText(_translate("MainWindow", "Exit", None)) self.actionExit.setStatusTip(_translate("MainWindow", "Exit from the application", None)) self.actionExit.setWhatsThis(_translate("MainWindow", "To exit from the application ", None)) self.actionExit.setShortcut(_translate("MainWindow", "Alt+F4", None)) self.actionPlot.setText(_translate("MainWindow", "Plot", None)) self.actionPlot.setStatusTip(_translate("MainWindow", "Plot a live graph for analog data ", None)) self.actionPlot.setWhatsThis(_translate("MainWindow", "To plot a live graph ", None)) self.actionPlot.setShortcut(_translate("MainWindow", "F5", None)) self.actionRun.setText(_translate("MainWindow", "Run", None)) self.actionRun.setStatusTip(_translate("MainWindow", "Run the current experiment ", None)) self.actionRun.setWhatsThis(_translate("MainWindow", "To run the current experiment", None)) self.actionRun.setShortcut(_translate("MainWindow", "F6", None)) self.actioncc.setText(_translate("MainWindow", "Clear console", None)) self.actioncc.setStatusTip(_translate("MainWindow", "Clear the console", None)) self.actioncc.setWhatsThis(_translate("MainWindow", "To clear the console", None)) self.actioncc.setShortcut(_translate("MainWindow", "Del", None)) self.actioncc = QtGui.QAction(MainWindow) self.actioncc.setObjectName(_fromUtf8("actioncc")) self.actionDebug.setText(_translate("MainWindow", "Debug", None)) self.actionAbout_Software.setText(_translate("MainWindow", "About Pyarduino", None)) self.actionAbout_Software.setStatusTip(_translate("MainWindow", "To know about Pyarduino", None)) self.actionAbout_Software.setWhatsThis(_translate("MainWindow", "To know about Pyarduino ", None)) self.actionAbout_company.setText(_translate("MainWindow", "About company", None)) self.actionAbout_company.setStatusTip(_translate("MainWindow", "to Know about the company", None)) self.actionAbout_company.setWhatsThis(_translate("MainWindow", "to Know about the company ", None)) self.actionCut.setText(_translate("MainWindow", "Cut", None)) self.actionCut.setShortcut(_translate("MainWindow", "Ctrl+X", None)) self.actionCut.setStatusTip(_translate("MainWindow", "cut the selected item", None)) self.actionCut.setWhatsThis(_translate("MainWindow", "To cut the selected item", None)) self.actionCopy.setText(_translate("MainWindow", "Copy", None)) self.actionCopy.setShortcut(_translate("MainWindow", "Ctrl+C", None)) self.actionCopy.setStatusTip(_translate("MainWindow", "copy the selected item", None)) self.actionCopy.setWhatsThis(_translate("MainWindow", "To copy the selected item", None)) self.actionPaste.setText(_translate("MainWindow", "Paste", None)) self.actionPaste.setShortcut(_translate("MainWindow", "Ctrl+V", None)) self.actionPaste.setStatusTip(_translate("MainWindow", "paste the selected item", None)) self.actionPaste.setWhatsThis(_translate("MainWindow", "To paste the selected item", None)) self.actionDelete.setText(_translate("MainWindow", "Delete", None)) self.actionDelete.setStatusTip(_translate("MainWindow", "delete the selected item", None)) self.actionDelete.setWhatsThis(_translate("MainWindow", "To delete the selected item", None)) self.actionSelect_All.setText(_translate("MainWindow", "Select All", None)) self.actionSelect_All.setShortcut(_translate("MainWindow", "Ctrl+A", None)) self.actionSelect_All.setStatusTip(_translate("MainWindow", "select all items", None)) self.actionSelect_All.setWhatsThis(_translate("MainWindow", "To select all", None)) self.actionUndo.setText(_translate("MainWindow", "Undo", None)) self.actionUndo.setShortcut(_translate("MainWindow", "Ctrl+Z", None)) self.actionUndo.setStatusTip(_translate("MainWindow", "undo the last task", None)) self.actionUndo.setWhatsThis(_translate("MainWindow", "To undo the last task", None)) self.actionRedo.setText(_translate("MainWindow", "Redo", None)) self.actionRedo.setShortcut(_translate("MainWindow", "Ctrl+Y", None)) self.actionRedo.setStatusTip(_translate("MainWindow", "redo the last task", None)) self.actionRedo.setWhatsThis(_translate("MainWindow", "To redo the last task", None)) self.actionToolbar.setText(_translate("MainWindow", "Tool bar", None)) self.actionToolbar.setStatusTip(_translate("MainWindow", "hide/show the tool bar", None)) self.actionToolbar.setWhatsThis(_translate("MainWindow", "To hide/show the tool bar", None)) self.actionStatusbar.setText(_translate("MainWindow", "Status bar", None)) self.actionStatusbar.setStatusTip(_translate("MainWindow", "hide/show the Status bar", None)) self.actionStatusbar.setWhatsThis(_translate("MainWindow", "To hide/show the Status bar", None)) ##################################### Connecting each option with their associated functions ############################ self.actionNew.triggered.connect(self.newDialog) self.actionOpen.triggered.connect(self.openDialog) self.actionSave.triggered.connect(self.saveDialog) self.actionExit.triggered.connect(self.ExitDialog) self.actionCut.triggered.connect(self.cutdialog) self.actionCopy.triggered.connect(self.copydialog) self.actionPaste.triggered.connect(self.pastedialog) self.actionDelete.triggered.connect(self.deletedialog) self.actionSelect_All.triggered.connect(self.selectalldialog) self.actionUndo.triggered.connect(self.undodialog) self.actionRedo.triggered.connect(self.redodialog) self.actionToolbar.triggered.connect(self.toggleToolbar) self.actionStatusbar.triggered.connect(self.toggleStatusbar) self.actionPlot.triggered.connect(self.on_plot_button_clicked) self.actionRun.triggered.connect(self.on_run_button_clicked) self.actioncc.triggered.connect(self.on_cc_button_clicked) self.actionAbout_company.triggered.connect(self.on_about_qt) #################################### Adding the lower title bar ################################################ fileInfoBox = QtGui.QHBoxLayout() self.verticalLayout.addLayout(fileInfoBox, 0) self.lblFileName = QtGui.QLabel() self.lblFileName.setText("Welcome to Pyarduino !") style_grad = "background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #efefef, stop: 1 %s);" % "#6A7885" style_grad += "font-weight: bold; border: 1px outset #41484E; padding: 3px;" self.lblFileName.setStyleSheet(style_grad) fileInfoBox.addWidget(self.lblFileName, 4) ##################################Adding the 'RUN' and 'PLOT' button to lower title bar ######################## self.buttonRun = QtGui.QPushButton() self.buttonRun.setText(" RUN") icon10 = QtGui.QIcon() icon10.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/run256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.buttonRun.setIcon(icon10) fileInfoBox.addWidget(self.buttonRun, 1) self.buttonRun.clicked.connect(self.on_run_button_clicked) self.buttonPlot = QtGui.QPushButton() self.buttonPlot.setText(" PLOT") icon9 = QtGui.QIcon() icon9.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/plot256.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.buttonPlot.setIcon(icon9) fileInfoBox.addWidget(self.buttonPlot, 1) self.buttonPlot.clicked.connect(self.on_plot_button_clicked) self.buttoncc = QtGui.QPushButton() self.buttoncc.setText(" Clear Console") iconcc = QtGui.QIcon() iconcc.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/clear1.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) self.buttoncc.setIcon(iconcc) fileInfoBox.addWidget(self.buttoncc, 1) self.buttoncc.clicked.connect(self.on_cc_button_clicked) self.treeWidget.itemDoubleClicked.connect(self.open_Dialog) # function called if any tree item is double clicked def open_Dialog(self, index): # opens the corresponding file and set it's data to the text editor,changes colmIndex = 0 # title bar name and tab name f = None if ((self.treeWidget.currentItem().text(colmIndex)) == "1.1 LED"): f = open(cwd+"\\Examples\\4.1LED.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "1.1 LED", None)) self.lblFileName.setText("1.1 LED") elif ((self.treeWidget.currentItem().text(colmIndex)) == "1.2 LED"): f = open(cwd+"\\Examples\\4.2LED.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "1.2 LED", None)) self.lblFileName.setText("1.2 LED") elif ((self.treeWidget.currentItem().text(colmIndex)) == "1.3 LED"): f = open(cwd+"\\Examples\\4.3LED.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "1.3 LED", None)) self.lblFileName.setText("1.3 LED") elif ((self.treeWidget.currentItem().text(colmIndex)) == "1.4 LED"): f = open(cwd+"\\Examples\\4.4LED.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "1.4 LED", None)) self.lblFileName.setText("1.4 LED") elif ((self.treeWidget.currentItem().text(colmIndex)) == "2.1 Pushbutton"): f = open(cwd+"\\Examples\\5.1Pushbutton.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "2.1 Pushbutton", None)) self.lblFileName.setText("2.1 Pushbutton") elif ((self.treeWidget.currentItem().text(colmIndex)) == "2.2 Pushbutton"): f = open(cwd+"\\Examples\\5.2Pushbutton.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "2.2 Pushbutton", None)) self.lblFileName.setText("2.2 Pushbutton") elif ((self.treeWidget.currentItem().text(colmIndex)) == "3.1 LDR"): f = open(cwd+"\\Examples\\6.1LDR.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab),_translate("MainWindow", "3.1LDR", None)) self.lblFileName.setText("3.1 LDR") elif ((self.treeWidget.currentItem().text(colmIndex)) == "3.2 LDR"): f = open(cwd+"\\Examples\\6.2LDR.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "3.2LDR", None)) self.lblFileName.setText("3.2 LDR") elif ((self.treeWidget.currentItem().text(colmIndex)) == "4.1 Potentiometer"): f = open(cwd+"\\Examples\\8.1Potentiometer.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "4.1 Potentiometer", None)) self.lblFileName.setText("4.1 Potentiometer") elif ((self.treeWidget.currentItem().text(colmIndex)) == "5.1 DC Motor"): f = open(cwd+"\\Examples\\7.1DCMotor.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "5.1 DC Motor", None)) self.lblFileName.setText("5.1 DC Motor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "5.2 DC Motor"): f = open(cwd+"\\Examples\\7.2DCMotor.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "5.2 DC Motor", None)) self.lblFileName.setText("5.2 DC Motor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "5.3 DC Motor"): f = open(cwd+"\\Examples\\7.3DCMotor.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "5.3 DC Motor", None)) self.lblFileName.setText("5.3 DC Motor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.1 Servomotor"): f = open(cwd+"\\Examples\\9.1Servo.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "6.1Servomotor", None)) self.lblFileName.setText("6.1 Servomotor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.2 Servomotor"): f = open(cwd+"\\Examples\\9.2Servo.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "6.2Servomotor", None)) self.lblFileName.setText("6.2 Servomotor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.3 Servomotor"): f = open(cwd+"\\Examples\\9.3Servo.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "6.3Servomotor", None)) self.lblFileName.setText("6.3 Servomotor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.4 Servomotor"): f = open(cwd+"\\Examples\\9.4Servo.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "6.4Servomotor", None)) self.lblFileName.setText("6.4 Servomotor") elif ((self.treeWidget.currentItem().text(colmIndex)) == "Energymeter current"): f = open(cwd+"\\Examples\\energy_meter_current.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "Energymeter current", None)) self.lblFileName.setText("Energymeter current") elif ((self.treeWidget.currentItem().text(colmIndex)) == "Energymeter voltage"): f = open(cwd+"\\Examples\\energy_meter_voltage.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab),_translate("MainWindow", "Energymeter voltage", None)) self.lblFileName.setText("Energymeter voltage") elif ((self.treeWidget.currentItem().text(colmIndex)) == "Energymeter power"): f = open(cwd+"\\Examples\\energy_meter_power.py", 'r') self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab),_translate("MainWindow", "Energymeter power", None)) self.lblFileName.setText("Energymeter power") ####################### CHANGE 3 ################# #elif ((self.treeWidget.currentItem().text(colmIndex)) == "EXPERIMENT_NAME1"): #f = open(cwd+"\\Examples\\File_name.py", 'r') #self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), # _translate("MainWindow", "EXPERIMENT_NAME1", None)) #TO CHANGE TAB NAME #self.lblFileName.setText("EXPERIMENT_NAME1") #TO CHANGE LABEL NAME AT THE BOTTOM with f: self.textEdit_2.clear() data = f.read() self.textEdit_2.setText(data) def on_cc_button_clicked(self): ##### clears the console self.textEdit.clear() def on_run_button_clicked(self): ###### runs the corresponding experiment in the background colmIndex=0 if ((self.treeWidget.currentItem().text(colmIndex)) == "1.1 LED"): pathname='4.1LED.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "1.2 LED"): pathname = '4.2LED.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "1.3 LED"): pathname = '4.3LED.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "1.4 LED"): pathname = '4.4LED.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "2.1 Pushbutton"): pathname = '5.1Pushbutton.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "2.2 Pushbutton"): pathname = '5.2Pushbutton.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "3.1 LDR"): pathname = '6.1LDR.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "3.2 LDR"): pathname = '6.2LDR.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "4.1 Potentiometer"): pathname='8.1Potentiometer.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "5.1 DC Motor"): pathname = '7.1DCMotor.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "5.1 DC Motor"): pathname = '7.2DCMotor.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "5.1 DC Motor"): pathname = '7.3DCMotor.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.1 Servomotor"): pathname = '8.1Servo.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.2 Servomotor"): pathname = '8.2Servo.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.3 Servomotor"): pathname = '8.3Servo.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "6.4 Servomotor"): pathname = '8.4Servo.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "Energymeter current"): pathname = 'energy_meter_current.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "Energymeter voltage"): pathname = 'energy_meter_voltage.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "Energymeter power"): pathname = 'energy_meter_power.py' ############## CHANGE 4 ######################## #elif ((self.treeWidget.currentItem().text(colmIndex)) == "EXPERIMENT_NAME"): # pathname = 'FILE_NAME.py' os.chdir(cwd+"\\Examples") subprocess.call(['python', pathname], shell=True) try: #otput = subprocess.check_output(['python', pathname],stderr=subprocess.STDOUT, shell=True) p = subprocess.Popen(['python', pathname], stdout=subprocess.PIPE,stderr=subprocess.STDOUT) except subprocess.CalledProcessError as exc: color = QtGui.QColor(255, 0, 0) self.textEdit.setTextColor(color) self.textEdit.append(exc.output) else: color=QtGui.QColor(255,10,10) self.textEdit.setTextColor(color) for line in iter(p.stdout.readline, b""): self.textEdit.append(line) p.stdout.close() p.wait() def on_plot_button_clicked(self): # plots for the analog data colmIndex = 0 if ((self.treeWidget.currentItem().text(colmIndex)) == "2.1 Pushbutton"): pathname = '5.1Pushbuttonplot.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "2.2 Pushbutton"): pathname = '5.2Pushbuttonplot.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "3.1 LDR"): pathname = '6.1LDRplot.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "3.2 LDR"): pathname = '6.2LDRplot.py' elif ((self.treeWidget.currentItem().text(colmIndex)) == "4.1 Potentiometer"): pathname = '8.1Potentiometerplot.py' os.chdir(cwd+"\\Examples") # changes the current directory subprocess.call(['python', pathname], shell=True) # calls the command in the terminal try: # otput = subprocess.check_output(['python', pathname],stderr=subprocess.STDOUT, shell=True) p = subprocess.Popen(['python', pathname], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) #checks for the output from the command except subprocess.CalledProcessError as exc: color = QtGui.QColor(255, 0, 0) self.textEdit.append(exc.output) else: color = QtGui.QColor(0, 0, 255) self.textEdit.setTextColor(color) for line in iter(p.stdout.readline, b""): self.textEdit.append(line) p.stdout.close() p.wait() def newDialog(self): # opens blank editor self.textEdit_2.clear() def openDialog(self): # opens file browser dialog box fname = QtGui.QFileDialog.getOpenFileName(MainWindow, 'Open file', 'C://', 'All files (*.*)') f = open(fname, 'r') with f: data = f.read() self.textEdit_2.setText(data) def saveDialog(self): # saves the current text in a file fname = QtGui.QFileDialog.getSaveFileName(MainWindow, 'Save file', cwd, 'Python files (*.py)') f = open(fname, 'w') with f: data = self.textEdit_2.toPlainText() f.write(data) f.close() def ExitDialog(self): #TO exit from the application exit_msg = "Are you sure you want to exit the program ? All unsaved data will be lost." reply = QtGui.QMessageBox.question(MainWindow,'Message', exit_msg, QtGui.QMessageBox.Yes, QtGui.QMessageBox.No) if reply == QtGui.QMessageBox.Yes: QtGui.qApp.quit() else: pass ######### to edit texts in the editor ######################## def cutdialog(self): self.textEdit_2.cut() def copydialog(self): self.textEdit_2.copy() def pastedialog(self): self.textEdit_2.paste() def deletedialog(self): self.textEdit_2.clear() def selectalldialog(self): self.textEdit_2.selectAll() def undodialog(self): self.textEdit_2.undo() def redodialog(self): self.textEdit_2.redo() def on_about_qt(self): QtGui.QMessageBox.aboutQt('About Qt') def toggleToolbar(self): # To check visibility of toolbar state = self.toolBar.isVisible() self.toolBar.setVisible(not state) # Set the visibility to its inverse if state: self.actionToolbar.setText(_translate("MainWindow", "Show Tool bar", None)) else: self.actionToolbar.setText(_translate("MainWindow", "Hide Tool bar", None)) def toggleStatusbar(self): # To check visibility of statusbar state = self.statusBar.isVisible() self.statusBar.setVisible(not state) # Set the visibility to its inverse if __name__ == "__main__": app = QtGui.QApplication(sys.argv) #splash_pix = QtGui.QPixmap('../../images/Python Arduino Logo4.png') #splash = QtGui.QSplashScreen(splash_pix, QtCore.Qt.WindowStaysOnTopHint) #splash.setMask(splash_pix.mask()) #splash.show() ################################# to display welcome screen ######################################################### splash_pix = QtGui.QPixmap(_fromUtf8(":/icons/Python Main Page.jpg")) splash = QtGui.QSplashScreen(splash_pix) splash.setMask(splash_pix.mask()) progressBar = QtGui.QProgressBar(splash) # adding progress bar progressBar.setTextVisible(False) splash.showMessage('Discovering Nodes...') # adding message splash.show() app.processEvents() for i in range(0, 100): progressBar.setValue(i) time.sleep(0.05) # Simulate something that takes time splash.close() MainWindow = QtGui.QMainWindow() ui = Ui_MainWindow() ui.setupUi(MainWindow) MainWindow.show() sys.exit(app.exec_())
12,639
5069777165047042402bdcb56d0585996417ae76
from mode_constructor import library def construct(gen): c_mode = set() for i in range(len(gen)): for j in range(len(gen[0])): c_mode.add(gen[i][j]) return c_mode def transpose(s, i=0): transposed = set() for elem in s: k = int((elem + i) % 12) transposed.add(k) return transposed def id_reg(mode): reg = [mode] for i in range(1, 6): t = transpose(mode, i) if t != mode: reg.append(t) else: break return reg def validate(lib, data_set): for i in range(len(lib)): if data_set <= lib[i]: resulted = list(lib[i]) while resulted[0] != i: resulted.insert(len(resulted), resulted[0]) resulted.remove(resulted[0]) yield 'transposition index %s:' % i, resulted def total_check(): print('Type your tone request using integers from 0 to 11 (c-b/h):') try: request = set(map(int, input().split())) for i in range(len(library)): mode_ed = construct(library[i]) database = id_reg(mode_ed) result = [*validate(database, request)] print('\n' + 'MLT: %s' % (i + 1), *result, sep='\n') yield result except ValueError: print('Please, try again - use only integers from 0 to 11') total_check() if __name__ == "__main__": total_check()
12,640
039baa207bd20fc571fcd1a596e9786e30d9621d
# -*- coding: utf-8 -*- """ Created on Tue Jan 12 13:49:50 2021 @author: kathr """ import os import io from copy import copy from collections import OrderedDict import requests #Data science import numpy as np import scipy #Visualization import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from hypyp.ext.mpl3d import glm from hypyp.ext.mpl3d.mesh import Mesh from hypyp.ext.mpl3d.camera import Camera #MNE import mne #HyPyP from hypyp import prep # need pip install https://api.github.com/repos/autoreject/autoreject/zipball/master from hypyp import analyses from hypyp import stats from hypyp import viz path="C:\\Users\\kathr\\OneDrive\\Documents\\GitHub\\EEG---Special-course" os.chdir(path) epo1 = mne.read_epochs('13_epochs_224a_resampled-epo.fif', preload = True) epo2 = mne.read_epochs('13_epochs_224b_resampled-epo.fif', preload = True) epo1.set_channel_types({'1-EXG2':'eog', '1-EXG3':'eog', '1-EXG4':'eog', '1-EXG5':'eog', '1-EXG6':'eog', '1-EXG7':'eog', '1-EXG8':'eog'}) epo2.set_channel_types({'1-EXG2':'eog', '1-EXG3':'eog', '1-EXG4':'eog', '1-EXG5':'eog', '1-EXG6':'eog', '1-EXG7':'eog', '1-EXG8':'eog'}) epo1.set_montage('biosemi64') epo2.set_montage('biosemi64') #Equal number of epochs mne.epochs.equalize_epoch_counts([epo1, epo2]) #Sampling rate sampling_rate = epo1.info['sfreq'] #ICA icas = prep.ICA_fit([epo1, epo2], n_components=15, method='infomax', fit_params=dict(extended=True), random_state=42) cleaned_epochs_ICA = prep.ICA_choice_comp(icas, [epo1, epo2]) cleaned_epochs_AR, dic_AR = prep.AR_local(cleaned_epochs_ICA, strategy="union", threshold=50.0, verbose=True) preproc_S1 = cleaned_epochs_AR[0] preproc_S2 = cleaned_epochs_AR[1] #Power spectral density #psd1 = analyses.pow(preproc_S1, fmin=7.5, fmax=11, # n_fft=1000, n_per_seg=1000, epochs_average=True) #psd2 = analyses.pow(preproc_S2, fmin=7.5, fmax=11, # n_fft=1000, n_per_seg=1000, epochs_average=True) #data_psd = np.array([psd1.psd, psd2.psd]) #Connectivity freq_bands = {'Theta': [4, 7], 'Alpha-Low': [7.5, 11], 'Alpha-High': [11.5, 13], 'Beta': [13.5, 29.5], 'Gamma': [30, 48]} data_inter = np.array([preproc_S1, preproc_S2]) result_intra = [] complex_signal = analyses.compute_freq_bands(data_inter, sampling_rate, freq_bands) result = analyses.compute_sync(complex_signal, mode='ccorr') #n_ch = len(epo1.info['ch_names']) n_ch = 64 theta, alpha_low, alpha_high, beta, gamma = result[:, 0:n_ch, n_ch:2*n_ch] # Alpha low for example values = alpha_high values -= np.diag(np.diag(values)) C = (values - np.mean(values[:])) / np.std(values[:]) #Slicing results to get the intra-brain part of matrix for i in [0, 1]: theta, alpha_low, alpha_high, beta, gamma = result[:, i:i+n_ch, i:i+n_ch] # choosing Alpha_Low for futher analyses for example values_intra = alpha_low values_intra -= np.diag(np.diag(values_intra)) # computing Cohens'D for further analyses for example C_intra = (values_intra - np.mean(values_intra[:])) / np.std(values_intra[:]) # can also sample CSD values directly for statistical analyses result_intra.append(C_intra) ### Comparing inter-brain connectivity values to random signal data = [np.array([values, values]), np.array([result_intra[0], result_intra[0]])] statscondCluster = stats.statscondCluster(data=data, freqs_mean=np.arange(7.5, 11), ch_con_freq=None, tail=0, n_permutations=5000, alpha=0.05) #Visualization of interbrain connectivity in 2D viz.viz_2D_topomap_inter(epo1, epo2, C, threshold='auto', steps=10, lab=True) #Visualization of interbrain connectivity in 3D viz.viz_3D_inter(epo1, epo2, C, threshold='auto', steps=10, lab=False)
12,641
6fa1ed722f12f0088d42aa2321184c4a27789e6a
import requests from gtts import gTTS from playsound import playsound import time import os NAME="Monsieur" HOME_ADRESS="93 rue d'Aguesseau, 94490" WORK_ADRESS = "ESIEE Paris" LANG="fr" TEMPS_PREPARATION = 3000 API_MAPS_KEY = "AIzaSyDE5NJFi9_se8qtlF1uyVSXxnTXPueKeQI" API_WEATHER_KEY = "ff204a7f66eafb607b541f9a2ccb9032" API_NEWS_KEY = "0f64ca5a2eb44c84bb311eb4ebdd4d62" TRANSPORTATION_MODE = "driving" def get_travel_time(): url_base="https://maps.googleapis.com/maps/api/directions/json" origin = HOME_ADRESS destination = WORK_ADRESS language = LANG mode = TRANSPORTATION_MODE departure_time = time.time() + TEMPS_PREPARATION url = url_base + "?origin="+origin+"&destination="+destination+"&language="+language+"&mode="+mode+"&departure_time=now"+"&key="+API_MAPS_KEY json_data = requests.get(url).json() duration_in_traffic = json_data["routes"][0]["legs"][0]["duration_in_traffic"]["text"] duration_in_traffic_formated = int(duration_in_traffic[0]+duration_in_traffic[1])*60 arrival_datetime = time.strftime('%Hh%M', time.localtime(departure_time + duration_in_traffic_formated)) departure_datetime = time.strftime('%Hh%M', time.localtime(departure_time)) sentence = "Le temps de trajet pour vous rendre sur votre lieu de travail est estimé à " + duration_in_traffic + ", vous arriverez à " + arrival_datetime + " en partant à " + departure_datetime tts = gTTS(sentence,lang=LANG) tts.save('tts_travel.mp3') playsound('tts_travel.mp3') os.system("del tts_travel.mp3") print(sentence) def get_bus_schedules(): url_base="https://api-ratp.pierre-grimaud.fr/v3/schedules/bus/308/NOISEAU-AMBOILE/A" url=url_base json_data = requests.get(url).json() data_table= json_data["result"]["schedules"] time_tables = [0 for _ in range(len(data_table))] for i in range(len(data_table)): message = data_table[i]["message"] time_tables[i] = message if RepresentsInt(time_tables[1][0]): sentence = "Le prochain bus est dans " + time_tables[1] tts = gTTS(sentence,lang=LANG) tts.save('tts.mp3') playsound('tts.mp3') print(sentence) else: sentence = "Le prochain bus est " + time_tables[1] + " min" tts = gTTS(sentence,lang=LANG) tts.save('tts.mp3') playsound('tts.mp3') os.system("del tts_travel.mp3") print(sentence) def get_current_weather(): weather_api_key = "ff204a7f66eafb607b541f9a2ccb9032" zip_code = "75000" url_base="http://samples.openweathermap.org/data/2.5/" url=url_base+"weather?zip="+ zip_code +",fr&appid="+weather_api_key+"&lang=fr" url="http://api.openweathermap.org/data/2.5/weather?zip=75000,fr&lang=fr"+"&appid="+API_WEATHER_KEY json_data = requests.get(url).json() weather_descr = json_data["weather"][0]["description"] main = json_data["weather"][0]["main"] temp = json_data["main"]["temp"]-273.15 weather_switch = { "Clear": "Le temps est dégagé", "Clouds": "le ciel est couvert", "Atmosphere": "Il y a du brouillard", "Snow": "Il y a de la neige", "Rain": "Le temps est pluvieux", "Drizzle": "Il y a de la bruine", "Thunderstrom": "Il y a de l'orage" } sentence = "Il fait " + str(round(temp)) + " degrés et "+weather_switch[main] tts = gTTS(sentence,lang=LANG) tts.save('tts_weather.mp3') playsound('tts_weather.mp3') os.system("del tts_travel.mp3") print(sentence) def RepresentsInt(s): try: int(s) return True except ValueError: return False def get_news(): tts = gTTS("Voici les gros titres du jour : ",lang=LANG) tts.save('tts_news.mp3') playsound('tts_news.mp3') os.system("del tts_news.mp3") url_base="https://newsapi.org/v2/top-headlines?country=fr&apiKey="+API_NEWS_KEY url=url_base json_data = requests.get(url).json() news_data_title_list = [0 for _ in range(2)] news_data_desc_list = [0 for _ in range(2)] for i in range(2): news_data_title_list[i] = json_data["articles"][i]["title"] news_data_desc_list[i] = json_data["articles"][i]["description"] if (news_data_title_list[i] and news_data_desc_list[i]) != None: tts = gTTS(str(news_data_title_list[i]+news_data_desc_list[i]),lang=LANG) tts.save('tts_news'+str(i)+'.mp3') playsound('tts_news'+str(i)+'.mp3') os.system("del tts_news"+str(i)+".mp3") def play_music(): playsound('ringtone/1.mp3') def message(): sentence = "Bonjour Monsieur, il est " + time.strftime('%Hh%M') + ", nous somme le " + time.strftime("%d") + " aujourd'hui" tts = gTTS(sentence,lang=LANG) tts.save('tts_message.mp3') playsound('tts_message.mp3') os.system("del tts_message.mp3") print(sentence) play_music() message() get_news() get_current_weather() if TRANSPORTATION_MODE == "driving": get_travel_time() elif TRANSPORTATION_MODE == "bus": get_bus_schedules()
12,642
995712ce4d8f013d2ad81e444af6d6175f3c2343
import csv def rod(lat, lon): rlat = round(float(lat), 2) rlon = round(float(lon), 2) return rlat, rlon fin = open('folder/log_file_1000.csv') csv_log = csv.reader(fin) for fields in csv_log: name, email, s_ip, d_ip, date_time, lat, lon, num = fields rlat, rlon = rod(lat, lon) print('\n', 'latitude:', rlat, 'longtitude:', rlon, date_time)
12,643
3331a04a704cf5c0f4703e25fc69207e5bf37258
"""Interval based series-as-features estimators.""" __all__ = ["BaseTimeSeriesForest"] from sktime.series_as_features.base.estimators.interval_based._tsf import ( BaseTimeSeriesForest, )
12,644
16ffa5710fcf200b0869cad2b88ea935f8a45ad4
# Generated by Django 3.2.2 on 2021-05-21 13:14 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('notifications', '0001_initial'), ] operations = [ migrations.AddField( model_name='notification', name='title', field=models.CharField(default='new message', max_length=255), preserve_default=False, ), ]
12,645
09e44c3e132061e7d88b9ca7ee5b2fe9cd32105a
import json import OSC client = OSC.OSCClient() client.connect( ( '127.0.0.1', 57110 ) ) def oscgrain( frequency, vol, sustain ): msg = OSC.OSCMessage() msg.setAddress("s_new") msg.append("grain") msg.append(-1) msg.append(0) msg.append(1) msg.append("amp") msg.append(vol) msg.append("freq") msg.append(frequency) #read in data points msg.append("sustain") msg.append(sustain) client.send(msg) # read and parse brain-data file with open('/tmp/brain-data') as f: lines = f.readlines() data = [json.loads(line) for line in lines] beta_waves = [] for d in data: avg = (d.get('eegPower').get('highBeta') + d.get('eegPower').get('lowBeta')) / 2 beta_waves.append(avg) oscgrain(avg, 100/(avg), 1.00) print beta_waves
12,646
24e93271f326ddb5713ceba3e9e7788f57e7862b
""" We run a loop performing a grid search over all possible configurations of models and auxiliary losses and weight sharing enabled/disabled. Batch normalization is enabled always. For each configuration we print the results specified below, and at the end we save two files (one for executions with auxiliary losses, other for the ones without them) on stored_results/test.pt and stored_results/test_no_aux.pt. To understand the structure of the tensors, see readme.txt. """ import torch from torch import nn from models import * from train_test_functions import * print("--------------- Loading data ---------------") init_train_input, init_train_target, init_train_classes, test_input, test_target, \ test_classes = load_data() print("--------------- Data loaded ---------------") print("") criterion = nn.CrossEntropyLoss() models = ["Net", "LeNet5", "LeNet5_FullyConv", "ResNet"] weight_sharing_list = [False, True] auxiliary_list = [False, True] batch_norm_list = [True] seeds_list = [1,2,3,4,5,6,7,8,9,10] nb_epochs = 30 mini_batch_size = 100 etas = [3e-2, 5e-3, 5e-2, 5e-3] results_seed_auxilary = torch.zeros((8,len(seeds_list))) results_seed_no_auxilary = torch.zeros((4,len(seeds_list))) results_weight_sharing_auxilary = torch.zeros((len(weight_sharing_list),len(batch_norm_list),len(models),2,8)) results_weight_sharing_no_auxilary = torch.zeros((len(weight_sharing_list),len(batch_norm_list),len(models),2,4)) results_batch_norm_auxilary = torch.zeros((len(batch_norm_list),len(models),2,8)) results_batch_norm_no_auxilary = torch.zeros((len(batch_norm_list),len(models),2,4)) results_model_auxilary = torch.zeros((len(models),2,8)) results_model_no_auxilary = torch.zeros((len(models),2,4)) ############################################################################### ############################################################################### for auxiliary in auxiliary_list: for w, weight_sharing in enumerate(weight_sharing_list): for b, batch_norm in enumerate(batch_norm_list): for m, model_s in enumerate(models): for i , seed in enumerate(seeds_list): #shuffle the dataset torch.manual_seed(seed) train_input,train_target,train_classes = shuffle_data(init_train_input, init_train_target, init_train_classes) model = eval(model_s + "(" + str(batch_norm) + "," + str(weight_sharing) + ")") if(auxiliary == True): train_auxilary_loss(model, train_input, train_target, train_classes, mini_batch_size, etas[m], criterion, nb_epochs) nb_errors_img_1_training, nb_errors_img_2_training = test_classes_fn(model, train_input, train_classes, mini_batch_size) nb_errors_classes_img_1, nb_errors_classes_img_2 = test_classes_fn(model, test_input, test_classes, mini_batch_size) nb_errors_target, nb_err_last_target = test_target_fn(model, test_input, test_target, mini_batch_size) nb_errors_training, nb_err_last_training = test_target_fn(model, train_input, train_target, mini_batch_size) # training set error rate on classes results_seed_auxilary[0,i] = 100 * nb_errors_img_1_training / train_input.size(0) results_seed_auxilary[1,i] = 100 * nb_errors_img_2_training / train_input.size(0) # testing set error rate on classes results_seed_auxilary[2,i] = 100 * nb_errors_classes_img_1 / test_input.size(0) results_seed_auxilary[3,i] = 100 * nb_errors_classes_img_2 / test_input.size(0) # error rate on main loss, both in train and test sets results_seed_auxilary[4,i] = 100 * nb_errors_training / train_input.size(0) results_seed_auxilary[5,i] = 100 * nb_errors_target / test_input.size(0) # error rate on the layers performing digit comparison, both in train and test sets results_seed_auxilary[6,i] = 100 * nb_err_last_training / train_input.size(0) results_seed_auxilary[7,i] = 100 * nb_err_last_target / test_input.size(0) else: train(model, train_input, train_target, train_classes, mini_batch_size, etas[m], criterion, nb_epochs) nb_errors_target, nb_err_last_target = test_target_fn(model, test_input, test_target, mini_batch_size) nb_errors_training, nb_err_last_training = test_target_fn(model, train_input, train_target, mini_batch_size) # error rate on main loss, both in train and test sets results_seed_no_auxilary[0,i] = 100 * nb_errors_training / train_input.size(0) results_seed_no_auxilary[1,i] = 100 * nb_errors_target / test_input.size(0) # error rate on the layers performing digit comparison, both in train and test sets results_seed_no_auxilary[2,i] = 100 * nb_err_last_training / train_input.size(0) results_seed_no_auxilary[3,i] = 100 * nb_err_last_target / test_input.size(0) print("") print("") print("**********************************************************") print("- Model: " + str(model_s) + "\t - lr: " + str(etas[m]) + "\t - BatchNorm: " + str(batch_norm)) print("- Weight sharing: " + str(weight_sharing) + "\t - Auxiliary loss: " + str(auxiliary)) print("**********************************************************") print("") if(auxiliary == True): std_auxilary = torch.std(results_seed_auxilary,dim = 1) mean_auxilary = torch.mean(results_seed_auxilary,dim = 1) results_model_auxilary[m][0] = mean_auxilary results_model_auxilary[m][1] = std_auxilary print("The mean error on classes img 1 at training (%): ",round( mean_auxilary[0].item(),2),"with a std of: ",round(std_auxilary[0].item(),2)) print("The mean error on classes img 2 at training (%): ", round(mean_auxilary[1].item(),2),"with a std of: ", round(std_auxilary[1].item(),2)) print("The mean error on classes img 1 at testing (%): ", round(mean_auxilary[2].item(),2),"with a std of: ", round(std_auxilary[2].item(),2)) print("The mean error on classes img 2 at testing (%): ", round(mean_auxilary[3].item(),2),"with a std of: ", round(std_auxilary[3].item(),2)) print("The mean error on training target (%): ", round(mean_auxilary[4].item(),2),"with a std of: ", round(std_auxilary[4].item(),2)) print("The mean error on testing target (%): ", round(mean_auxilary[5].item(),2),"with a std of: ", round(std_auxilary[5].item(),2)) print("The last layer's mean Benchmark error at training (%): ", round(mean_auxilary[6].item(),2),"with a std of: ", round(std_auxilary[6].item(),2)) print("The last layer's mean Benchmark error at testing (%): ", round(mean_auxilary[7].item(),2),"with a std of: ", round(std_auxilary[7].item(),2)) else: std_no_auxilary = torch.std(results_seed_no_auxilary,dim = 1) mean_no_auxilary = torch.mean(results_seed_no_auxilary,dim = 1) results_model_no_auxilary[m][0] = mean_no_auxilary results_model_no_auxilary[m][1] = std_no_auxilary print("The mean error on training target (%): ", round(mean_no_auxilary[0].item(),2),"with a std of: ",round(std_no_auxilary[0].item(),2)) print("The mean error on testing target (%): ", round(mean_no_auxilary[1].item(),2),"with a std of: ", round(std_no_auxilary[1].item(),2)) print("The last layer's mean Benchmark error at training (%): ", round(mean_no_auxilary[2].item(),2),"with a std of: ", round(std_no_auxilary[2].item(),2)) print("The last layer's mean Benchmark error at testing (%): ", round(mean_no_auxilary[3].item(),2),"with a std of: ", round(std_no_auxilary[3].item(),2)) if (auxiliary == True): results_batch_norm_auxilary[b] = results_model_auxilary else: results_batch_norm_no_auxilary[b] = results_model_no_auxilary if(auxiliary == True): results_weight_sharing_auxilary[w] = results_batch_norm_auxilary else: results_weight_sharing_no_auxilary[w] = results_batch_norm_no_auxilary print(results_weight_sharing_auxilary.shape) print(results_weight_sharing_auxilary) print(results_weight_sharing_no_auxilary.shape) print(results_weight_sharing_no_auxilary) torch.save(results_weight_sharing_auxilary,'stored_results/test.pt') torch.save(results_weight_sharing_no_auxilary,'stored_results/test_no_aux.pt')
12,647
b22902fd28dd9321a93287360c194216a7006e73
from skimage.io import imread, imsave from skimage.transform import resize import os from tqdm import tqdm import numpy as np in_dir = 'unzippedIntervalFaces/data/%s/1.6/' img_size = (256, 256) out_dir = 'vox' format = '.jpg' if not os.path.exists(out_dir): os.makedirs(out_dir) for partition in ['train', 'test']: par_dir = os.path.join(out_dir, partition) if not os.path.exists(par_dir): os.makedirs(par_dir) celebs = open(partition + '_vox1.txt').read().splitlines() for celeb in tqdm(celebs): celeb_dir = in_dir % celeb for video_dir in os.listdir(celeb_dir): for part_dir in os.listdir(os.path.join(celeb_dir, video_dir)): result_name = celeb + "-" + video_dir + "-" + part_dir + format part_dir = os.path.join(celeb_dir, video_dir, part_dir) images = [resize(imread(os.path.join(part_dir, img_name)), img_size) for img_name in sorted(os.listdir(part_dir))] if len(images) > 100 or len(images) < 4: print ("Warning sequence of len - %s" % len(images)) result = np.concatenate(images, axis=1) imsave(os.path.join(par_dir, result_name), result)
12,648
241c0e299300d00546822d77c70c38cc0da2ca6e
import unittest from gamemanagerlib.storage.memory import MemoryStorage import gamemanagerlib.business.players import gamemanagerlib.business.teams class Tests(unittest.TestCase): def test_create_team(self): team = gamemanagerlib.business.teams.Team(name="test") team_bll = gamemanagerlib.business.teams.Business(MemoryStorage()) result = team_bll.create_team(team=team) self.assertIsNotNone(result.id) self.assertEqual(result.name, team.name) def test_assign_players(self): team = gamemanagerlib.business.teams.Team(name="test") teambll = gamemanagerlib.business.teams.Business(MemoryStorage()) created_team = teambll.create_team(team=team) player = gamemanagerlib.business.players.Player(name="test") result = teambll.assign_player(team.id , player.id) self.assertEqual(result, True) def test_get_team_by_name(self): memory = MemoryStorage() memory.map["bar"] = gamemanagerlib.business.teams.Team(name="foo") team_bll = gamemanagerlib.business.teams.Business(memory) result = team_bll.get_team(name="foo") self.assertEqual(result, memory.map["bar"]) def test_get_team_by_id(self): memory = MemoryStorage() memory.map[999] = gamemanagerlib.business.teams.Team(name="foo") team_bll = gamemanagerlib.business.teams.Business(memory) result = team_bll.get_team(id=999) self.assertEqual(result, memory.map[999]) def test_remove_player(self): memory = MemoryStorage() team = gamemanagerlib.business.teams.Team(name="foo") team.player_ids.append(1) memory.map[999] = team teambll = gamemanagerlib.business.teams.Business(memory) teambll.remove_player(team_id=999, player_id=1) self.assertEqual(memory.map[999].player_ids, []) def test_get_team_for_player(self): player_id = 1 memory = MemoryStorage() team = gamemanagerlib.business.teams.Team(name="foo") team.player_ids.append(player_id) memory.map[100] = team teambll = gamemanagerlib.business.teams.Business(memory) teams = teambll.get_player_teams(player_id) self.assertEqual(teams[0], team)
12,649
208a4a8185cba721f3bb2048702ea0505df874da
#!/usr/bin/env python # -*- coding: utf-8 -*- from kivy.app import App from kivy.core.text import LabelBase from kivy.core.window import Window from kivy.uix.button import Button from kivy.utils import get_color_from_hex as C from kivy.uix.gridlayout import GridLayout from kivy.uix.scrollview import ScrollView from kivy.properties import ObjectProperty from kivy.lang.builder import Builder import string KV = """ #:import C kivy.utils.get_color_from_hex <IconButton@Button> markup: True halign: "center" background_color: C("#0f0369") background_normal: "" color: C("#ffffff") <DisplayIcons>: # GridLayout: # cols: 6 # orientation: "lr-tb" # IconButton: # text: "[font=ModernPictograms][size=120]%a[/size][/font] \\n%a" # IconButton: # text: "[font=ModernPictograms][size=120]A[/size][/font] \\nA" # IconButton: # text: "[font=ModernPictograms][size=120]b[/size][/font] \\nb" # IconButton: # text: "[font=ModernPictograms][size=120]B[/size][/font] \\nB" # IconButton: # text: "[font=ModernPictograms][size=120]e[/size][/font] \\ne" # IconButton: # text: "[font=ModernPictograms][size=120]e[/size][/font] \\ne" # IconButton: # text: "[font=ModernPictograms][size=120]e[/size][/font] \\ne" # IconButton: # text: "[font=ModernPictograms][size=120]e[/size][/font] \\ne" # IconButton: # text: "[font=ModernPictograms][size=120]e[/size][/font] \\ne" # IconButton: # text: "[font=ModernPictograms][size=120]e[/size][/font] \\ne" # CustomButton: # text: "Custom Button" # icon: "e" """ Builder.load_string(KV) class DisplayIcons(ScrollView): def __init__(self, **kwargs): super(DisplayIcons, self).__init__(**kwargs) # self.size_hint=(1, None) # self.size = (Window.width, Window.height) self.do_scroll_y = True gridLayout = GridLayout(cols=22, orientation="lr-tb") gridLayout.bind(minimum_height=gridLayout.setter('height')) #alphabets = string.ascii_lowercase + string.ascii_uppercase + string.digits alphabets = string.printable for letter in alphabets: print("Letter: ", letter) text = "[font=ModernPictograms][size=120]%c[/size][/font] \n%c" % (letter, letter) btn = Button(text=text, markup=True, halign="center", background_color=C("#0f0369"), background_normal="", color=("#ffffff"), size=[40, 80]) gridLayout.add_widget(btn) self.add_widget(gridLayout) class CustomButton(Button): icon = ObjectProperty() def __init__(self, **kwargs): super(CustomButton, self).__init__(**kwargs) self.text = "This is a custom Button" print("icon: ", self.icon) class MainApp(App): def build(self): return DisplayIcons() def main(): LabelBase.register(name="ModernPictograms", fn_regular="../resources/modernpics.ttf") MainApp().run() if __name__ == '__main__': main()
12,650
b5d1dfdb6f1bb24c565492b4b82cdbc8ee237923
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # DESCRIPTION: # AUTHOR: artemirk@gmail.com () # =============================================================================== import sys def getmaxprofit(ray): result=0 for i in range(len(ray)-1): for l in range(i+1,len(ray)): if result < ray[i]-ray[l]: result = ray[i]-ray[l] return result stockYesterday =[10,7,5,8,11,9] print(getmaxprofit(stockYesterday))
12,651
07647faa6ad04e868aa9be77efac8ee6f8a3a39b
import os import csv root = os.path.abspath(os.getcwd()) print('root: {}'.format(root)) namesfolder = r"SSA Names List" namespath = os.path.join(root, namesfolder) print('namespath: {}'.format(namespath)) names_gender_year = dict() names_gender = dict() for namefile in os.listdir(namespath): if (namefile[:3] == "yob" and namefile[-3:] == "txt"): with open(os.path.join(namespath, namefile)) as csv_file: nameyear = namefile[3:7] csv_reader = csv.reader(csv_file, delimiter=',') for row in csv_reader: # name, gender, year ngy_key = (row[0], row[1], nameyear) # name, gender ng_key = (row[0], row[1]) if ngy_key in names_gender_year: names_gender_year[ngy_key] += int(row[2]) else: names_gender_year[ngy_key] = int(row[2]) if ng_key in names_gender: names_gender[ng_key] += int(row[2]) else: names_gender[ng_key] = int(row[2]) ngyp_dict = dict() ngp_dict = dict() for ngy_key, ngy_value in names_gender_year.items(): # Key is name, year ngyp_key = (ngy_key[0], ngy_key[2]) # value is list[gender, percent] ngy_key_m = (ngy_key[0], "M", ngy_key[2]) ngy_key_f = (ngy_key[0], "F", ngy_key[2]) percent = float(0) total = 0 males = 0 ngyp_value = [] if ngy_key_m in names_gender_year: total = males = names_gender_year[ngy_key_m] if ngy_key_f in names_gender_year: total += names_gender_year[ngy_key_f] if males/total > 0.5: ngyp_value = ['M', males/total] else: ngyp_value = ['F', (1-males/total)] ngyp_dict[ngyp_key] = ngyp_value for ng_key, ng_value in names_gender.items(): # Key is name ngp_key = ng_key[0] # value is list[gender, percent] ng_key_m = (ng_key[0], "M") ng_key_f = (ng_key[0], "F") percent = float(0) total = 0 males = 0 ngp_value = [] if ng_key_m in names_gender: total = males = names_gender[ng_key_m] if ng_key_f in names_gender: total += names_gender[ng_key_f] if males/total > 0.5: ngp_value = ['M', males/total] else: ngp_value = ['F', (1-males/total)] ngp_dict[ngp_key] = ngp_value if names_gender_year: with open(os.path.join(namespath, 'names_gender_year.csv'), 'w', newline='') as csvfile: filewriter = csv.writer(csvfile, dialect='excel', quoting=csv.QUOTE_MINIMAL) filewriter.writerow(['Name', 'Gender', 'Year', 'Count']) for key, value in names_gender_year.items(): # print("{}, {}, {}, {}".format(key[0], key[1], key[2], value)) filewriter.writerow([key[0], key[1], key[2], str(value)]) if names_gender: with open(os.path.join(namespath, 'names_gender.csv'), 'w', newline='') as csvfile: filewriter = csv.writer(csvfile, dialect='excel', quoting=csv.QUOTE_MINIMAL) filewriter.writerow(['Name', 'Gender', 'Count']) for key, value in names_gender.items(): # print("{}, {}, {}".format(key[0], key[1], value)) filewriter.writerow([key[0], key[1], str(value)]) if ngp_dict: with open(os.path.join(namespath, 'names_gender_percent.csv'), 'w', newline='') as csvfile: filewriter = csv.writer(csvfile, dialect='excel', quoting=csv.QUOTE_MINIMAL) filewriter.writerow(['Name', 'Gender', 'Percent']) for key, value in ngp_dict.items(): # print("{}, {}, {}".format(key[0], key[1], value)) filewriter.writerow([key, str(value[0]), str(value[1])]) if ngyp_dict: with open(os.path.join(namespath, 'names_gender_year_percent.csv'), 'w', newline='') as csvfile: filewriter = csv.writer(csvfile, dialect='excel', quoting=csv.QUOTE_MINIMAL) filewriter.writerow(['Name', 'Gender', 'Year', 'Percent']) for key, value in ngyp_dict.items(): # print("{}, {}, {}".format(key[0], key[1], value)) filewriter.writerow([key[0], str(value[0]), key[1], str(value[1])])
12,652
d34c3d74324cd6820733536a04b9143be9af0c20
import smtplib import ssl import threading from datetime import datetime from selenium.webdriver import Chrome from selenium.webdriver.chrome.options import Options import time from random import randrange shoprite_url = 'https://shoprite.reportsonline.com/shopritesched1/program/Imm/patient/advisory' moderna = 'COVID Moderna Dose 1' johnson = 'COVID Janssen (J&J) Single Dose ' pfizer = 'COVID Pfizer Dose 1' chrome_options = Options() chrome_options.headless = True def check_vac(vac, zipcode): driver = Chrome(options=chrome_options) driver.get(shoprite_url) while driver.page_source.find("Please select from") < 0: if driver.page_source.find("Logged Out") > 0: print("You are logged out from the website! Will reconnect in 60s!") driver.quit() time.sleep(60) driver = Chrome(options=chrome_options) driver.get(shoprite_url) else: print("You are waiting in line to enter the website!") time.sleep(60) driver.find_element_by_xpath(f"//input[@aria-label='{vac}']").click() driver.find_element_by_id("zip-input").send_keys(zipcode) driver.find_element_by_id("btnGo").click() no_avail = driver.page_source.find("There are no locations with available appointments") driver.quit() return f"zipcode: {zipcode} has {vac}" if no_avail < 0 else None zipcode= input("What zipcode you want to check? ") sender = input("Sender email: ") password = input("Sender email password: ") receiver = input("Receiver email: ") # Port for SSL port = 465 def check_and_send(): # How often to refresh the page, in seconds update = randrange(60, 300) curr_time = datetime.now().strftime("%H:%M:%S") print(f"Checking Vaccine Availability in {zipcode} at {curr_time}") # Initializes threading (repition / refreshing of website) threading.Timer(update, check_and_send).start() avail_msg = [] for vac in [moderna, johnson, pfizer]: msg = check_vac(vac, zipcode) if msg is not None: avail_msg.append(msg) if len(avail_msg) > 0: print(f"Available Appointment found near {zipcode}; sending emails!") # Message in the email. avail_vacs_msg = "\n".join(avail_msg) message = f"Subject:ShopRite Vaccine Availability\n\n{avail_vacs_msg}" # Create a secure SSL context context = ssl.create_default_context() with smtplib.SMTP_SSL("smtp.gmail.com", port, context=context) as server: server.login(sender, password) server.sendmail(sender, receiver, message) else: print(f"No availability near {zipcode}; will check again after {str(update)} seconds!") check_and_send()
12,653
5cbbe9e9079b68cb83ae94dab4db767ab567730c
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ https://adventofcode.com/2015/day/7 """ from unittest import TestCase, main from aoc.year2015.day07 import part1, part2 from data.utils import get_input EXAMPLE = """123 -> x 456 -> y x AND y -> d x OR y -> e x LSHIFT 2 -> f y RSHIFT 2 -> g NOT x -> h NOT y -> i """ class TestPart1(TestCase): def test_input(self): self.assertEqual(part1(get_input(2015, 7)), 16076) def test_example_d(self): self.assertEqual(part1(EXAMPLE, "d"), 72) def test_example_e(self): self.assertEqual(part1(EXAMPLE, "e"), 507) def test_example_f(self): self.assertEqual(part1(EXAMPLE, "f"), 492) def test_example_g(self): self.assertEqual(part1(EXAMPLE, "g"), 114) def test_example_h(self): self.assertEqual(part1(EXAMPLE, "h"), 65412) def test_example_i(self): self.assertEqual(part1(EXAMPLE, "i"), 65079) def test_example_x(self): self.assertEqual(part1(EXAMPLE, "x"), 123) def test_example_y(self): self.assertEqual(part1(EXAMPLE, "y"), 456) class TestPart2(TestCase): def test_input(self): self.assertEqual(part2(get_input(2015, 7)), 2797) if __name__ == "__main__": # pragma: no cover main()
12,654
977aeb8c7b03f84ca2d144f1d9543001f3142088
class Solution(object): def kthFactor(self, n, k): cnt = 0 for i in xrange(1, n + 1): if n % i == 0: cnt += 1 if cnt == k: return i return -1
12,655
b139c651b19211fc09d06c21548f72076f295ab7
#! /usr/bin/env python # -*- coding: utf-8 -*- # vim:fenc=utf-8 # # Copyright © 2016 vishalapr <vishalapr@vishal-Lenovo-G50-70> # # Distributed under terms of the MIT license. """ """ import numpy as np import math import random # Give a class ID to each output type classes = {} features = 7 current_class_id = 1 def get_data(data_file): global current_class_id data = [] labels = [] inp_file = open(data_file,'r') lines = inp_file.readlines() # Ignore the first line since it is just the names of each attribute for line in lines[1:]: data_point = [] data_cur = line.split(',') # Labels 4 to 10 give us the attributes which we can use to classify for i in range(4,len(data_cur)-2): data_point.append(data_cur[i]) # Add the type of the pokemon as a label labels.append(data_cur[2]) data.append(data_point) if data_cur[2] not in classes: classes[data_cur[2]] = current_class_id current_class_id += 1 return data, labels def normalize_data(data): data = np.asarray(data,dtype=np.float32) mean = data.mean(axis=0) std = data.std(axis=0) data = (data - mean) / std return data
12,656
74e90d7a154c7ae2b974d2707d4da657553c5b8b
# ispisivanje trocifrenih brojeva kod kojih je prva cifra jednaka poslednjoj import math def prva_jednaka_poslednjoj(broj): if broj/10>=10 and broj/10<=100: print("Broj je: ", broj) poslednja_cifra=broj%10 print("Poslednja cifra je: ",poslednja_cifra) prva_cifra=broj // 10 ** (int(math.log(broj, 10)) ) print("Prva cifra je : ", prva_cifra) if prva_cifra==poslednja_cifra: print("Ista cifra!") else: print("Nije ista cifra!") else: print("Nije trocifren broj!") prva_jednaka_poslednjoj(323)
12,657
32686c972ce23fa4027197694aa4752d8f04bc46
from tkinter import * def rand(): for i in range(50): label = Label(root, text="it's a button") label.grid(row=1, column=2) root = Tk() butt1 = Button(root, text='PUsh', state=DISABLED) butt1.grid(row=1, column=1) #============================================================================= butt2 = Button(root, text='cmon', padx=100, pady=30, fg='black', bg='red') butt2.grid(row=2, column=1) #fg='font color', bg='background color' padx=lenght, pady=hieght #============================================================================= butt3 = Button(root, text='click', padx=100, pady=10, command=rand) butt3.grid(row=3, column=5) #command=function root.mainloop()
12,658
602cdbc1c5e4c1f1054967cb1ff1ba57954b14ca
t=int(raw_input()) for i in range(t): a,b=(raw_input().split()) if b=="0": print "Airborne wins." else: print "Pagfloyd wins."
12,659
b1693b5a2caefa2eaf19358ea110d9ce6b82f5a8
import math import sys import linecache # function to check palindromes def palindrome_checker(number): str_num = str(number) str_reverse_num = '' for char in str_num: str_reverse_num = char + str_reverse_num if str_num == str_reverse_num: return True else: return False list = [] for i in range(0, 32): if palindrome_checker(i): list.append(i*i) list_2 = [] for item in list: if palindrome_checker(item) == True: list_2.append(item) # put file into memory # it's a small file, so f*ck you if you don't like it # Put file into memory linecache.getline(sys.argv[1], 1) for i in range(0, int(linecache.getline(sys.argv[1], 1))): line = linecache.getline(sys.argv[1], i + 2) interval_list = [int(x) for x in line.split()] small = interval_list[0] large = interval_list[1] counter = 0 for fairnsquare in list_2: if fairnsquare >= small and fairnsquare <= large: counter += 1 print "Case #%d: %d" % (i+1, counter)
12,660
c325e69ab5f6903dd93c0c2f2abe9741dac5d6ed
import socket import thread addr = "" port = int(input("Enter a port to host on:")) s = socket.socket() s.bind((addr,port)) s.listen(8) while True: conn, addr = s.accept() _thread.start_new_thread(handle_connection, (conn, addr, ))
12,661
a2f3799744b160b656924c671ac8c21dafe9b91f
import psycopg2 import psycopg2.extras import database.config as c import alpaca_trade_api # cursor info referenced: https://pynative.com/python-cursor-fetchall-fetchmany-fetchone-to-read-rows-from-table/ # PostgreSQL info referenced: https://realpython.com/python-sql-libraries/#postgresql # Alpaca info URL = c.ALPACA_URL API_KEY_ID = c.API_KEY_ID SECRET_KEY = c.SECRET_KEY # database info host = c.DB_HOST name = c.DB_NAME user = c.DB_USER password = c.DB_PASSWORD # connection to the database def create_connection(host, name, user, password): try: connection = psycopg2.connect( host=host, database=name, user=user, password=password) print('Connection to PostgreSQL database successful.') except OperationalError as e: print(f'Error connecting to database; {e}') return connection conn = create_connection(host, name, user, password) # cursor is used to execute queries cursor = conn.cursor(cursor_factory=psycopg2.extras.DictCursor) # alpaca trade api used to fetch stock information api = alpaca_trade_api.REST(API_KEY_ID, SECRET_KEY, base_url=URL)
12,662
92dde4b7b25191dccc81f3f0edf5b00256bc5277
import os import csv import argparse from Bio import Entrez from Bio import SeqIO ''' Lists to be used throughout code ''' #List of accession #'s (D1-2dpi, D1-6dpi, D3-2dpi, D3-6dpi) SRRs = ['SRR5660030.1', 'SRR5660033.1', 'SRR5660044.1', 'SRR5660045.1'] #List of conditions, corresponding to SRRs order conditions = ['2dpi', '6dpi', '2dpi', '6dpi'] #List of what the paired-end fastq files will be named fastqs = [['SRR5660030.1_1.fastq', 'SRR5660030.1_2.fastq'],['SRR5660033.1_1.fastq','SRR5660033.1_2.fastq'],['SRR5660044.1_1.fastq', 'SRR5660044.1_2.fastq'],['SRR5660045.1_1.fastq', 'SRR5660045.1_2.fastq']] bt_fastqs = [['SRR5660030.1_mapped_1.fq', 'SRR5660030.1_mapped_2.fq'],['SRR5660033.1_mapped_1.fq','SRR5660033.1_mapped_2.fq'],['SRR5660044.1_mapped_1.fq', 'SRR5660044.1_mapped_2.fq'],['SRR5660045.1_mapped_1.fq', 'SRR5660045.1_mapped_2.fq']] ''' Functions to run through steps ''' #Step 1 def get_fastq(main_wd): #read in transcriptome urls from txt file into list, which corresponds to SRRs list file = main_wd + '/sra_links.txt' SRR_infile = open(file) urls = SRR_infile.read().splitlines() SRR_infile.close #get SRA files using wget cmd for each url for url in urls: cmd = 'wget ' + url os.system(cmd) #fastq-dump to convert to paired-end fastq files #establish generic beginning string to cmd fq_dump = 'fastq-dump -I --split-files ' #use for loop to produce fq dump cmds for each SRR file for srr in SRRs: fqd_cmd = fq_dump + srr os.system(fqd_cmd) #Step 2 def get_cds(): Entrez.email = 'anovak9@luc.edu' #get fasta file of all cds in HCMV's genbank entry handle = Entrez.efetch(db = 'nucleotide', id = 'EF999921', rettype = 'fasta_cds_na', retmode = 'text') #store cds in list cds = list(SeqIO.parse(handle, 'fasta')) #write # of cds to log file outfile = open('miniProject.log', 'a') outfile.write('The HCMV genome (EF999921) has ' + str(len(cds)) + ' CDS.\n\n') outfile.close() #write list of cds to file (for running kallisto) SeqIO.write(cds, 'hcmv_cds.fasta', 'fasta') #Step 3 def run_kall_sleuth(curr_dir): #get lists global SRRs global conditions global fastqs #create reference index for HCMV #don't need to change kmer defualt size b/c reads ~150 bp in length os.system('time kallisto index -i hcmv.idx hcmv_cds.fasta') #quantify each sample for i in range(len(SRRs)): cmd = 'time kallisto quant -i hcmv.idx -o ' + SRRs[i] + '_results -b 30 -t 2 ' + fastqs[i][0] + ' ' + fastqs[i][1] os.system(cmd) #make table for sleuth header = ['sample', 'condition', 'path'] rows = [] #for each sample for i in range(len(SRRs)): #path to sample's result file path = curr_dir + '/' + SRRs[i] + '_results' #make list of sample, its condition, & its path row = [SRRs[i], conditions[i], path] rows.append(row) #write table to csv file with open('input_table.csv', 'w') as csvfile: #create csv writer object csvwriter = csv.writer(csvfile) #write headers csvwriter.writerow(header) #write sample rows csvwriter.writerows(rows) #run sleuth script cmd = 'Rscript ' + curr_dir + '/sleuth_code.R' os.system(cmd) #Step 4 def run_bowtie(): global SRRs global conditions global fastqs global bt_fastqs #get # of reads in each transcriptome before mapping before = [] for fastq in fastqs: file = fastq[0] reads = len(list(SeqIO.parse(file, 'fastq'))) before.append(reads) #build hcmv index for bowtie2 os.system('bowtie2-build hcmv_cds.fasta hcmv_bowtie_idx') #map each sample for i in range(len(SRRs)): #--al-conc option will only save reads that did map to hcmv index into .fq files cmd = 'bowtie2 --quiet -x hcmv_bowtie_idx -1 ' + fastqs[i][0] + ' -2 ' + fastqs[i][1] + ' -S ' + SRRs[i] + '_map.sam --al-conc ' + SRRs[i] + '_mapped_%.fq' os.system(cmd) #get # of reads in each transcriptome after mapping after = [] for fastq in bt_fastqs: file = fastq[0] reads = len(list(SeqIO.parse(file, 'fastq'))) after.append(reads) #make before & after lists str datatype before = list(map(str, before)) after = list(map(str, after)) #get strings to write # reads to file outputs = [] for i in range(len(SRRs)): #Donor 1 if i == 0 or i == 1: output = 'Donor 1 (' + conditions[i] + ') had ' + before[i] +\ ' read pairs before Bowtie2 filtering and ' + after[i] + ' read pairs after.' #Donor 3 else: output = 'Donor 3 (' + conditions[i] + ') had ' + before[i] +\ ' read pairs before Bowtie2 filtering and ' + after[i] + ' read pairs after.' outputs.append(output) #write to log file outfile = open('miniProject.log', 'a') outfile.write('\n\n'+'\n'.join(outputs)+'\n\n') outfile.close() #Step 5 def run_spades(kmers): global bt_fastqs #write spades assembly command to make read-pair libraries cmd = 'spades -k ' + kmers + ' -t 2 --only-assembler ' #specify paired-end libraries for i in range(4): string = '--pe' + str(i+1) + '-1 ' + bt_fastqs[i][0] + ' --pe' + str(i+1) + '-2 ' + bt_fastqs[i][1] + ' ' cmd += string cmd += '-o hcmv_assembly/' #write spades cmd to log file outfile = open('miniProject.log', 'a') outfile.write(cmd + '\n\n') outfile.close() #run assembly os.system(cmd) #Step 6/7 def get_contigs(): #get contigs fasta file from assembly contigs = list(SeqIO.parse('hcmv_assembly/contigs.fasta', 'fasta')) #filter contigs >1000 bp filt_contigs = [] #for each contig in file for contig in contigs: #if length of seq greater than 1000 bp if len(contig.seq) > 1000: #add to filtered list filt_contigs.append(contig) #print num of contiges to log file output = 'There are ' + str(len(filt_contigs)) + ' contigs > 1000 bp in the assembly.' #calculate length of assembly num_bp = 0 for contig in filt_contigs: length = len(contig.seq) num_bp += length #add to output output += '\nThere are ' + str(num_bp) + ' bp in the assembly.\n\n' #write output to log file outfile = open('miniProject.log', 'a') outfile.write(output) outfile.close() #return list of filtered contigs return filt_contigs #To use in step 8 #Returns list of top 10 hits def parse_blast(filename): #list to hold top 10 hits x = [] #open csv file and split lines into list rows blast_results = open(filename, 'r') rows = blast_results.read().splitlines() #for the first 10 rows for i in range(10): #replace commas w/a tab delimiter row = rows[i].replace(',', '\t') #add to list x x.append(row) blast_results.close() return x #Step 8 def blast(contigs): #get longest contig from list max = 0 for contig in contigs: if len(contig.seq) > max: longest = contig #write longest contig to fasta file SeqIO.write(longest, 'max_contig.fasta', 'fasta') #run a blastn on longest contig cmd = 'blastn -query max_contig.fasta -db hcmv_db -out hcmv_blastn_results.csv -outfmt "10 sacc pident length qstart qend sstart send bitscore evalue stitle" ' os.system(cmd) #get top 10 hits froom results into list 'rows' rows = parse_blast('hcmv_blastn_results.csv') headers = 'sacc\tpident\tlength\tqstart\tqend\tsstart\tsend\tbitscore\tevalue\tstitle' #list for output output = [] output.append(headers) output.extend(rows) #write to log file outfile = open('miniProject.log', 'a') outfile.write('\n'.join(output)) outfile.close() ''' Run Functions ''' #Set up argparser parser = argparse.ArgumentParser(description = 'Run python wrapper.') #Flag to specify what dataset to use (response either 'full' or 'test') parser.add_argument('dataset', type = str, help = 'The test set you want to run: full or test') args = parser.parse_args() print(args.dataset) #if testing full dataset if args.dataset == 'full': #get current working directory orig_cwd = os.getcwd() dir = 'miniProject_Annie_Novak' #change working directory into mini proj folder cwd = orig_cwd + '/' + dir os.chdir(cwd) #create output log file outfile = open('miniProject.log', 'w') outfile.close() #run functions kmers = '55,77,99,127' get_fastq(orig_cwd) get_cds() run_kall_sleuth(cwd) run_bowtie() run_spades(kmers) contigs = get_contigs() blast(contigs) #else run test dataset elif args.dataset == 'test': #get current working directory cwd = os.getcwd() dir = 'test_outputs' #change working directory into test folder cwd = cwd + '/' + dir os.chdir(cwd) #create output log file outfile = open('miniProject.log', 'w') outfile.close() #run functions kmers = '127' get_cds() run_kall_sleuth(cwd) run_bowtie() run_spades(kmers) contigs = get_contigs() blast(contigs) ''' End '''
12,663
4ab20ac1a835773190c1d28c70c9b57c89bdc4f0
import time import scipy import matplotlib.pyplot as plt import matplotlib.animation as animate import matplotlib import matplotlib.patches matplotlib.use("Agg") import sys import itertools import h5py import json import cPickle as pickle from matplotlib.animation import FuncAnimation from mpl_toolkits.axes_grid1.anchored_artists import AnchoredSizeBar import numpy as np import odor_tracking_sim.swarm_models as swarm_models import odor_tracking_sim.trap_models as trap_models import odor_tracking_sim.wind_models as wind_models import odor_tracking_sim.utility as utility import odor_tracking_sim.simulation_running_tools as srt from pompy import models,processors random_state = np.random.RandomState(1) dt = 0.25 simulation_time = 50.*60. wind_angle = np.pi/4 wind_mag = 1. wind_param = { 'speed': wind_mag, 'angle': wind_angle, 'evolving': False, 'wind_dt': None, 'dt': dt } wind_field_noiseless = wind_models.WindField(param=wind_param) #sources location_list = [(0,10),(0,20),(0,-10)] source_pos = scipy.array([scipy.array(tup) for tup in location_list]).T #Odor arena xlim = (-10., 200.) ylim = (-50., 50.) sim_region = models.Rectangle(xlim[0], ylim[0], xlim[1], ylim[1]) wind_region = models.Rectangle(xlim[0]*2,ylim[0]*2, xlim[1]*2,ylim[1]*2) im_extents = xlim[0], xlim[1], ylim[0], ylim[1] #lazy plume parameters puff_mol_amount = 1. r_sq_max=20;epsilon=0.00001;N=1e6 lazyPompyPlumes = models.OnlinePlume(sim_region, source_pos, wind_field_noiseless, simulation_time,dt,r_sq_max,epsilon,puff_mol_amount,N) plt.figure() conc_im = lazyPompyPlumes.conc_im(im_extents,samples=150) plt.imshow(conc_im,extent=im_extents,aspect='equal',origin='lower',cmap='bone_r') plt.figure() #For a point of comparison, use the Gaussian plumes to show what the image should look like approximately gaussianfitPlumes = models.GaussianFitPlume(source_pos.T,wind_angle,wind_mag) conc_im = gaussianfitPlumes.conc_im(im_extents,samples=150) plt.imshow(conc_im,extent=im_extents,aspect='equal',origin='lower',cmap='bone_r') plt.show()
12,664
68fb39c58efb1ce29746bb64149adbe2f964faf9
#!/bin/python3 import math import os import random import re import sys # Complete the pairs function below. def pairs(k, arr): # Making Hash Table of arr count_dict = {} pairs = 0 for num in arr: try: count_dict[num] += 1 except KeyError: count_dict[num] = 1 # 만들어놓은 HashTable을 순회하면서 # k를 만들 수 있는 값이 있는지 확인 for num, count in count_dict.items(): if num < k: continue else: try: # k를 만들 수 있는 숫자가 존재하는 경우 # count * 숫자 갯수 만큼 pair를 만들 수 있음 if count_dict[num-k] > 0: pairs += count * count_dict[num-k] else: continue except KeyError: continue return pairs if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') nk = input().split() n = int(nk[0]) k = int(nk[1]) arr = list(map(int, input().rstrip().split())) result = pairs(k, arr) fptr.write(str(result) + '\n') fptr.close()
12,665
e3b4464e401db26d27419cf2a3c8ea54a0469ba2
# Construir um programa que apresente a soma dos cem primeiros números naturais (1+2+3+ ... +98+99+100). Cont = 1 Soma = 0 while Cont <= 100: Soma = Soma + Cont Cont = Cont + 1 print('Resultado da soma dos numero é {}'.format(Soma))
12,666
aa5c9077e78a239c71b69a6e168c37e8dfc20ad4
from output.models.nist_data.list_pkg.non_negative_integer.schema_instance.nistschema_sv_iv_list_non_negative_integer_white_space_1_xsd.nistschema_sv_iv_list_non_negative_integer_white_space_1 import NistschemaSvIvListNonNegativeIntegerWhiteSpace1 obj = NistschemaSvIvListNonNegativeIntegerWhiteSpace1( value=[ 0, 653419462246996762, 180681427158713159, 287226779378715657, 323321198282091714, 999999999999999999, ] )
12,667
acc4dfeb54b26835e93d95ee79a347f30303c7cd
"""Voter Registration""" print ("Welcome to Votor Registration!") print ("In order to be eligible to vote, you must be at least 18 years old and a U.S Citizen") # Array of all state abbreviations us_states = ['AL', 'AK', 'AZ', 'AR','CA', 'CO','CT', 'DE','DC', 'FL', 'GA', 'HI', 'ID', 'IL','IN', 'IA','KS', 'KY','LA', 'ME', 'MD', 'MA', 'MI', 'MN','MS', 'MO','MT', 'NE','NV', 'NH', 'NJ', 'NM', 'NY', 'NC','ND', 'OH','OK', 'OR','PA', 'RI', 'SC', 'SD', 'TN', 'TX','UT', 'VT','VA', 'WA','WV', 'WI', 'WY'] # Prompt for citizenship print ("> Are you a U.S citizen? (Enter 'Y' for yes, 'N' for no)") IS_VALID_CITIZEN = False while IS_VALID_CITIZEN is False: citizen = input() if str(citizen) == 'Y' or str(citizen) == 'y': IS_VALID_CITIZEN = True elif str(citizen) == 'N' or str(citizen) == 'n': print ("> Sorry, only U.S citizens are eligible to vote.") print ("> So you'll say yes this time, right:") else: print ("> You must have misclicked... that's 'Y' for yes and 'N' for no") print ("> Please enter your response:") # Prompt for age print ("> How old are you?") IS_VALID_AGE = False while IS_VALID_AGE is False: age = input() if int(age) < 18: print ("> Sorry, you are to young to vote") print ("> You could just fake your age like the rest of us... try another one:") elif int(age) > 120: print ("> You are " + age + " years old?! Try again in the next life.") print ("> Did you have another age in mind... maybe?") else: print("> Great! Just need a little more information to verify your voter eligibilty") IS_VALID_AGE = True # Prompt for state print("> Where do you live? (U.S Territories ONLY)") print("> Enter state acronym (e.g Maryland -> MD)") IS_VALID_STATE = False while IS_VALID_STATE is False: app_state = input() if app_state in us_states: IS_VALID_STATE = True else: print("> Not a valid state. Try another:") # Prompt for zip code print("> What is your zip code?") IS_VALID_ZIP = False while IS_VALID_ZIP is False: zip = input() if zip.isnumeric() and int(zip) > 9999 and int(zip) <= 99999: IS_VALID_ZIP = True else: print("> Invalid Zip Code. Try another:") # Prompt for name... print ("> What is your first name?") FIRST_NAME = str(input()) print ("> What is your last name?") LAST_NAME = str(input()) # and print final message! print(f'> Congratulations {FIRST_NAME} {LAST_NAME}! You are eligible to vote.')
12,668
5564cfabb8fd3df8737924d14e74df416e12be29
from django.dispatch import Signal badge_awarded = Signal(providing_args=["badge"])
12,669
f349da3b9642f19790731741415cd40a28f03753
from django.db import models from datetime import datetime # Create your models here. class Rule(models.Model): id = models.IntegerField(auto_created=True, primary_key=True) description = models.CharField(max_length=300) time = models.DateTimeField(auto_now_add=True) name = models.CharField(max_length=300) type = models.CharField(max_length=200) index = models.CharField(max_length=200) num_events = models.IntegerField() filter = models.TextField(max_length = 1000) alert = models.CharField(max_length = 100) command = models.CharField(max_length = 400) runstatus = models.CharField(max_length=100,default='stopped') def __str__(self): return(self.name)
12,670
92e2f8e4bdd6b7f8a6e0fc370673cf9025ad2ac4
"""Cart-related context processors.""" from .utils import get_cart_from_request def cart(request): """Inject cart in context""" return {'cart': get_cart_from_request(request)}
12,671
28f4ceac7ed0eebac655120c834390d16c30eada
#!/usr/bin/python3 import os import crypt var=input("enter username") pswd="hello"+var if var.isalpha(): code=crypt.crypt(pswd,"22") os.system("sudo useradd -m -p "+code+" "+var) print("user created") else: print("Enter valid username")
12,672
729a7f0e248b96e89616192ef075a64b77a6fd21
""" James Taylor This example demonstrates plotting path data from raw vicon data with additional highlighting of a particular subpath argument 1 is the path to the vicon data that is to be plotted Usage: python ex_plot_hilight_subpath.py <path-to-file-containing-vicon-session-data> Example: python ex_plot_hilight_subpath.py ../../wild-robot/data/raw_experiment/vicon/trial_01.txt """ import numpy as np import wb_raw_vicon_reader as raw_vicon_reader import wbplot as wbplt import sys path = sys.argv[1] i = 5 x = raw_vicon_reader.read(path) dx = wbplt.sample_deltas(x) dims=(1,2) sgns=(1,1) fig, ax = wbplt.pathplot_figure() wbplt.pathplot_centerlines(fig, ax) wbplt.pathplot_enclosure(fig, ax) wbplt.pathplot_position(fig, ax, x, dims=dims, sgns=sgns) wbplt.pathplot_arrows(fig, ax, x,dx, dims=dims, sgns=sgns) wbplt.pathplot_endpoints(fig, ax, x, dims=dims, sgns=sgns) idxs = wbplt.find_subpaths(x, dx, dims) idx = idxs[i] wbplt.pathplot_position(fig, ax, x[idx[0]:idx[1],:], dims=dims, sgns=sgns, color='b') wbplt.pathplot_arrows(fig, ax, x[idx[0]:idx[1],:], dx[idx[0]:idx[1],:], dims=dims, sgns=sgns, color='b') wbplt.show() # aspect is likely skewed when rendered to window #wbplt.save('test.png') # aspect is preserved when rendered to file
12,673
d34ff4cf34a1ddca75d1a857f8b62f4b74d4a41d
#!/usr/bin/env python3 #-*- coding: utf-8 -*- # File Name: save_file.py # Author: Feng # Created Time: 2017年03月27日 星期一 22时37分55秒 # Content: import cgi, os import cgitb; cgitb.enable() form = cgi.FieldStorage() # 获取文件名 fileitem = form['filename'] # 检测文件是否上传 if fileitem.filename: # 设置文件路径 fn = os.path.basename(fileitem.filename) open('/tmp/' + fn, 'wb').write(fileitem.file.read()) message = 'file"' + fn + '"upload success' else: message = 'file not upload' print ("""\ Content-Type: text/html\n <html> <head> <meta charset="utf-8"> <title>W3C</title> </head> <body> <p>%s</p> </body> </html> """ % (message,))
12,674
2824aa67d636cdedd920585b71f7e460939cb374
from .folder_tools import * # from .data_module import DataModule, BucketDataset from .hdf_builder import Builder from .hdf_module import DataModule
12,675
0947246faa2faf63a6b1f8c66fd17a6b8af31797
from functools import partial import numpy as np from neupy.layers import TanhLayer, SigmoidLayer, StepOutputLayer, OutputLayer from neupy import algorithms from sklearn import datasets, preprocessing from sklearn.cross_validation import train_test_split from data import xor_input_train, xor_target_train from utils import compare_networks from base import BaseTestCase class GradientDescentTestCase(BaseTestCase): def setUp(self): super(GradientDescentTestCase, self).setUp() output = StepOutputLayer(1, output_bounds=(-1, 1)) self.connection = TanhLayer(2) > TanhLayer(5) > output def test_stochastic_gradient_descent(self): network_default_error, network_tested_error = compare_networks( # Test classes algorithms.Backpropagation, partial(algorithms.MinibatchGradientDescent, batch_size=4), # Test data (xor_input_train, xor_target_train), # Network configurations connection=self.connection, step=0.1, shuffle_data=True, verbose=False, # Test configurations epochs=40, # is_comparison_plot=True ) self.assertGreater(network_default_error, network_tested_error) def test_on_bigger_dataset(self): data, targets = datasets.make_regression(n_samples=4000) scaler = preprocessing.MinMaxScaler(feature_range=(0, 1)) data = scaler.fit_transform(data) targets = scaler.fit_transform(targets.reshape(-1, 1)) x_train, x_test, y_train, y_test = train_test_split( data, targets, train_size=0.7 ) in_size = data.shape[1] out_size = targets.shape[1] if len(targets.shape) > 1 else 1 sgd_network = algorithms.MinibatchGradientDescent( SigmoidLayer(in_size) > SigmoidLayer(300) > OutputLayer(out_size), step=0.2, batch_size=10, verbose=False, ) sgd_network.train(x_train, y_train, x_test, y_test, epochs=10) result = sgd_network.predict(x_test) test_error = sgd_network.error(result, np.reshape(y_test, (y_test.size, 1))) self.assertAlmostEqual(0.02, test_error, places=2)
12,676
a9fb285add5a20b3e1b1cca54c832df251901e26
from django.contrib import messages from django.contrib.auth.mixins import LoginRequiredMixin as LoginRequired from django.views.generic import ( DetailView, ListView, CreateView, ) from django.core.exceptions import ObjectDoesNotExist from django.http import HttpResponse, Http404 from django.urls import reverse from django.shortcuts import redirect from chambers_app.certificates.forms import ( CertificateCreateForm, CertDocumenteUploadForm, CertificateUpdateForm ) from chambers_app.certificates.models import Certificate from chambers_app.utils.monitoring import statsd_timer class CertificateQuerysetMixin(object): def get_queryset(self): qs = Certificate.objects.all() user = self.request.user if user.is_superuser: # no further checks for the superuser return qs my_orgs = user.chambersofcommerce.all() return qs.filter( org__in=my_orgs ) | qs.filter( created_by=user ) class CertificateListView(LoginRequired, CertificateQuerysetMixin, ListView): template_name = 'certificates/list.html' model = Certificate @statsd_timer("view.CertificateListView.dispatch") def dispatch(self, *args, **kwargs): return super().dispatch(*args, **kwargs) class CertificateCreateView(LoginRequired, CreateView): template_name = 'certificates/create.html' form_class = CertificateCreateForm @statsd_timer("view.CertificateCreateView.dispatch") def dispatch(self, *args, **kwargs): return super().dispatch(*args, **kwargs) def get_form_kwargs(self): k = super().get_form_kwargs() k['user'] = self.request.user return k def get_success_url(self): messages.success( self.request, "The draft certificate has been created." ) return reverse('certificates:list') class CertificateDetailView(LoginRequired, DetailView): template_name = 'certificates/detail.html' model = Certificate def get_context_data(self, *args, **kwargs): c = super().get_context_data(*args, **kwargs) certificate = self.get_object() c['file_upload_form'] = CertDocumenteUploadForm( certificate=certificate, user=self.request.user, ) c['cert_update_form'] = CertificateUpdateForm( instance=certificate ) return c def post(self, request, *args, **kwargs): obj = self.get_object() if 'lodge-certificate' in request.POST: if obj.status == Certificate.STATUS_COMPLETE: obj.lodge() messages.success(request, 'The certificate has been lodged') return redirect(obj.get_absolute_url()) elif 'file_upload' in request.POST: form = CertDocumenteUploadForm( request.POST, request.FILES, certificate=obj, user=request.user, ) if form.is_valid(): form.save() obj.save() messages.success(request, 'The document has been uploaded') else: messages.error(request, str(form.errors)) if 'delete-document' in request.POST: try: doc = obj.documents.get(id=request.POST.get('delete-document')) except ObjectDoesNotExist: raise Http404() else: if doc.file: doc.file.delete(save=False) doc.delete() obj.save() # update object status messages.success(request, "The document has been deleted") if 'certificate-update' in request.POST: CertificateUpdateForm(request.POST, instance=obj).save() messages.success(request, "The certificate has been updated") return redirect(request.path_info) class CertificateDocDownloadView(LoginRequired, CertificateQuerysetMixin, DetailView): def get_object(self): try: c = self.get_queryset().get(pk=self.kwargs['pk']) doc = c.documents.get(id=self.kwargs['doc_id']) except ObjectDoesNotExist: raise Http404() return doc def get(self, *args, **kwargs): # standard file approach document = self.get_object() response = HttpResponse(document.file, content_type='application/octet-stream') response['Content-Disposition'] = 'attachment; filename="%s"' % document.file.name return response
12,677
080ad550d8e9cbb858561ef7fd01962bbcfd35ef
from __future__ import division from visual import * """ ball = sphere(pos=(-5,0,0), radius=0.5, color=color.cyan) wallR = box(pos=(6,0,0), size=(0.2,12,12), color=color.green) ball.velocity = vector(25,0,0) deltat = 0.005 t = 0 import time #varr = arrow(pos=ball.pos, axis=ball.velocity, color=color.yellow) while True: ball.pos = ball.pos+ball.velocity * deltat t=t+deltat rate(30) """ class NetSim(object): def __init__(self): self.points = [(3,5,0), (1,2,0), (2,7,0)] def simulate(self): nodes = [] edges=[] counter=0 for point in self.points: nodes.append(sphere(pos=point, radius = 0.5, color = color.red, )) label(pos=point, text=str(counter)) counter+=1 for i in range(len(self.points)-1): edges.append(curve(pos=[self.points[i], self.points[i+1]], radius=0.01)) deltat=0.05 t=5 box(pos=(6,0,0), size=(0.2,12,12), color=color.green) s=NetSim() s.simulate()
12,678
33cf172a8807fe3a76af9dba6a9a6e3be3f4cba5
# Navigating ACSLland -- Contest 1 - 2014/15 # check the file contest_demo_input.txt to understand how this works #known error: # need to think up a way to fix the floating point roundoff error for 6:42 / 6:43 on test input 1 def process_problem(this_line): item_list = this_line.split(", ") first_starting_city = item_list[0] second_starting_city = item_list[1] first_starting_time = int(item_list[2]) first_starting_time_am_pm = item_list[3] second_starting_time = int(item_list[4]) second_starting_time_am_pm = item_list[5] first_speed = int(item_list[6]) second_speed = int(item_list[7]) total_distance = find_distance_from(first_starting_city, second_starting_city) time_difference, starting_traveller = find_time_difference(first_starting_time, first_starting_time_am_pm, second_starting_time, second_starting_time_am_pm) if starting_traveller == 1: early_bird_distance = time_difference * first_speed distance_remaining = total_distance - early_bird_distance elif starting_traveller == 2: early_bird_distance = time_difference * second_speed distance_remaining = total_distance - early_bird_distance else: early_bird_distance = 0 distance_remaining = total_distance dual_travel_time_hours = distance_remaining // (first_speed + second_speed) dual_travel_time_minutes = (distance_remaining / (first_speed + second_speed) - dual_travel_time_hours) % 1 * 60 if starting_traveller == 1: total_hours = dual_travel_time_hours + time_difference else: total_hours = dual_travel_time_hours # if # https://pyformat.info/#number_padding print('{:d}:{:02.0f}'.format(total_hours, dual_travel_time_minutes)) def find_distance_from(city1, city2): distance_list = [450, 140, 125, 365, 250, 160, 380, 235, 320] location_values = {"A":0, "B":1, "C":2, "D":3, "E":4, "F":5, "G":6, "H":7, "J":8, "K":9} #remember we will go up to, but not including the ending_spot in the for loop starting_spot = location_values[city1] ending_spot = location_values[city2] total_distance = 0 for distance_travelled in distance_list[starting_spot:ending_spot]: total_distance += distance_travelled return total_distance def find_time_difference(start_hour1, am_pm1, start_hour2, am_pm2): #convert to 24 hour time if am_pm1 == "PM" and start_hour1 != 12: start_hour1 += 12 if am_pm2 == "PM" and start_hour2 != 12: start_hour2 += 12 #catch edge case of 12am (midnight) if am_pm1 == "AM" and start_hour1 == 12: start_hour1 = 0 if am_pm1 == "AM" and start_hour2 == 12: start_hour2 = 0 time_difference = abs(start_hour1 - start_hour2) if time_difference > 12: if start_hour1 < start_hour2: start_hour1 += 24 time_difference = start_hour1 - start_hour2 starting_traveller = 2 else: start_hour2 += 24 time_difference = start_hour2 - start_hour1 starting_traveller = 1 else: if start_hour1 < start_hour2: starting_traveller = 1 elif start_hour2 < start_hour1: starting_traveller = 2 else: starting_traveller = 0 return time_difference, starting_traveller ######################################################################################################## input_file = open("contest_test_input.txt") # Loop through every line. Each line is one sample problem. for line in input_file: process_problem(line.strip() ) #strip removes the extra line break
12,679
0fc966b2bfbd7e4400a1ff7a376b60bc3bf8a7e2
from random import randint if _name_ == '_main_': # prime number P_Num = 23 G = 9 print('Prime number :%d' % (P_Num)) print('Primitive Root :%d' % (G)) # private key a pubA = 4 print('The Private Key of A :%d' % (pubA)) x = int(pow(G, pubA, P_Num)) # private key b pubB = 3 print('The Private Key of B :%d' % (pubB)) y = int(pow(G, pubB, P_Num)) # Secret key A keyA = int(pow(y, pubA, P_Num)) # Secret key B keyB = int(pow(x, pubB, P_Num)) print('Secret key for A: %d' % (keyA)) print('Secret Key for B: %d' % (keyB))
12,680
7fb18c655369c73f7de76f587eed48c08a5d7a20
#!/usr/bin/env python """ A module with classes and functions for generating test images, plates, and overlays for the screening version of openBIS. """ import canvas import string import random def generate_tile_description(tile, time = None, depth = None): """ Generate a description for the combination of well, tile, channel and, optionaly, depth and/or time """ desc = "s"+ str(tile) if depth is not None: desc = desc + "_z" + str(depth) if time is not None: desc = desc + "_t" + str(time) return desc def generate_file_name(well, channel, desc): """ Generate a name for a file using the description and channel """ return "bPLATE_w" + well + "_" + desc + "_c" + channel + ".png" def drawRect(canvas, r, g, b, start, fill = False): canvas.draw_inset_rect(r, g, b, start, fill) def drawText(canvas, x, y, text): canvas.draw_text(x, y, text) def calcTile(coords): x,y = coords return (y-1)*3+x class ColorConfig: """ Color name and color channels for an image to be created """ def __init__(self, color_name, inset): self.color_name = color_name self.inset = inset class ImageGeneratorConfig: """ Represents the configuration options for generating images """ def __init__(self): self.number_of_tiles = 9 self.image_size = 512 self.bit_depth = 8 self.is_split = False self.color_configs = [ None ] # Use an array with None for not time points / depth points self.time_points = [ None ] self.depth_points = [ None ] self.tile_description_generator = generate_tile_description class PlateGeneratorConfig(ImageGeneratorConfig): """ Represents the configuration options for generating plates """ def __init__(self): ImageGeneratorConfig.__init__(self) self.rows = 8 self.cols = 12 class WellGenerator: """ A class that generates raw images or overlays for a well. Used by the PlateGenerator and ImageGenerator. """ def __init__(self, config, well, directory): """Constructor that takes the config and the well we are generating images for.""" self.config = config self.well = well self.directory = directory def generate_raw_images(self): for tile in range(1, self.config.number_of_tiles + 1): for time in self.config.time_points: for depth in self.config.depth_points: desc = self.config.tile_description_generator(tile, time, depth) if self.config.is_split: for color_config in self.config.color_configs: file_name = self._generate_raw_file_name(self.well, color_config.color_name, desc) self._generate_tile(file_name, desc, color_config.inset) else: file_name = self._generate_raw_file_name(self.well, "RGB", desc) self._generate_tile(file_name, desc, 1) def generate_overlay_images(self, overlay_name, x, y): """ Generate overlay images containing text x, y The arguments x and y may be negative, in which case the position will be offset from the right/top edge of the image. """ for tile in range(1, self.config.number_of_tiles + 1): for time in self.config.time_points: for depth in self.config.depth_points: desc = self.config.tile_description_generator(tile, time, depth) file_name = self._generate_overlay_file_name(self.well, overlay_name, desc) self._generate_overlay(file_name, overlay_name + '-' + self.well + '-' + desc, x, y) def _generate_tile(self, filename, tile_desc, inset): if self.config.is_split: # if split, we want to draw white instead of the specified color, since # the channel assignment will happen in openBIS, not here tile_canvas = canvas.TileCanvas(self.config.image_size, self.config.image_size, self.config.bit_depth, True) drawRect(tile_canvas, 0, 0, 0, 0, False) # fill with black drawRect(tile_canvas, 1, 1, 1, inset * random.gauss(1.0, 0.2), False) else: tile_canvas = canvas.TileCanvas(self.config.image_size, self.config.image_size) drawRect(tile_canvas, 0, 0, 0, 0) # fill with black drawRect(tile_canvas, 1, 0, 0, 20) # red drawRect(tile_canvas, 0, 1, 0, 70) # green drawRect(tile_canvas, 0, 0, 1, random.randint(120, 200)) # blue # text annotation drawText(tile_canvas, 5, self.config.image_size - 70, self.directory) drawText(tile_canvas, 5, self.config.image_size / 2, tile_desc) drawText(tile_canvas, 5, 5, self.well) # Write the bitmap to disk in PNG format tile_canvas.write_png_file(self.directory + "/" + filename) def _generate_overlay(self, filename, overlay_desc, x, y): tile_canvas = canvas.TileCanvas(self.config.image_size, self.config.image_size) textx = x if textx < 0: textx = self.config.image_size - x texty = y if texty < 0: texty = self.config.image_size - y # text annotation drawText(tile_canvas, textx, texty, overlay_desc) # Write the bitmap to disk in PNG format tile_canvas.write_png_file(self.directory + "/" + filename) def _generate_raw_file_name(self, well, channel, desc): """ Generate a name for a file using the description and channel """ return "bPLATE_w" + well + "_" + desc + "_c" + channel + ".png" def _generate_overlay_file_name(self, well, channel, desc): """ Generate a name for a file using the description and channel """ return "c" + channel + "_w" + well + "_" + desc + ".png" class PlateGenerator: """ A class that generates raw images or overlays for a plate. Similar to GenericImageGenerator, but with plates added. To use, instantiate it with a PlateGeneratorConfig that describes its properties, then call generate_raw_images or generate_overlays """ def __init__(self, config): """Constructor that takes the configuration for the plate""" self.config = config def generate_raw_images(self, directory): for row in range(0, self.config.rows): for col in range(1, self.config.cols + 1): well = string.letters[26 + row] + str(col) well_generator = WellGenerator(self.config, well, directory) well_generator.generate_raw_images() def generate_overlay_images(self, directory, overlay_name, x, y): for row in range(0, self.config.rows): for col in range(1, self.config.cols + 1): well = string.letters[26 + row] + str(col) well_generator = WellGenerator(self.config, well, directory) well_generator.generate_overlay_images(overlay_name, x, y) class GenericImageGeneratorConfig(ImageGeneratorConfig): """ Represents the configuration options for generating plates """ def __init__(self): ImageGeneratorConfig.__init__(self) self.number_of_tiles = 1 class GenericImageGenerator: """ A class that generates raw images or overlays simulating images from a microscope. Similar to PlateGenerator, except without the plates. To use, instantiate it with a ImageGeneratorConfig that describes its properties, then call generate_raw_images or generate_overlays """ def __init__(self, config): """Constructor that takes the configuration for the plate""" self.config = config def generate_raw_images(self, directory): well_generator = WellGenerator(self.config, "", directory) well_generator.generate_raw_images()
12,681
6786c79c2a198641c3f6fd9213eda7b051429e02
#!/usr/bin/python # # Copyright 2015 John Kendrick # # This file is part of PDielec # # This program is free software; you can redistribute it and/or modify # it under the terms of the MIT License # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # You should have received a copy of the MIT License # along with this program, if not see https://opensource.org/licenses/MIT # """Read the contents of a Castep output file Inherit the following from the GenericOutputReader __init__ printInfo _read_output_file _DyanmicalMatrix """ import re import os import numpy as np from Python.UnitCell import UnitCell from Python.GenericOutputReader import GenericOutputReader class CastepOutputReader(GenericOutputReader): """Read the contents of a Castep output file Inherit the following from the GenericOutputReader __init__ printInfo _read_output_file _DyanmicalMatrix _read_till_phrase """ def __init__(self, filenames): GenericOutputReader.__init__(self, filenames) if filenames[0].find(".castep"): seedname, ext = os.path.splitext(filenames[0]) elif filenames[0].find(".phonon"): seedname, ext = os.path.splitext(filenames[0]) self._castepfile = seedname+".castep" self._phononfile = seedname+".phonon" self.names = [self._castepfile, self._phononfile] self._outputfiles = [self._castepfile, self._phononfile] self.type = 'Castep output' # Specific Castep Reader Variables self._pspots = {} self._ediff = 0.0 self._epsilon = None self._nbranches = 0 self._pulay = None self._ion_type_index = {} self._ion_index_type = {} self._intensities = None return def _read_output_files(self): """For the .castep file""" self.manage = {} # Empty the dictionary matching phrases self.manage['spin'] = (re.compile(' *net spin of'), self._read_spin) self.manage['nelect'] = (re.compile(' *number of electrons'), self._read_nelect) self.manage['cellcontents'] = (re.compile(' *Unit Cell'), self._read_cellcontents) self.manage['pspots'] = (re.compile(' *Files used for pseudopotentials:'), self._read_pspot) self.manage['masses'] = (re.compile(' *Mass of species in AMU'), self._read_masses) self.manage['kpoints'] = (re.compile(' *Number of kpoints used'), self._read_kpoints) self.manage['kpoint_grid'] = (re.compile(' *MP grid size for SCF'), self._read_kpoint_grid) self.manage['finalenergy'] = (re.compile(' *Final energy, E'), self._read_energies) self.manage['finalenergy2'] = (re.compile('Final energy ='), self._read_energies2) self.manage['finalenergy3'] = (re.compile('Dispersion corrected final energy'), self._read_energies3) self.manage['energy_cutoff'] = (re.compile(' *plane wave basis set cut'), self._read_energy_cutoff) self.manage['nbands'] = (re.compile(' *number of bands'), self._read_nbands) self.manage['pressure'] = (re.compile(' *\* *Pressure: '), self._read_external_pressure) self.manage['opticalDielectric'] = (re.compile(' *Optical Permittivity'), self._read_dielectric) self.manage['bornCharges'] = (re.compile(' *Born Effective Charges'), self._read_born_charges) # For the .phonon file self.manage['frequency'] = (re.compile(' q-pt= 1 0.000000 0.000000 0.000000 1.0000000000 *$'), self._read_frequencies) self.manage['nbranches'] = (re.compile(' Number of branches'), self._read_nbranches) for f in self._outputfiles: self._read_output_file(f) return def _read_nbranches(self, line): # phonon file being read self._nbranches = int(line.split()[3]) def _read_frequencies(self, line): # phonon file being read self.mass_weighted_normal_modes = [] # maybe should use _nbranches frequencies = [] intensities = [] normal_modes = [] for imode in range(self._nbranches): line = self.file_descriptor.readline() frequencies.append(float(line.split()[1])) intensities.append(float(line.split()[2])) line = self.file_descriptor.readline() line = self.file_descriptor.readline() for imode in range(self._nbranches): a = [] for ion in range(self.nions): line = self.file_descriptor.readline() a.append([float(line.split()[2]), float(line.split()[4]), float(line.split()[6])]) # end for ion normal_modes.append(a) # end for imode self.frequencies = [] self._intensities = [] self.mass_weighted_normal_modes = [] # now reads all frequencies imaginary or not # imaginary frequencies are indicated by real negative values for i, freq in enumerate(frequencies): self.frequencies.append(freq) self._intensities.append(intensities[i]) self.mass_weighted_normal_modes.append(normal_modes[i]) # end of if freq # end of for freq return def _read_kpoint_grid(self, line): self.kpoint_grid = [ int(line.split()[7]), int(line.split()[8]), int(line.split()[9]) ] return def _read_kpoints(self, line): self.kpoints = int(line.split()[5]) return def _read_nbands(self, line): self.nbands = int(line.split()[4]) return def _read_pseudoatom(self, line): species = line.split()[5].capitalize() # These are two private dictionary to map the species name to a type index self.species.append(species) self._ion_type_index[species] = self.nspecies self._ion_index_type[self.nspecies] = species self.nspecies += 1 return def _read_cellcontents(self, line): line = self._read_till_phrase(re.compile(' *Real Lattice')) line = self.file_descriptor.readline() avector = [float(line.split()[0]), float(line.split()[1]), float(line.split()[2])] line = self.file_descriptor.readline() bvector = [float(line.split()[0]), float(line.split()[1]), float(line.split()[2])] line = self.file_descriptor.readline() cvector = [float(line.split()[0]), float(line.split()[1]), float(line.split()[2])] self.unit_cells.append(UnitCell(avector, bvector, cvector)) self.ncells = len(self.unit_cells) line = self._read_till_phrase(re.compile(' *Current cell volume')) self.volume = float(line.split()[4]) if self.nions == 0: line = self._read_till_phrase(re.compile(' *Total number of ions in cell')) if len(self.unit_cells) == 1: self.nions = int(line.split()[7]) line = self.file_descriptor.readline() self.nspecies = int(line.split()[7]) line = self.file_descriptor.readline() line = self.file_descriptor.readline() line = self.file_descriptor.readline() line = self.file_descriptor.readline() line = self.file_descriptor.readline() line = self.file_descriptor.readline() # end if self.nions else: # Not all Unit Cell output is the same in Castep 17 line = self._read_till_phrase(re.compile(' *xxxxxxxxxxxxxxxxxxxxxxxxxxxx')) line = self.file_descriptor.readline() line = self.file_descriptor.readline() line = self.file_descriptor.readline() # end of else fractional_coordinates = [] # ions_per_type is a dictionary here and is local ions_per_type = {} self.atom_type_list = [] self.species = [] species_list = [] for i in range(self.nions): line = self.file_descriptor.readline() atom_type = line.split()[1].capitalize() species_list.append(atom_type) if atom_type not in ions_per_type: self.species.append(atom_type) ions_per_type[atom_type] = 0 self.atom_type_list.append(self.species.index(atom_type)) ions_per_type[atom_type] += 1 atom_frac = [float(f) for f in line.split()[3:6]] fractional_coordinates.append(atom_frac) # At some point we should store the fractional coordinates for species in self.species: n = ions_per_type[species] # self.ions_per_type is a list self.ions_per_type.append(n) self.unit_cells[-1].set_fractional_coordinates(fractional_coordinates) self.unit_cells[-1].set_element_names(species_list) return def _read_masses(self, line): self.masses = [] self.masses_per_type = [] self.species = [] self.nspecies = 0 line = self.file_descriptor.readline() while len(line.split()) != 0: species = line.split()[0].capitalize() mass = float(line.split()[1]) nions = self.ions_per_type[self.nspecies] self.species.append(species) # These are two private dictionary to map the species name to a type index # self._ion_type_index[species] = self.nspecies self._ion_index_type[self.nspecies] = species self.masses_per_type.append(mass) self.nspecies += 1 for j in range(nions): self.masses.append(mass) line = self.file_descriptor.readline() # end while loop return def _read_born_charges(self, line): """Read the born charges from the castep file. Each column of the output refers to a given field direction Each row in the row refers the atomic displacement So the numbers in the output are arrange [[a1x a2x a3x] [a1y a2y a3y] [a1z a2z a3z]] The output tensor needs them arranged [[a1x a1y a1z] [a2x a2y a2z] [a3x a3y a3z]] where 1,2,3 are the field directions and x, y, z are the atomic displacements""" line = self.file_descriptor.readline() self.born_charges = [] for i in range(self.nions): b = [] line = self.file_descriptor.readline() b.append([float(f) for f in line.split()[2:5]]) line = self.file_descriptor.readline() b.append([float(f) for f in line.split()[0:3]]) line = self.file_descriptor.readline() b.append([float(f) for f in line.split()[0:3]]) B = np.array(b) C = B.T self.born_charges.append(C.tolist()) return def _read_dielectric(self, line): line = self.file_descriptor.readline() line = self.file_descriptor.readline() # this is epsilon infinity self.zerof_optical_dielectric = [] # this is the zero frequency static dielectric constant self.zerof_static_dielectric = [] self.zerof_optical_dielectric.append([float(f) for f in line.split()[0:3]]) self.zerof_static_dielectric.append([float(f) for f in line.split()[3:6]]) line = self.file_descriptor.readline() self.zerof_optical_dielectric.append([float(f) for f in line.split()[0:3]]) self.zerof_static_dielectric.append([float(f) for f in line.split()[3:6]]) line = self.file_descriptor.readline() self.zerof_optical_dielectric.append([float(f) for f in line.split()[0:3]]) self.zerof_static_dielectric.append([float(f) for f in line.split()[3:6]]) return def _read_skip4(self, line): self.file_descriptor.readline() self.file_descriptor.readline() self.file_descriptor.readline() self.file_descriptor.readline() return def _read_external_pressure(self, line): self.pressure = float(line.split()[2]) return def _read_pspot(self, line): for i in range(self.nspecies): line = self.file_descriptor.readline() self._pspots[line.split()[0]] = line.split()[1] return def _read_spin(self, line): self.spin = int(float(line.split()[5])) return def _read_energy_cutoff(self, line): self.energy_cutoff = float(line.split()[6]) return def _read_ediff(self, line): self._ediff = float(line.split()[2]) return def _read_nelect(self, line): self.electrons = int(float(line.split()[4])) return def _read_epsilon(self, line): var = line.split()[2].lower() self.epsilon = False if var == '.true.' or var == 't' or var == 'true': self.epsilon = True return def _read_energies(self, line): self.final_energy_without_entropy = float(line.split()[4]) line = self.file_descriptor.readline() self.final_free_energy = float(line.split()[5]) return def _read_energies2(self, line): self.final_energy_without_entropy = float(line.split()[3]) self.final_free_energy = float(line.split()[3]) return def _read_energies3(self, line): self.final_energy_without_entropy = float(line.split()[5]) self.final_free_energy = float(line.split()[5]) return
12,682
1f20c2dff1236cec4ab02324bc29c03459342991
#!/usr/bin/python from __future__ import absolute_import, print_function, unicode_literals from optparse import OptionParser, make_option import os import sys import socket import uuid import dbus import dbus.service import dbus.mainloop.glib import mraa import time try: from gi.repository import GObject except ImportError: import gobject as GObject class Profile(dbus.service.Object): fd = -1 @dbus.service.method("org.bluez.Profile1", in_signature="", out_signature="") def Release(self): print("Release") mainloop.quit() @dbus.service.method("org.bluez.Profile1", in_signature="", out_signature="") def Cancel(self): print("Cancel") @dbus.service.method("org.bluez.Profile1", in_signature="oha{sv}", out_signature="") def NewConnection(self, path, fd, properties): self.fd = fd.take() print("NewConnection(%s, %d)" % (path, self.fd)) server_sock = socket.fromfd(self.fd, socket.AF_UNIX, socket.SOCK_STREAM) server_sock.setblocking(1) #server_sock.send("This is Edison SPP loopback test\nAll data will be loopback\nPlease start:\n") try: while True: data = server_sock.recv(1024) print("received: %s" % data) saved_data = data while "start" == saved_data: server_sock.send(getSensorData()) time.sleep(5) except IOError: pass server_sock.close() print("all done") @dbus.service.method("org.bluez.Profile1", in_signature="o", out_signature="") def RequestDisconnection(self, path): print("RequestDisconnection(%s)" % (path)) if (self.fd > 0): os.close(self.fd) self.fd = -1 def getSensorData(): # temp,humi,light,uv,pir,ms #temp/humi is on I2C temp = mraa.I2c(0) temp.address(0x40) #getting temperature temp.writeReg(0x03, 0x11) temp_value = temp.readWordReg(3) temp_value = temp_value >> 2 temp_value = (temp_value / 32.0) - 50.0 #should be around temp= 20.0 humi = mraa.I2c(0) humi.address(0x40) humi.writeReg(0x03, 0x01) humi_value = humi.readWordReg(3) humi_value = humi_value >> 4 humi_value = (humi_value / 16.0) - 24.0 #should be around humi=60.0 light = mraa.Aio(2) #light is A2 ligh_value = light.read() uv = mraa.Aio(3) #UV is A3 uv_value = uv.read() pir = mraa.Gpio(7) #PIR motion sensor is D7 pir_value = pir.read() ms = mraa.Aio(1) #moisture is A1 ms_value = ms.read() return "%f,%f,%f,%f,%f,%f" % (temp_value, humi_value, ligh_value, uv_value, pir_value, ms_value) if __name__ == '__main__': dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) bus = dbus.SystemBus() manager = dbus.Interface(bus.get_object("org.bluez", "/org/bluez"), "org.bluez.ProfileManager1") option_list = [ make_option("-C", "--channel", action="store", type="int", dest="channel", default=None), ] parser = OptionParser(option_list=option_list) (options, args) = parser.parse_args() options.uuid = "1101" options.psm = "3" options.role = "server" options.name = "Edison SPP Loopback" options.service = "spp char loopback" options.path = "/foo/bar/profile" options.auto_connect = False options.record = "" profile = Profile(bus, options.path) mainloop = GObject.MainLoop() opts = { "AutoConnect": options.auto_connect, } if (options.name): opts["Name"] = options.name if (options.role): opts["Role"] = options.role if (options.psm is not None): opts["PSM"] = dbus.UInt16(options.psm) if (options.channel is not None): opts["Channel"] = dbus.UInt16(options.channel) if (options.record): opts["ServiceRecord"] = options.record if (options.service): opts["Service"] = options.service if not options.uuid: options.uuid = str(uuid.uuid4()) manager.RegisterProfile(options.path, options.uuid, opts) mainloop.run()
12,683
4540785a880d560ad0dc3d98087dd691a65eb052
""" Program to group the extracted tweets (from Tweet IDs) based on the number of hashtags Lang: py3 """ import sys import json OUTPUT_DIR = os.path.join(os.getcwd(), 'output') if(__name__ == "__main__"): if(not(len(sys.argv) == 2)): print("Usage: group_tweets.py <TWEET_DUMP_FILEPATH>") sys.exit() #Input filepath input_filepath = sys.argv[1] #If the input file is X/Y/input_file.jsonl, then output filename is input_file_<X>h.jsonl #Output filename for tweets containing 1 hashtag output_0h_filepath = OUTPUT_DIR + input_filepath.split("/")[-1].split(".")[0] + "_0h.jsonl" #Output filename for tweets containing 1 hashtag output_1h_filepath = OUTPUT_DIR + input_filepath.split("/")[-1].split(".")[0] + "_1h.jsonl" #Output filename for tweets containing 2, 3 or 4 hashtags output_234h_filepath = OUTPUT_DIR + input_filepath.split("/")[-1].split(".")[0] + "_234h.jsonl" #Output filename for tweets containing >=5 hashtags output_other_filepath = OUTPUT_DIR + input_filepath.split("/")[-1].split(".")[0] + "_other.jsonl" try: fp_0h = open(output_0h_filepath, "w") fp_1h = open(output_1h_filepath, "w") fp_234h = open(output_234h_filepath, "w") fp_other = open(output_other_filepath, "w") except IOError: print("Error while creating new files!!!") sys.exit() #./getTweets/news_outlets.jsonl with open(input_filepath) as f: for line in f: tweet_json = json.loads(line) tags = tweet_json['entities']['hashtags'] tags_len = len(tags) if(tags_len == 0): fp_0h.write(line) elif(tags_len == 1): fp_1h.write(line) elif(tags_len >= 2 and tags_len <= 4): fp_234h.write(line) else: fp_other.write(line) fp_0h.close() fp_1h.close() fp_234h.close() fp_other.close()
12,684
93ce504f02c2fc759742c673c69b801f937aadc4
import sys import os from dotenv import load_dotenv sys.path.append("./") from execute_notebook import * # noqa: F403, E402 def test_main(): load_dotenv() shard = os.environ["DATABRICKS_HOST"] token = os.environ["DATABRICKS_TOKEN"] workspace_path = os.environ["DATABRICKS_WORKSPACE_PATH"] library_path = os.environ["DATABRICKS_LIBRARY_PATH"] outfile_path = os.environ["DATABRICKS_OUTFILE_PATH"] notebook_name = "main_notebook.py" print( f"running notebook {notebook_name}, output will be in {outfile_path}" ) # noqa: E501 json_output = execute_notebook( # noqa: F405 shard, token, library_path, notebook_name, workspace_path, outfile_path ) assert json_output["state"]["result_state"] == "SUCCESS" if __name__ == "__main__": test_main()
12,685
e085d6e9ca2e83c4437bf7dce00a235445ef30ae
"""Wiener Process""" from typing import Dict, List, Union import numpy as np from pyesg.stochastic_process import StochasticProcess from pyesg.utils import to_array class WienerProcess(StochasticProcess): """ Generalized Wiener process: dX = μdt + σdW Examples -------- >>> wp = WienerProcess.example() >>> wp <pyesg.WienerProcess(mu=0.05, sigma=0.2)> >>> wp.drift(x0=0.0) array([0.05]) >>> wp.diffusion(x0=0.0) array([0.2]) >>> wp.expectation(x0=0.0, dt=0.5) array([0.025]) >>> wp.standard_deviation(x0=0.0, dt=0.5) array([0.14142136]) >>> wp.step(x0=0.0, dt=1.0, random_state=42) array([0.14934283]) >>> wp.step(x0=np.array([1.0]), dt=1.0, random_state=42) array([1.14934283]) """ def __init__(self, mu: float, sigma: float) -> None: super().__init__() self.mu = mu self.sigma = sigma def coefs(self) -> Dict[str, float]: return dict(mu=self.mu, sigma=self.sigma) def _apply(self, x0: np.ndarray, dx: np.ndarray) -> np.ndarray: # arithmetic addition to update x0 return x0 + dx def _drift(self, x0: np.ndarray) -> np.ndarray: # drift of a Wiener process does not depend on x0 return np.full_like(x0, self.mu, dtype=np.float64) def _diffusion(self, x0: np.ndarray) -> np.ndarray: # diffusion of a Wiener process does not depend on x0 return np.full_like(x0, self.sigma, dtype=np.float64) @classmethod def example(cls) -> "WienerProcess": return cls(mu=0.05, sigma=0.2) class JointWienerProcess(StochasticProcess): """ Joint Wiener processes: dX = μdt + σdW Examples -------- >>> jwp = JointWienerProcess( ... mu=[0.05, 0.03], sigma=[0.20, 0.15], correlation=[[1.0, 0.5], [0.5, 1.0]] ... ) >>> jwp.drift(x0=[1.0, 1.0]) array([0.05, 0.03]) >>> jwp.diffusion(x0=[1.0, 1.0]) array([[0.2 , 0. ], [0.075 , 0.12990381]]) >>> jwp.expectation(x0=[1.0, 1.0], dt=0.5) array([1.025, 1.015]) >>> jwp.standard_deviation(x0=[1.0, 2.0], dt=2.0) array([[0.28284271, 0. ], [0.10606602, 0.18371173]]) >>> jwp.step(x0=np.array([1.0, 1.0]), dt=1.0, random_state=42) array([1.14934283, 1.0492925 ]) >>> jwp.correlation = [[1.0, 0.99], [0.99, 1.0]] >>> jwp.step(x0=np.array([1.0, 1.0]), dt=1.0, random_state=42) array([1.14934283, 1.10083636]) """ def __init__( self, mu: Union[List[float], List[int], np.ndarray], sigma: Union[List[float], List[int], np.ndarray], correlation: Union[List[float], np.ndarray], ) -> None: super().__init__(dim=len(mu)) self.mu = to_array(mu) self.sigma = to_array(sigma) self.correlation = to_array(correlation) def coefs(self) -> Dict[str, np.ndarray]: return dict(mu=self.mu, sigma=self.sigma, correlation=self.correlation) def _apply(self, x0: np.ndarray, dx: np.ndarray) -> np.ndarray: # arithmetic addition to update x0 return x0 + dx def _drift(self, x0: np.ndarray) -> np.ndarray: # mu is already an array of expected returns; it doesn't depend on x0 return np.full_like(x0, self.mu, dtype=np.float64) def _diffusion(self, x0: np.ndarray) -> np.ndarray: # diffusion does not depend on x0, but we want to match the shape of x0. If x0 # has shape (100, 2), then we want to export an array with size (100, 2, 2) volatility = np.diag(self.sigma) if x0.ndim > 1: # we have multiple start values for each index volatility = np.repeat(volatility[None, :, :], x0.shape[0], axis=0) cholesky = np.linalg.cholesky(self.correlation) return volatility @ cholesky @classmethod def example(cls) -> "JointWienerProcess": return cls( mu=[0.05, 0.03], sigma=[0.20, 0.15], correlation=[[1.0, 0.5], [0.5, 1.0]] )
12,686
4fff48cc19b31c1f1c2264e59311c703b563b53d
import vmware.common.base_facade as base_facade import vmware.common.constants as constants import vmware.interfaces.labels as labels import vmware.common.global_config as global_config import vmware.nsx.manager.logical_switch.api.logical_switch_api_client as logical_switch_api_client # noqa import vmware.nsx.manager.logical_switch.logical_switch as logical_switch import vmware.nsx.manager.logical_switch.cli.logical_switch_cli_client as logical_switch_cli_client # noqa import vmware.nsx.manager.logical_switch.cmd.logical_switch_cmd_client as logical_switch_cmd_client # noqa import vmware.nsx.manager.logical_switch.ui.logical_switch_ui_client as logical_switch_ui_client # noqa import vmware.nsx.manager.transport_zone.transport_zone_facade as transport_zone_facade # noqa pylogger = global_config.pylogger def _preprocess_resolve_switch_name(obj, kwargs): """ Determine the anticipated host switch name for the logical switch respresented by <obj> and store it in caller's <kwargs>. If an existing name is present, use it. @type obj: logical switch facade @param obj: the facade interfacing to a specific logical switch @type kwargs: dict @param kwargs: Reference to dictionary. @rtype None """ # Determine the expected host_switch_name from the associated # TransportZone. This must be done via API regardless of requested # execution_type. if kwargs.get('host_switch_name') is None: # XXX(jschmidt): read() should be able to default to proper # obj.id_ instead of requiring explicit caller input. tz_id = obj.read(id_=obj.id_)["transport_zone_id"] pylogger.debug("Retrieved logical switch transport_zone_id: %s" % tz_id) tz = transport_zone_facade.TransportZoneFacade(parent=obj.parent, id_=tz_id) tz_switch_name = tz.read(id_=tz.id_)["switch_name"] pylogger.debug("Retrieved transport zone switch_name: %s" % tz_switch_name) kwargs.update({'host_switch_name': tz_switch_name}) class LogicalSwitchFacade(logical_switch.LogicalSwitch, base_facade.BaseFacade): DEFAULT_EXECUTION_TYPE = constants.ExecutionType.API DEFAULT_IMPLEMENTATION_VERSION = "NSX70" def __init__(self, parent=None, id_=None): super(LogicalSwitchFacade, self).__init__(parent) self.id_ = id_ self.nsx_manager_obj = parent # instantiate client objects api_client = logical_switch_api_client.LogicalSwitchAPIClient( parent=parent.get_client(constants.ExecutionType.API), id_=self.id_) cli_client = logical_switch_cli_client.LogicalSwitchCLIClient( id_=self.id_) cmd_client = logical_switch_cmd_client.LogicalSwitchCMDClient( id_=self.id_) ui_client = logical_switch_ui_client.LogicalSwitchUIClient( parent=parent.get_client(constants.ExecutionType.UI), id_=self.id_) self._clients = {constants.ExecutionType.API: api_client, constants.ExecutionType.CLI: cli_client, constants.ExecutionType.CMD: cmd_client, constants.ExecutionType.UI: ui_client} @base_facade.auto_resolve(labels.SWITCH) def get_switch_vni(self, execution_type=None, **kwargs): pass @base_facade.auto_resolve(labels.SWITCH, preprocess=_preprocess_resolve_switch_name) def get_vtep_table(self, execution_type=None, **kwargs): pass
12,687
0351bc4b6e53a8468f2f5137989f739456bdde4d
from django.core.management.base import BaseCommand, CommandError from blog.models import OrdenCorrplan as OrdenCorrplan from blog.models import FotoCorrplan as FotoCorrplan from blog.models import Cartones as Cartones from blog.models import Maquinas as Maquinas from blog.models import ConsumoRollos as ConsumoRollos from blog.models import Foto_ConsumoRollos as Foto_ConsumoRollos from django.utils import timezone from datetime import datetime, timedelta from time import time, sleep import pruebaAPIRollCons class Command(BaseCommand): help = 'Closes the specified poll for voting' def add_arguments(self, parser): #parser.add_argument('poll_id', nargs='+', type=int) poll_id="hola" def handle(self, *args, **options): while(1): try: ##Calculo los turnos que quiero actualizar. labels=[] ahora=datetime.now().replace(hour= 0, minute=0, second=0, microsecond=0) for i in range(0,3): #por ahora los voy a ordenar por turno, después por hora. fechaini=(ahora-timedelta(days=3-i)).replace(hour= 7) fechafin=(ahora-timedelta(days=3-i)).replace(hour= 14, minute=30) turno="A" label= fechaini.strftime("%d-%m") + " " + turno #calculo el m2 real convertido y corrugado en ese turno, para comparar con las salidas y entradas declaradas #print(m2Corr) labels.append({"fechaini":fechaini ,"fechafin":fechafin ,"turno":turno, "label": label}) fechaini=(ahora-timedelta(days=3-i)).replace(hour= 14, minute=30) fechafin=(ahora-timedelta(days=3-i)).replace(hour= 22) turno="B" label= fechaini.strftime("%d-%m") + " " + turno #print(m2Corr) labels.append({"fechaini":fechaini ,"fechafin":fechafin ,"turno":turno, "label": label}) fechaini=(ahora-timedelta(days=3-i)).replace(hour= 22) fechafin=(ahora-timedelta(days=3-i-1)).replace(hour= 7) turno="C" label= fechaini.strftime("%d-%m") + " " + turno labels.append({"fechaini":fechaini ,"fechafin":fechafin ,"turno":turno, "label": label}) print("ahora calculo las listas de lo que se declaró como ingreso y como salida al wip ") for label in labels: print(label['label']) consumos=pruebaAPIRollCons.cargaconsbob(label['fechaini'],label['fechafin']) foto, created =Foto_ConsumoRollos.objects.get_or_create(fecha_foto=ahora, label=label['label'], turno=label['turno']) foto.save() for consumo in consumos: #print(consumo['RollID']) o, created= ConsumoRollos.objects.get_or_create(foto= foto, RollID=consumo['RollID'],RollStandID=consumo['RollStandID'],formato=consumo['formato'],peso=consumo['peso'],grado=consumo['grado'],diametro=consumo['diametro'],mlusados=consumo['mlusados'],mlrestantes=consumo['mlrestantes'], peelwaste=consumo['peelwaste'], turno=label['turno'],fechaini=label['fechaini']) o.save() instance=Foto_ConsumoRollos.objects.filter(fecha_foto__lt=foto.fecha_foto, turno=label['label']) instance.delete() sleep(2) #print(consumos) print("TODO LISTOOOO") sleep(360) except Exception as e: print(e) print("error!")
12,688
a24d35a59ed42861705e086ee04f147c786133c2
categories = { 'title': '', 'ancestors': [], } user = { 'phone': '+989104961290', 'name': '', 'wish_list': { 'products': [], 'hows': [], }, 'notifications': [], 'page': { 'title': '', 'rank': 0, 'img': '', 'description': '' }, } user_pr = {} keyword = {} keyword_pr = {} nephew = {} nephew_pr = {}
12,689
85463157476dccfb1fa3b8a5db4d456c87d0f5c0
from vyper.exceptions import InvalidLiteral, SyntaxException def test_no_none_assign(assert_compile_failed, get_contract_with_gas_estimation): contracts = [ # noqa: E122 """ @external def foo(): bar: int128 = 0 bar = None """, """ @external def foo(): bar: uint256 = 0 bar = None """, """ @external def foo(): bar: bool = False bar = None """, """ @external def foo(): bar: decimal = 0.0 bar = None """, """ @external def foo(): bar: bytes32 = EMPTY_BYTES32 bar = None """, """ @external def foo(): bar: address = ZERO_ADDRESS bar = None """, """ @external def foo(): bar: int128 = None """, """ @external def foo(): bar: uint256 = None """, """ @external def foo(): bar: bool = None """, """ @external def foo(): bar: decimal = None """, """ @external def foo(): bar: bytes32 = None """, """ @external def foo(): bar: address = None """, ] for contract in contracts: assert_compile_failed(lambda: get_contract_with_gas_estimation(contract), InvalidLiteral) def test_no_is_none(assert_compile_failed, get_contract_with_gas_estimation): contracts = [ # noqa: E122 """ @external def foo(): bar: int128 = 0 assert bar is None """, """ @external def foo(): bar: uint256 = 0 assert bar is None """, """ @external def foo(): bar: bool = False assert bar is None """, """ @external def foo(): bar: decimal = 0.0 assert bar is None """, """ @external def foo(): bar: bytes32 = EMPTY_BYTES32 assert bar is None """, """ @external def foo(): bar: address = ZERO_ADDRESS assert bar is None """, ] for contract in contracts: assert_compile_failed(lambda: get_contract_with_gas_estimation(contract), SyntaxException) def test_no_eq_none(assert_compile_failed, get_contract_with_gas_estimation): contracts = [ # noqa: E122 """ @external def foo(): bar: int128 = 0 assert bar == None """, """ @external def foo(): bar: uint256 = 0 assert bar == None """, """ @external def foo(): bar: bool = False assert bar == None """, """ @external def foo(): bar: decimal = 0.0 assert bar == None """, """ @external def foo(): bar: bytes32 = EMPTY_BYTES32 assert bar == None """, """ @external def foo(): bar: address = ZERO_ADDRESS assert bar == None """, ] for contract in contracts: assert_compile_failed(lambda: get_contract_with_gas_estimation(contract), InvalidLiteral) def test_struct_none(assert_compile_failed, get_contract_with_gas_estimation): contracts = [ # noqa: E122 """ struct Mom: a: uint256 b: int128 @external def foo(): mom: Mom = Mom({a: None, b: 0}) """, """ struct Mom: a: uint256 b: int128 @external def foo(): mom: Mom = Mom({a: 0, b: None}) """, """ struct Mom: a: uint256 b: int128 @external def foo(): mom: Mom = Mom({b: None, a: 0}) """, """ struct Mom: a: uint256 b: int128 @external def foo(): mom: Mom = Mom({a: None, b: None}) """, ] for contract in contracts: assert_compile_failed(lambda: get_contract_with_gas_estimation(contract), InvalidLiteral)
12,690
4b353108561aa9872fe0a4f950b931e82387acbd
from flask import Flask,request import requests import json from urlparse import urlparse,parse_qs import urllib from requests_oauthlib import OAuth1 import webbrowser app = Flask(__name__) apiKey = "ENTER API KEY" apiSecret = "ENTER API SECRET" requestTokenUrl = "https://api.twitter.com/oauth/request_token" tweetsUrl = "https://api.twitter.com/1.1/statuses/user_timeline.json" accessTokenUrl = "https://api.twitter.com/oauth/access_token" OAuthSecret = "" def deleteTweetsFromIdList(textInTweet,tweetIdList,oauth): count = 0 try: for tweetId in tweetIdList: print "Deleting tweet with ID : " + str(tweetId) deleteUrl = "https://api.twitter.com/1.1/statuses/destroy/" + str(tweetId) + ".json" params = {'id': tweetId} deleteResponse = requests.post(url=deleteUrl , params=params, auth=oauth) print "Deleted Tweet : " + str(textInTweet[count]) count = count + 1 except: "Exception in traversing tweets" return count @app.route('/') def data(): try: deletions = 0 OAuthToken = request.args.get('oauth_token') OAuthVerifier = request.args.get('oauth_verifier') oauth = OAuth1(apiKey, resource_owner_key = OAuthToken, resource_owner_secret = OAuthSecret, verifier = OAuthVerifier) response = requests.post(url=accessTokenUrl, auth=oauth) token = str(parse_qs(urlparse('?'+str(response.content)).query)['oauth_token']) secret = str(parse_qs(urlparse('?'+str(response.content)).query)['oauth_token_secret']) userId = str(parse_qs(urlparse('?'+str(response.content)).query)['user_id']) name = str(parse_qs(urlparse('?'+str(response.content)).query)['screen_name']) while True: oauth = OAuth1(apiKey, client_secret = apiSecret, resource_owner_key = token[2:-2], resource_owner_secret = secret[2:-2] ) response = requests.get(url=tweetsUrl,auth=oauth) jsonTweets = json.dumps(response.text) twitterJsonResponse = json.loads(response.text) #print json.dumps({"tweets":twitterJsonResponse}) for x in range(3): print "" tweetIdList = [] textInTweet = [] if not twitterJsonResponse: break for tweets in twitterJsonResponse: tweetIdList.append(str(tweets['id'])) try: tweet = str(tweets['text']) textInTweet.append(tweet) except: textInTweet.append("Some Tweet") numberOfTweetsDeleted = deleteTweetsFromIdList(textInTweet,tweetIdList,oauth) deletions = deletions + numberOfTweetsDeleted return json.dumps({"response":"true","Deleted tweets":deletions}) except: return json.dumps({"response":"false","message":"something went wrong"}) @app.route('/twitter') def make(): oauth = OAuth1(apiKey, client_secret = apiSecret ) response = requests.post(url=requestTokenUrl, auth=oauth) OAuthSecret = str(parse_qs(urlparse('?'+str(response.text)).query)['oauth_token_secret']) OAuthToken = str(parse_qs(urlparse('?'+str(response.text)).query)['oauth_token']) OAuthSecret = OAuthSecret[2:-2] OAuthToken = OAuthToken[2:-2] # MacOS try: chrome_path = 'open -a /Applications/Google\ Chrome.app %s' webbrowser.get(chrome_path).open("https://api.twitter.com/oauth/authenticate?oauth_token=" + str(OAuthToken)) except: print "You don't use mac!" # Windows try: chrome_path = 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe %s' webbrowser.get(chrome_path).open("https://api.twitter.com/oauth/authenticate?oauth_token=" + str(OAuthToken)) except: print "You don't use windows!" # Linux try: chrome_path = '/usr/bin/google-chrome %s' webbrowser.get(chrome_path).open("https://api.twitter.com/oauth/authenticate?oauth_token=" + str(OAuthToken)) except: print "You don't use linux!" return json.dumps({"response":"true","message":"Please Authorize the TwitterRefresh App to Proceed Further"}) if __name__ == '__main__': app.run(debug=True,threaded=True)
12,691
e99dde90f01ea6bdf6b861067fcd75ea57813b6b
import tensorflow as tf from ops import * def disc(image , df_dim , reuse = False , name = 'disc'): """ discrimitor layer :param image: tensor with shape [batch_size , height , width , channels], input image :param df_dim: int , the dimention of fitst discrimator hidden layer :param reuse: bool , whether reuse the variables :param name: string , the name of layer :return: tensor , output tensor of layer """ with tf.variable_scope(name_or_scope= name , reuse = reuse): conv0 = lrelu(conv2d(image , df_dim , name= 'conv0'))#128 conv1 = lrelu(instance_norm(conv2d(conv0 , df_dim * 2 , name= 'conv1') , name = 'ins_norm1'))#64 conv2 = lrelu(instance_norm(conv2d(conv1 , df_dim * 4 , name= 'conv2') , name = 'ins_norm2'))#32 conv3 = lrelu(instance_norm(conv2d(conv2 , df_dim * 8 , stride_size= 1 , name= 'conv3') , name = 'ins_norm3')) conv4 = conv2d(conv3 , output_dim= 1 , stride_size= 1 , name= 'conv4') return conv4 def gen_resnet(image ,gf_dim ,reuse = False ,name ='gen'): """ genrator layer :param image: tensor with shape [batch_size , height , width , channels], input image :param gf_dim: int , the dimention of fitst generator hidden layer :param reuse: bool , whether reuse the variables :param name: string , the name of layer :return: tensor , output tensor of layer """ with tf.variable_scope(name_or_scope= name , reuse= reuse): pad0 = tf.pad(image , [[0 , 0] , [3 , 3] , [3 , 3] , [0 , 0]] , 'REFLECT') conv1 = relu(instance_norm(conv2d(pad0 ,gf_dim ,filter_size= 7 ,stride_size= 1 ,padding='VALID' ,name='conv1') , name= 'conv_ins_norm1')) conv2 = relu (instance_norm (conv2d (conv1 ,gf_dim * 2 ,filter_size=3 ,stride_size=2 ,name='conv2') , name='conv_ins_norm2')) conv3 = relu (instance_norm (conv2d (conv2 ,gf_dim * 4 ,filter_size=3 ,stride_size=2 ,name='conv3') , name='conv_ins_norm3')) res1 = res_block (conv3 ,gf_dim * 4 ,name='res1') res2 = res_block (res1 ,gf_dim * 4 ,name='res2') res3 = res_block (res2 ,gf_dim * 4 ,name='res3') res4 = res_block (res3 ,gf_dim * 4 ,name='res4') res5 = res_block (res4 ,gf_dim * 4 ,name='res5') res6 = res_block (res5 ,gf_dim * 4 ,name='res6') res7 = res_block (res6 ,gf_dim * 4 ,name='res7') res8 = res_block (res7 ,gf_dim * 4 ,name='res8') res9 = res_block (res8 ,gf_dim * 4 ,name='res9') deconv0 = deconv2d(res9 ,gf_dim * 2 ,name='deconv0') deconv0 = relu(instance_norm(deconv0 , 'deconv_ins_norm0')) deconv1 = deconv2d (deconv0 ,gf_dim ,name='deconv1') deconv1 = relu (instance_norm (deconv1 ,'deconv_ins_norm1')) # deconv0 = conv2d(upsampling(res9 , name= 'upsampling0') , gf_dim * 2 , filter_size= 3 , stride_size= 1 , name= 'conv4') # deconv0 = relu(instance_norm(deconv0 , 'deconv_ins_norm0')) # deconv1 = conv2d (upsampling (deconv0 ,name='upsampling1') ,gf_dim , filter_size=3 , stride_size=1 ,name='conv5') # deconv1 = relu (instance_norm (deconv1 ,'deconv_ins_norm1')) pad1 = tf.pad (deconv1 ,[[0 ,0] ,[3 ,3] ,[3 ,3] ,[0 ,0]] ,'REFLECT') pred = tanh(conv2d(pad1 , 3 , filter_size= 7 , stride_size= 1 , padding= 'VALID' , name= 'pred')) return pred
12,692
63042973859fd3237247b2ec4ffc030b9ba62a43
"""Return a scalar type which is common to the input arrays.""" import numpy import numpoly from .common import implements @implements(numpy.common_type) def common_type(*arrays): """ Return a scalar type which is common to the input arrays. The return type will always be an inexact (i.e. floating point) scalar type, even if all the arrays are integer arrays. If one of the inputs is an integer array, the minimum precision type that is returned is a 64-bit floating point dtype. All input arrays except int64 and uint64 can be safely cast to the returned dtype without loss of information. Args: arrays (numpoly.ndpoly): Input arrays. Return: out (numpy.generic): Data type code. Examples: >>> numpoly.common_type( ... numpy.array(2, dtype=numpy.float32)).__name__ 'float32' >>> numpoly.common_type( ... numpoly.symbols("x")).__name__ 'float64' >>> numpoly.common_type( ... numpy.arange(3), 1j*numpoly.symbols("x"), 45).__name__ 'complex128' """ arrays = [numpoly.aspolynomial(array) for array in arrays] arrays = [array[array.keys[0]] for array in arrays] return numpy.common_type(*arrays)
12,693
5182d6619fceef18b5d85cd0905551dfdb835d1f
import sys f = open(sys.argv[1]) label_c = 0 l_map = {} c = 0 for l in f: if c == 0: c += 1 continue l = l.strip() p = l.split() user = p[1].split("/") n = len(user) user = user[n-2] p = p[2:] n = len(p) if user == "australia" or user == "india": continue r = {} for i in range(0,n,2): tid = p[i] tp = float(p[i+1]) r[tid] = tp n = len(r.keys()) rr = [] for i in range(0,n): rr.append((str(i),r[str(i)])) rr = ["%s:%s" % (x[0],x[1]) for x in rr] label = user if label not in l_map: l_map[label] = label_c label_c += 1 if c == 1: topics = [] for i in range(0,len(rr)): topics.append("t" + str(i)) #print str(l_map[label]) + "," + ",".join(topics) c += 1 print l_map[label] , " ".join(rr) user = sys.argv[1].split(".")[0] ff = open(user + ".labels","w") for k,v in l_map.iteritems(): ff.write(k + " " + str(v)) ff.write("\n") ff.close() f.close()
12,694
eaae530e215367ac730b32295f8c37084beb5350
import array a=int(input()) arr = array.array('i', []) for j in range(0,a): n=int(input()) arr.append(n); for j in range(0,a): print(arr[j], end =" ") print(j)
12,695
ba4401b44102edef0c06b001842c8ffec4a68549
import requests import random from bs4 import BeautifulSoup #get response from website response = requests.get('https://www.goodreads.com/genres/science-fiction') # turn it into html string that python can use html = BeautifulSoup(response.text, 'html.parser') # find all relevant divs on the page divs = html.find_all('div') books = [] # loop over divs for div in divs: classes = div.get('class') # check for the class we want if classes and 'coverWrapper' in classes: # find link and title title = div.find('img')['alt'] link = div.find('a')['href'] book = (title, link) books.append(book) book_suggestions = [] books_found = 0 while books_found < 10: suggested_book = random.choice(books) if suggested_book not in book_suggestions: book_suggestions.append(suggested_book) books_found += 1 print('We suggest these books') print('----------------------\n') for suggested_book in book_suggestions: # tuple unpack our title and link title, link = (suggested_book) print(title) print(f'https://www.goodreads.com{link}\n')
12,696
31a4e30984f62e753dcb6481155bf6d05369eaba
from __future__ import annotations import asyncio from collections import Counter from functools import partial import itertools import typing from typing import ( AsyncIterator, Dict, Iterable, NamedTuple, Optional, Set, Tuple, ) from async_service import Service from eth.abc import ( AtomicDatabaseAPI, BlockHeaderAPI, ) from eth.constants import EMPTY_SHA3 from eth.rlp.accounts import Account from eth_typing import Hash32 import rlp from trie import ( HexaryTrie, exceptions as trie_exceptions, fog, ) from trie.constants import ( BLANK_NODE_HASH, ) from trie.utils.nibbles import ( bytes_to_nibbles, ) from trie.utils.nodes import ( key_starts_with, ) from trie.typing import ( HexaryTrieNode, Nibbles, ) from p2p.exceptions import BaseP2PError, PeerConnectionLost from trinity.protocol.eth.peer import ETHPeer, ETHPeerPool from trinity.sync.beam.constants import ( EPOCH_BLOCK_LENGTH, GAP_BETWEEN_TESTS, NON_IDEAL_RESPONSE_PENALTY, PAUSE_SECONDS_IF_STATE_BACKFILL_STARVED, ) from trinity._utils.async_iter import async_take from trinity._utils.logging import get_logger from trinity._utils.timer import Timer from .queen import ( QueeningQueue, QueenTrackerAPI, ) REQUEST_SIZE = 16 class BeamStateBackfill(Service, QueenTrackerAPI): """ Use a very simple strategy to fill in state in the background. Ask each peer in sequence for some nodes, ignoring the lowest RTT node. Reduce memory pressure by using a depth-first strategy. An intended side-effect is to build & maintain an accurate measurement of the round-trip-time that peers take to respond to GetNodeData commands. """ _total_added_nodes = 0 _num_added = 0 _num_missed = 0 _num_accounts_completed = 0 _num_storage_completed = 0 _report_interval = 10 _num_requests_by_peer: typing.Counter[ETHPeer] def __init__(self, db: AtomicDatabaseAPI, peer_pool: ETHPeerPool) -> None: self.logger = get_logger('trinity.sync.beam.backfill.BeamStateBackfill') self._db = db self._peer_pool = peer_pool self._is_missing: Set[Hash32] = set() self._num_requests_by_peer = Counter() self._queening_queue = QueeningQueue(peer_pool) # Track the nodes that we are requesting in the account trie self._account_tracker = TrieNodeRequestTracker() self._storage_trackers: Dict[Hash32, TrieNodeRequestTracker] = {} self._bytecode_trackers: Dict[Hash32, TrieNodeRequestTracker] = {} # The most recent root hash to use to navigate the trie self._next_trie_root_hash: Optional[Hash32] = None self._begin_backfill = asyncio.Event() async def get_queen_peer(self) -> ETHPeer: return await self._queening_queue.get_queen_peer() def penalize_queen(self, peer: ETHPeer, delay: float = NON_IDEAL_RESPONSE_PENALTY) -> None: self._queening_queue.penalize_queen(peer, delay=delay) async def run(self) -> None: self.manager.run_daemon_task(self._periodically_report_progress) queening_manager = self.manager.run_daemon_child_service(self._queening_queue) await queening_manager.wait_started() await self._run_backfill() self.manager.cancel() async def _run_backfill(self) -> None: await self._begin_backfill.wait() if self._next_trie_root_hash is None: raise RuntimeError("Cannot start backfill when a recent trie root hash is unknown") while self.manager.is_running: peer = await self._queening_queue.pop_fastest_peasant() # collect node hashes that might be missing required_data = tuple([ request async for request in async_take(REQUEST_SIZE, self._missing_trie_hashes()) ]) if len(required_data) == 0: # Nothing available to request, for one of two reasons: if self._check_complete(): self.logger.info("Downloaded all accounts, storage and bytecode state") return else: # There are active requests to peers, and we don't have enough information to # ask for any more trie nodes (for example, near the beginning, when the top # of the trie isn't available). self._queening_queue.readd_peasant(peer) self.logger.debug( "Backfill is waiting for more hashes to arrive, putting %s back in queue", peer, ) await asyncio.sleep(PAUSE_SECONDS_IF_STATE_BACKFILL_STARVED) continue self.manager.run_task(self._make_request, peer, required_data) def _check_complete(self) -> bool: if self._account_tracker.is_complete: storage_complete = all( storage_tracker.is_complete for storage_tracker in self._storage_trackers.values() ) if storage_complete: bytecode_complete = all( bytecode_tracker.is_complete for bytecode_tracker in self._bytecode_trackers.values() ) # All backfill is complete only if the account and storage and bytecodes are present return bytecode_complete else: # At least one account is missing a storage trie node return False else: # At least one account trie node is missing return False async def _missing_trie_hashes(self) -> AsyncIterator[TrackedRequest]: """ Walks through the full state trie, yielding one missing node hash/prefix at a time. The yielded node info is wrapped in a TrackedRequest. The hash is marked as active until it is explicitly marked for review again. The hash/prefix will be marked for review asking a peer for the data. Will exit when all known node hashes are already actively being requested, or if there are no more missing nodes. """ # For each account, when we have asked for all known storage and bytecode # hashes, but some are still not present, we "pause" the account so we can look # for neighboring nodes. # This is a list of paused accounts, using the path to the leaf node, # because that's how the account tracker is indexed. exhausted_account_leaves: Tuple[Nibbles, ...] = () starting_root_hash = self._next_trie_root_hash try: while self.manager.is_running: # Get the next account # We have to rebuild the account iterator every time because... # something about an exception during a manual __anext__()? account_iterator = self._request_tracking_trie_items( self._account_tracker, starting_root_hash, ) try: next_account_info = await account_iterator.__anext__() except trie_exceptions.MissingTraversalNode as exc: # Found a missing trie node while looking for the next account yield self._account_tracker.generate_request( exc.missing_node_hash, exc.nibbles_traversed, ) continue except StopAsyncIteration: # Finished iterating over all available accounts break # Decode account path_to_leaf, address_hash_nibbles, encoded_account = next_account_info account = rlp.decode(encoded_account, sedes=Account) # Iterate over all missing hashes of subcomponents (storage & bytecode) subcomponent_hashes_iterator = self._missing_subcomponent_hashes( address_hash_nibbles, account, starting_root_hash, ) async for node_request in subcomponent_hashes_iterator: yield node_request # Check if account is fully downloaded account_components_complete = self._are_account_components_complete( address_hash_nibbles, account, ) if account_components_complete: # Mark fully downloaded accounts as complete, and do some cleanup self._mark_account_complete(path_to_leaf, address_hash_nibbles) else: # Pause accounts that are not fully downloaded, and track the account # to resume when the generator exits. self._account_tracker.pause_review(path_to_leaf) exhausted_account_leaves += (path_to_leaf, ) except GeneratorExit: # As the generator is exiting, we want to resume any paused accounts. This # allows us to find missing storage/bytecode on the next iteration. for path_to_leaf in exhausted_account_leaves: self._account_tracker.mark_for_review(path_to_leaf) raise else: # If we pause a few accounts and then run out of nodes to ask for, then we # still need to resume the paused accounts to prepare for the next iteration. for path_to_leaf in exhausted_account_leaves: self._account_tracker.mark_for_review(path_to_leaf) # Possible scenarios: # 1. We have completed backfill # 2. We have iterated the available nodes, and all known hashes are being requested. # For example: if 0 nodes are available, and we walk to the root and request # the root from a peer, we do not have any available information to ask for # more nodes, and exit cleanly. # # In response to these situations, we might like to: # 1. Log and celebrate that the full state has been downloaded # 2. Exit this search and sleep a bit, waiting for new trie nodes to arrive # # 1 and 2 are a little more cleanly handled outside this iterator, so we just # exit and let the caller deal with it, using a _check_complete() check. return async def _request_tracking_trie_items( self, request_tracker: TrieNodeRequestTracker, root_hash: Hash32) -> AsyncIterator[Tuple[Nibbles, Nibbles, bytes]]: """ Walk through the supplied trie, yielding the request tracker and node request for any missing trie nodes. :yield: path to leaf node, a key (as nibbles), and the value found in the trie :raise: MissingTraversalNode if a node is missing while walking the trie """ if self._next_trie_root_hash is None: # We haven't started beam syncing, so don't know which root to start at return trie = HexaryTrie(self._db, root_hash) starting_index = bytes_to_nibbles(root_hash) while self.manager.is_running: try: path_to_node = request_tracker.next_path_to_explore(starting_index) except trie_exceptions.PerfectVisibility: # This doesn't necessarily mean we are finished. # Any active prefixes might still be hiding some significant portion of the trie # But it's all we're able to explore for now, until more node data arrives return try: cached_node, uncached_key = request_tracker.get_cached_parent(path_to_node) except KeyError: cached_node = None node_getter = partial(trie.traverse, path_to_node) else: node_getter = partial(trie.traverse_from, cached_node, uncached_key) try: node = node_getter() except trie_exceptions.MissingTraversalNode as exc: # Found missing account trie node if path_to_node == exc.nibbles_traversed: raise elif cached_node is None: # The path and nibbles traversed should always match in a non-cached traversal raise RuntimeError( f"Unexpected: on a non-cached traversal to {path_to_node}, the" f" exception only claimed to traverse {exc.nibbles_traversed} -- {exc}" ) from exc else: # We need to re-raise a version of the exception that includes the whole path # from the root node (when using cached nodes, we only have the path from # the parent node to the child node) # We could always raise this re-wrapped version, but skipping it (probably?) # improves performance. missing_hash = exc.missing_node_hash raise trie_exceptions.MissingTraversalNode(missing_hash, path_to_node) from exc except trie_exceptions.TraversedPartialPath as exc: node = exc.simulated_node if node.value: full_key_nibbles = path_to_node + node.suffix if len(node.sub_segments): # It shouldn't be a problem to skip handling this case, because all keys are # hashed 32 bytes. raise NotImplementedError( "The state backfiller doesn't handle keys of different lengths, where" f" one key is a prefix of another. But found {node} in trie with" f" {root_hash!r}" ) yield path_to_node, full_key_nibbles, node.value # Note that we do not mark value nodes as completed. It is up to the caller # to do that when it is ready. For example, the storage iterator will # immediately treat the key as completed. The account iterator will # not treat the key as completed until all of its storage and bytecode # are also marked as complete. else: # If this is just an intermediate node, then we can mark it as confirmed. request_tracker.confirm_prefix(path_to_node, node) async def _missing_subcomponent_hashes( self, address_hash_nibbles: Nibbles, account: Account, starting_main_root: Hash32) -> AsyncIterator[TrackedRequest]: storage_node_iterator = self._missing_storage_hashes( address_hash_nibbles, account.storage_root, starting_main_root, ) async for node_request in storage_node_iterator: yield node_request bytecode_node_iterator = self._missing_bytecode_hashes( address_hash_nibbles, account.code_hash, starting_main_root, ) async for node_request in bytecode_node_iterator: yield node_request # Note that completing this iterator does NOT mean we're done with the # account. It just means that all known missing hashes are actively # being requested. async def _missing_storage_hashes( self, address_hash_nibbles: Nibbles, storage_root: Hash32, starting_main_root: Hash32) -> AsyncIterator[TrackedRequest]: """ Walks through the storage trie at the given root, yielding one missing storage node hash/prefix at a time. The yielded node info is wrapped in a ``TrackedRequest``. The hash is marked as active until it is explicitly marked for review again. The hash/prefix will be marked for review asking a peer for the data. Will exit when all known node hashes are already actively being requested, or if there are no more missing nodes. """ if storage_root == BLANK_NODE_HASH: # Nothing to do if the storage has an empty root return storage_tracker = self._get_storage_tracker(address_hash_nibbles) while self.manager.is_running: storage_iterator = self._request_tracking_trie_items( storage_tracker, storage_root, ) try: async for path_to_leaf, hashed_key, _storage_value in storage_iterator: # We don't actually care to look at the storage keys/values during backfill storage_tracker.confirm_leaf(path_to_leaf) except trie_exceptions.MissingTraversalNode as exc: yield storage_tracker.generate_request( exc.missing_node_hash, exc.nibbles_traversed, ) else: # Possible scenarios: # 1. We have completed backfilling this account's storage # 2. We have iterated the available nodes, and only their children are missing, # for example: if 0 nodes are available, and we walk to the root and request # the root from a peer, we do not have any available information to ask for # more nodes. # # In response to these situations, we might like to: # 1. Debug log? # 2. Look for more missing nodes in neighboring accounts and their storage, etc. # # 1 and 2 are a little more cleanly handled outside this iterator, so we just # exit and let the caller deal with it. return async def _missing_bytecode_hashes( self, address_hash_nibbles: Nibbles, code_hash: Hash32, starting_main_root: Hash32) -> AsyncIterator[TrackedRequest]: """ Checks if this bytecode is missing. If so, yield it and then exit. If not, then exit immediately. This may seem like overkill, and it is right now. But... Code merkelization is coming (theoretically), and the other account and storage trie iterators work similarly to this, so in some ways it's easier to do this "over-generalized" solution now. It makes request tracking a bit easier too, to have the same TrackedRequest result mechanism. """ if code_hash == EMPTY_SHA3: # Nothing to do if the bytecode is for the empty hash return bytecode_tracker = self._get_bytecode_tracker(address_hash_nibbles) if bytecode_tracker.is_complete: # All bytecode has been collected return # If there is an active request (for now, there can only be one), then skip # any database checks until the active request is resolved. if not bytecode_tracker.has_active_requests: if code_hash not in self._db: # The bytecode isn't present, so we ask for it. # A bit hacky here, since there is no trie, we just treat it as # if it were a leaf node at the root. yield bytecode_tracker.generate_request(code_hash, prefix=()) else: # The bytecode is already present, but the tracker isn't marked # as completed yet, so finish it off. bytecode_tracker.confirm_leaf(path_to_leaf=()) def _get_storage_tracker(self, address_hash_nibbles: Nibbles) -> TrieNodeRequestTracker: if address_hash_nibbles in self._storage_trackers: return self._storage_trackers[address_hash_nibbles] else: new_tracker = TrieNodeRequestTracker() self._storage_trackers[address_hash_nibbles] = new_tracker return new_tracker def _get_bytecode_tracker(self, address_hash_nibbles: Nibbles) -> TrieNodeRequestTracker: if address_hash_nibbles in self._bytecode_trackers: return self._bytecode_trackers[address_hash_nibbles] else: new_tracker = TrieNodeRequestTracker() self._bytecode_trackers[address_hash_nibbles] = new_tracker return new_tracker def _mark_account_complete(self, path_to_leaf: Nibbles, address_hash_nibbles: Nibbles) -> None: self._account_tracker.confirm_leaf(path_to_leaf) self._num_accounts_completed += 1 # Clear the storage tracker, to reduce memory usage # and the time to check self._check_complete() if address_hash_nibbles in self._storage_trackers: self._num_storage_completed += 1 del self._storage_trackers[address_hash_nibbles] # Clear the bytecode tracker, for the same reason if address_hash_nibbles in self._bytecode_trackers: del self._bytecode_trackers[address_hash_nibbles] def _are_account_components_complete( self, address_hash_nibbles: Nibbles, account: Account) -> bool: if account.storage_root != BLANK_NODE_HASH: # Avoid generating a storage tracker if there is no storage for this account storage_tracker = self._get_storage_tracker(address_hash_nibbles) if account.storage_root == BLANK_NODE_HASH or storage_tracker.is_complete: if account.code_hash == EMPTY_SHA3: # All storage is downloaded, and no bytecode to download return True else: bytecode_tracker = self._get_bytecode_tracker(address_hash_nibbles) # All storage is downloaded, return True only if bytecode is downloaded return bytecode_tracker.is_complete else: # Missing some storage return False async def _make_request( self, peer: ETHPeer, request_data: Iterable[TrackedRequest]) -> None: self._num_requests_by_peer[peer] += 1 request_hashes = tuple(set(request.node_hash for request in request_data)) try: nodes = await peer.eth_api.get_node_data(request_hashes) except asyncio.TimeoutError: self._queening_queue.readd_peasant(peer, GAP_BETWEEN_TESTS * 2) except PeerConnectionLost: # Something unhappy, but we don't really care, peer will be gone by next loop pass except (BaseP2PError, Exception) as exc: self.logger.info("Unexpected err while getting background nodes from %s: %s", peer, exc) self.logger.debug("Problem downloading background nodes from peer...", exc_info=True) self._queening_queue.readd_peasant(peer, GAP_BETWEEN_TESTS * 2) else: self._queening_queue.readd_peasant(peer, GAP_BETWEEN_TESTS) self._insert_results(request_hashes, nodes) finally: for request in request_data: request.tracker.mark_for_review(request.prefix) def _insert_results( self, requested_hashes: Tuple[Hash32, ...], nodes: Tuple[Tuple[Hash32, bytes], ...]) -> None: returned_nodes = dict(nodes) with self._db.atomic_batch() as write_batch: for requested_hash in requested_hashes: if requested_hash in returned_nodes: self._num_added += 1 self._total_added_nodes += 1 encoded_node = returned_nodes[requested_hash] write_batch[requested_hash] = encoded_node else: self._num_missed += 1 def set_root_hash(self, header: BlockHeaderAPI, root_hash: Hash32) -> None: if self._next_trie_root_hash is None: self._next_trie_root_hash = root_hash self._begin_backfill.set() elif header.block_number % EPOCH_BLOCK_LENGTH == 1: # This is the root hash of the *parent* of the header, so use modulus equals 1 self._next_trie_root_hash = root_hash async def _periodically_report_progress(self) -> None: for step in itertools.count(): if not self.manager.is_running: break self._num_added = 0 self._num_missed = 0 timer = Timer() await asyncio.sleep(self._report_interval) if not self._begin_backfill.is_set(): self.logger.debug("Beam-Backfill: waiting for new state root") continue msg = "total=%d" % self._total_added_nodes msg += " new=%d" % self._num_added msg += " miss=%d" % self._num_missed self.logger.debug("Beam-Backfill: %s", msg) # log peer counts show_top_n_peers = 3 self.logger.debug( "Beam-Backfill-Peer-Usage-Top-%d: %s", show_top_n_peers, self._num_requests_by_peer.most_common(show_top_n_peers), ) # For now, report every 30s (1/3 as often as the debug report above) if step % 3 == 0: num_storage_trackers = len(self._storage_trackers) if num_storage_trackers: active_storage_completion = sum( self._complete_trie_fraction(store_tracker) for store_tracker in self._storage_trackers.values() ) / num_storage_trackers else: active_storage_completion = 0 # Log backfill state stats as a progress indicator to the user: # - nodes: the total number of nodes collected during this backfill session # - accts: number of accounts completed, including all storage and bytecode, # if present. This includes accounts downloaded and ones already present. # - prog: the progress to completion, measured as a percentage of accounts # completed, using trie structure. Ignores imbalances caused by storage. # - stores: number of non-trivial complete storages downloaded # - storing: the percentage complete and number of storage tries being # downloaded actively # - walked: the part of the account trie walked from this # epoch's index, as parts per million (a fraction of the # total account trie) # - tnps: trie nodes collected per second, since the last debug log (in the # last 10 seconds, at comment time) num_requests = sum(self._num_requests_by_peer.values()) if num_requests == 0: log = self.logger.debug else: log = self.logger.info log( ( "State Stats: nodes=%d accts=%d prog=%.2f%% stores=%d" " storing=%.1f%% of %d walked=%.1fppm tnps=%.0f req=%d" ), self._total_added_nodes, self._num_accounts_completed, self._complete_trie_fraction(self._account_tracker) * 100, self._num_storage_completed, active_storage_completion * 100, num_storage_trackers, self._contiguous_accounts_complete_fraction() * 1e6, self._num_added / timer.elapsed, num_requests, ) self._num_requests_by_peer.clear() def _complete_trie_fraction(self, tracker: TrieNodeRequestTracker) -> float: """ Calculate stats for logging: estimate what percent of the trie is completed, by looking at unexplored prefixes in the account trie. :return: a number in the range [0, 1] (+/- rounding error) estimating trie completion One awkward thing: there will be no apparent progress while filling in the storage of a single large account. Progress is slow enough anyway that this is probably immaterial. """ # Move this logic into HexaryTrieFog someday unknown_prefixes = tracker._trie_fog._unexplored_prefixes # Basic estimation logic: # - An unknown prefix 0xf means that we are missing 1/16 of the trie # - An unknown prefix 0x12 means that we are missing 1/(16^2) of the trie # - Add up all the unknown prefixes to estimate the total collected fraction. unknown_fraction = sum( (1 / 16) ** len(prefix) for prefix in unknown_prefixes ) return 1 - unknown_fraction def _contiguous_accounts_complete_fraction(self) -> float: """ Estimate the completed fraction of the trie that is contiguous with the current index (which rotates every 32 blocks) It will be probably be quite noticeable that it will get "stuck" when downloading a lot of storage, because we'll have to blow it up to more than a percentage to see any significant change within 32 blocks. (when the index will change again anyway) :return: a number in the range [0, 1] (+/- rounding error) estimating trie completion contiguous with the current backfill index key """ starting_index = bytes_to_nibbles(self._next_trie_root_hash) unknown_prefixes = self._account_tracker._trie_fog._unexplored_prefixes if len(unknown_prefixes) == 0: return 1 # find the nearest unknown prefix (typically, on the right) nearest_index = unknown_prefixes.bisect(starting_index) # Get the nearest unknown prefix to the left if nearest_index == 0: left_prefix = (0, ) * 64 else: left_prefix = unknown_prefixes[nearest_index - 1] if key_starts_with(starting_index, left_prefix): # The prefix of the starting index is unknown, so the index # itself is unknown. return 0 # Get the nearest unknown prefix to the right if len(unknown_prefixes) == nearest_index: right_prefix = (0xf, ) * 64 else: right_prefix = unknown_prefixes[nearest_index] # Use the space between the unknown prefixes to estimate the completed contiguous fraction # At the base, every gap in the first nibble is a full 1/16th of the state complete known_first_nibbles = right_prefix[0] - left_prefix[0] - 1 completed_fraction_base = (1 / 16) * known_first_nibbles # Underneath, you can count completed subtrees on the right, each child 1/16 of the parent right_side_completed = sum( nibble * (1 / 16) ** nibble_depth for nibble_depth, nibble in enumerate(right_prefix[1:], 2) ) # Do the same on the left left_side_completed = sum( (0xf - nibble) * (1 / 16) ** nibble_depth for nibble_depth, nibble in enumerate(left_prefix[1:], 2) ) # Add up all completed areas return left_side_completed + completed_fraction_base + right_side_completed class TrieNodeRequestTracker: def __init__(self) -> None: self._trie_fog = fog.HexaryTrieFog() self._active_prefixes: Set[Nibbles] = set() # cache of nodes used to speed up trie walking self._node_frontier_cache = fog.TrieFrontierCache() def mark_for_review(self, prefix: Nibbles) -> None: # Calling this does not mean that the nodes were returned, only that they are eligible again # for review (either they were returned or we can ask a different peer for them) self._active_prefixes.remove(prefix) def pause_review(self, prefix: Nibbles) -> None: """ Stop iterating this node, until mark_for_review() is called """ self._active_prefixes.add(prefix) def _get_eligible_fog(self) -> fog.HexaryTrieFog: """ Return the Trie Fog that can be searched, ignoring any nodes that are currently being requested. """ return self._trie_fog.mark_all_complete(self._active_prefixes) def next_path_to_explore(self, starting_index: Nibbles) -> Nibbles: return self._get_eligible_fog().nearest_unknown(starting_index) def confirm_prefix( self, confirmed_prefix: Nibbles, node: fog.HexaryTrieFog) -> None: if node.sub_segments: # No nodes have both value and sub_segments, so we can wait to update the cache self.add_cache(confirmed_prefix, node, node.sub_segments) elif node.value: # If we are confirming a leaf, use confirm_leaf(). We do not attempt to handle a # situation where one key is a prefix of another key, and simply error out. raise ValueError("Do not handle case where prefix of another key has a value") else: # We don't have to look up this node anymore, so can delete it from our cache self.delete_cache(confirmed_prefix) self._trie_fog = self._trie_fog.explore(confirmed_prefix, node.sub_segments) def confirm_leaf(self, path_to_leaf: Nibbles) -> None: # We don't handle keys that are subkeys of other keys (because # all keys are 32 bytes), so we can just hard-code that there # are no children of this address. self.delete_cache(path_to_leaf) self._trie_fog = self._trie_fog.explore(path_to_leaf, ()) def generate_request( self, node_hash: Hash32, prefix: Nibbles) -> TrackedRequest: self.pause_review(prefix) return TrackedRequest(self, node_hash, prefix) @property def has_active_requests(self) -> bool: return len(self._active_prefixes) > 0 def get_cached_parent(self, prefix: Nibbles) -> Tuple[HexaryTrieNode, Nibbles]: return self._node_frontier_cache.get(prefix) def add_cache( self, prefix: Nibbles, node: HexaryTrieNode, sub_segments: Iterable[Nibbles]) -> None: self._node_frontier_cache.add(prefix, node, sub_segments) def delete_cache(self, prefix: Nibbles) -> None: self._node_frontier_cache.delete(prefix) @property def is_complete(self) -> bool: return self._trie_fog.is_complete def __repr__(self) -> str: return ( f"TrieNodeRequestTracker(trie_fog={self._trie_fog!r}," f" active_prefixes={self._active_prefixes!r})" ) class TrackedRequest(NamedTuple): tracker: TrieNodeRequestTracker node_hash: Hash32 prefix: Nibbles
12,697
db55a085c8379a44560ee8e433761cd01ab52ddc
import mapsquare class Map(object): def __init__(self, x, y): self.array = [] for i in range(x): self.array.append([]) for j in range(y): ms = MapSquare(0, 'soil', (x, y)) if i == 0: ms.setNeighborSquare('w', None) else: ms.setNeighborSquare('w', arr[i-1][j]) if j == 0: ms.setNeighborSquare('n', None) else: ms.setNeighborSquare('n', arr[i][j-1]) if i == x-1: ms.setNeighborSquare('e', None) else: ms.setNeighborSquare('e', arr[i+1][j]) if j == y-1: ms.setNeighborSquare('s', None) else: ms.setNeighborSquare('s', arr[i][j+1]) self.array[i].append(ms)
12,698
09f6aeda2cec5ce5b2d0c218756b17a00e6d0c65
def pretty_square(n): for i in range(1, 2*n): for j in range(1, 2*n): value = max(abs(n - i), abs(n - j)) + 1 print(value, end=" ") print() pretty_square(3)
12,699
632671402da2f83c02423c1ce0f304b495215eb6
import datetime from typing import Optional from pydantic import BaseModel class ItemBase(BaseModel): ... class ItemCreate(ItemBase): name: str description: Optional[str] = None is_active: Optional[bool] = None class ItemUpdate(ItemBase): name: Optional[str] = None description: Optional[str] = None is_active: Optional[bool] = None class Item(ItemBase): id: int name: str description: Optional[str] = None is_active: bool created_timestamp: datetime.datetime class Config: orm_mode = True