CINXE.COM

Campaigns

<!DOCTYPE html> <html lang="en"> <head> <!-- Select2 --> <link rel="preload" as="style" href="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/css/select2.min.css"/> <link rel="stylesheet" href="/static/app2/dist/styles.cff73e23887d.css"> <!-- Favicon --> <link rel="icon" type="image/x-icon" href="/static/app2/favicon.b1d5e50e3862.ico"> <title>Campaigns</title> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <!-- Alpine.js --> <script src="https://cdn.jsdelivr.net/npm/@alpinejs/persist@3.x.x/dist/cdn.min.js"></script> <script src="https://unpkg.com/alpinejs@3.14.1"></script> <!-- Google Analytics (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-NGKS27WCZ2"></script> <!-- Notify --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-NGKS27WCZ2'); </script> </head> <body class="h-screen"> <script> // this function is used by fields to convert natural language dates to ISO format function checkdate(el) { const apiUrl = '/api/utils/convert/'; // on first run, el is the element, on subsequent runs, el is the event let helptext = $(el.target || el).siblings("[id$='helptext']"); if (!el.target) { // save original help text on first run el.helptext = helptext.text() } // input form value let value = $(el.target || el).val() // if empty, show default text if (value.trim() === '') { let defaultText = "Enter in any format (e.g. 1/1/1900, today, 3 days ago)" helptext.text(el.helptext || el.target?.helptext || defaultText) return } // send request to django endpoint to convert date $.ajax({url: apiUrl, data: {date: value}}) .done(res => helptext.text(res['date'])) .fail(() => el.target && helptext.text(`Could not parse "${value}" as date`)) } </script> <!-- Silently logs user in/out --> <script> window.onload = function () { const lastAuthCheck = localStorage.getItem('lastAuthCheck2'); const fiveMinutes = 5 * 60 * 1000; // 5 minutes in milliseconds const now = Date.now(); // Check if 5 minutes have passed since the last auth check if (!lastAuthCheck || (now - lastAuthCheck > fiveMinutes)) { const currentUrl = encodeURIComponent(window.location.href); const iframe = document.createElement('iframe'); iframe.style.display = "none"; iframe.src = "/v2/auth/silent/trigger/" + "?next=" + currentUrl; document.body.appendChild(iframe); // Update the timestamp of the last auth check localStorage.setItem('lastAuthCheck2', now.toString()); } }; </script> <div class="flex w-full"> <!-- Static sidebar for desktop --> <style> /* move first pop-up down so it doesn't overlap the navbar */ #sidebar-pop-up-0 { bottom: -90px !important; } .new-button { background: #414ad1; border: none; color: white; } </style> <script> document.addEventListener('DOMContentLoaded', function () { // Add a class to the "new" label $('small:contains("New")').addClass('new-button') }) </script> <div id="sidebar" x-data="{ open: $persist(true) }" class="hidden" :class="{'lg:flex min-w-[18rem] w-72': open, 'lg:flex lg:w-20 lg:min-w-[5rem]': !open}"> <div class="fixed flex flex-col gap-y-5 bg-stone-100 px-6 pb-4 h-full overflow-visible" :class="{'min-w-[18rem] w-72': open, 'lg:w-20 lg:min-w-[5rem]': !open}" style="z-index: 100"> <div class="flex h-16 shrink-0 items-center justify-between"> <a href="https://aavso.org"> <img x-show="open" class="h-8 w-auto" src="/static/app2/images/aavso-logo-full.38e2a76e6e8a.png" alt="AAVSO LOGO" /> </a> <button @click="open = !open" x-show="open" class="hover:opacity-70 p-2 bg-primary rounded-full text-white" aria-label="Collapse section"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" class="w-4 h-4"> <path fill-rule="evenodd" d="M9.78 4.22a.75.75 0 0 1 0 1.06L7.06 8l2.72 2.72a.75.75 0 1 1-1.06 1.06L5.47 8.53a.75.75 0 0 1 0-1.06l3.25-3.25a.75.75 0 0 1 1.06 0Z" clip-rule="evenodd" /> </svg> </button> <button @click="open = !open" x-show="!open" x-cloak class="-ml-3 hover:opacity-70 p-2 bg-primary rounded-full text-white" aria-label="Expand section"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" class="w-4 h-4"> <path fill-rule="evenodd" d="M6.22 4.22a.75.75 0 0 1 1.06 0l3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.75.75 0 0 1-1.06-1.06L8.94 8 6.22 5.28a.75.75 0 0 1 0-1.06Z" clip-rule="evenodd" /> </svg> </button> </div> <nav class="flex flex-1 flex-col"> <ul role="list" class="flex flex-1 flex-col gap-y-1" :class="{'space-y-5':!open}"> <li> <ul role="list" class="-mx-2 space-y-1"> <li x-data="{popup: false}"> <a @click="open || (popup = !popup)" :class="{'cursor-pointer': !open}" class="hover:bg-stone-200 text-zinc-700 group gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5"/> </svg> <span class="hidden lg:block" x-show="open">Find Data</span> </a> <div class="relative"> <div id="sidebar-pop-up-0" class="absolute left-0 bottom-0 ml-12 -mb-4 w-60 origin-top-right rounded-md bg-white p-3 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="popup" @click.away="popup = false" x-cloak role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1"> <a href="https://www.aavso.org/vsx/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Variable Star Index <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">VSX</small> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="vertical-align: sub" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline ml-2"> <path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/> </svg> </a> <a href="/data/search/global" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Global Search <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">New</small> </a> <a href="/data/search/photometry" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometry <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">New</small> </a> <a href="/avspec/search/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Spectroscopy <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">AVSpec</small> </a> <a href="/exosite" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Exoplanets <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">Exosite</small> </a> <a href="https://www.aavso.org/solar-bulletin" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Solar Data <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="vertical-align: sub" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline ml-2"> <path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/> </svg> </a> </div> </div> </li> <div class="ml-4 mt-2" x-show="open"> <a href="https://www.aavso.org/vsx/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Variable Star Index <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">VSX</small> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="vertical-align: sub" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline ml-2"> <path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/> </svg> </a> <a href="/data/search/global" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Global Search <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">New</small> </a> <a href="/data/search/photometry" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometry <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">New</small> </a> <a href="/avspec/search/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Spectroscopy <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">AVSpec</small> </a> <a href="/exosite" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Exoplanets <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">Exosite</small> </a> <a href="https://www.aavso.org/solar-bulletin" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Solar Data <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="vertical-align: sub" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline ml-2"> <path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/> </svg> </a> </div> </ul> </li> <li> <ul role="list" class="-mx-2 space-y-1"> <li x-data="{popup: false}"> <a @click="open || (popup = !popup)" :class="{'cursor-pointer': !open}" class="hover:bg-stone-200 text-zinc-700 group gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"/> <path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/> </svg> <span class="hidden lg:block" x-show="open">Observe</span> </a> <div class="relative"> <div id="sidebar-pop-up-1" class="absolute left-0 bottom-0 ml-12 -mb-4 w-60 origin-top-right rounded-md bg-white p-3 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="popup" @click.away="popup = false" x-cloak role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1"> <a href="/campaigns/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Observing Campaigns </a> <a href="/vsp/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Variable Star Plotter <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">VSP</small> </a> </div> </div> </li> <div class="ml-4 mt-2" x-show="open"> <a href="/campaigns/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Observing Campaigns </a> <a href="/vsp/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Variable Star Plotter <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">VSP</small> </a> </div> </ul> </li> <li> <ul role="list" class="-mx-2 space-y-1"> <li x-data="{popup: false}"> <a @click="open || (popup = !popup)" :class="{'cursor-pointer': !open}" class="hover:bg-stone-200 text-zinc-700 group gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875v-6.75ZM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V8.625ZM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V4.125Z"/> </svg> <span class="hidden lg:block" x-show="open">Process Data</span> </a> <div class="relative"> <div id="sidebar-pop-up-2" class="absolute left-0 bottom-0 ml-12 -mb-4 w-60 origin-top-right rounded-md bg-white p-3 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="popup" @click.away="popup = false" x-cloak role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1"> <a href="/vphot/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometric Reduction <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">VPhot</small> </a> </div> </div> </li> <div class="ml-4 mt-2" x-show="open"> <a href="/vphot/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometric Reduction <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">VPhot</small> </a> </div> </ul> </li> <li> <ul role="list" class="-mx-2 space-y-1"> <li x-data="{popup: false}"> <a @click="open || (popup = !popup)" :class="{'cursor-pointer': !open}" class="hover:bg-stone-200 text-zinc-700 group gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M9 8.25H7.5a2.25 2.25 0 0 0-2.25 2.25v9a2.25 2.25 0 0 0 2.25 2.25h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25H15m0-3-3-3m0 0-3 3m3-3V15" /> </svg> <span class="hidden lg:block" x-show="open">Submit Data</span> </a> <div class="relative"> <div id="sidebar-pop-up-3" class="absolute left-0 bottom-0 ml-12 -mb-4 w-60 origin-top-right rounded-md bg-white p-3 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="popup" @click.away="popup = false" x-cloak role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1"> <a href="/data/submit" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometry <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">New</small> </a> <a href="https://www.aavso.org/webobs/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometry <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">WebObs</small> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="vertical-align: sub" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline ml-2"> <path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/> </svg> </a> <a href="/avspec/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Spectroscopy <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">AVSpec</small> </a> <a href="/exosite/submit" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Exoplanets <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">Exosite</small> </a> </div> </div> </li> <div class="ml-4 mt-2" x-show="open"> <a href="/data/submit" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometry <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">New</small> </a> <a href="https://www.aavso.org/webobs/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Photometry <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">WebObs</small> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="vertical-align: sub" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline ml-2"> <path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/> </svg> </a> <a href="/avspec/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Spectroscopy <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">AVSpec</small> </a> <a href="/exosite/submit" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Exoplanets <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">Exosite</small> </a> </div> </ul> </li> <li> <ul role="list" class="-mx-2 space-y-1"> <li x-data="{popup: false}"> <a @click="open || (popup = !popup)" :class="{'cursor-pointer': !open}" class="hover:bg-stone-200 text-zinc-700 group gap-x-3 rounded-md p-2 text-sm leading-6 font-semibold flex"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M9.75 3.104v5.714a2.25 2.25 0 01-.659 1.591L5 14.5M9.75 3.104c-.251.023-.501.05-.75.082m.75-.082a24.301 24.301 0 014.5 0m0 0v5.714c0 .597.237 1.17.659 1.591L19.8 15.3M14.25 3.104c.251.023.501.05.75.082M19.8 15.3l-1.57.393A9.065 9.065 0 0112 15a9.065 9.065 0 00-6.23-.693L5 14.5m14.8.8l1.402 1.402c1.232 1.232.65 3.318-1.067 3.611A48.309 48.309 0 0112 21c-2.773 0-5.491-.235-8.135-.687-1.718-.293-2.3-2.379-1.067-3.61L5 14.5"></path> </svg> <span class="hidden lg:block" x-show="open">Tools</span> </a> <div class="relative"> <div id="sidebar-pop-up-4" class="absolute left-0 bottom-0 ml-12 -mb-4 w-60 origin-top-right rounded-md bg-white p-3 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="popup" @click.away="popup = false" x-cloak role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" tabindex="-1"> <a href="/v2/tools/julian-date-converter/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Julian Date Calculator </a> <a href="/aavsonet/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Telescope Time <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">AAVSOnet</small> </a> <a href="/jaavso/" class="block mt-1 text-zinc-600 hover:bg-stone-100 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Journal <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">JAAVSO</small> </a> </div> </div> </li> <div class="ml-4 mt-2" x-show="open"> <a href="/v2/tools/julian-date-converter/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Julian Date Calculator </a> <a href="/aavsonet/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Telescope Time <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">AAVSOnet</small> </a> <a href="/jaavso/" class="block mt-1 text-zinc-600 hover:bg-stone-200 hover:text-zinc-700 rounded-md p-1 text-sm leading-5"> Journal <small class="ml-2 text-slate-600 border-stone-200 border p-1 rounded">JAAVSO</small> </a> </div> </ul> </li> </ul> </nav> </div> </div> <div class="flex-grow"> <!-- Navigation bar --> <div x-data="{ mobileMenuOpen: false }"> <div class="sticky top-0 z-40 flex h-16 shrink-0 items-center gap-x-4 border-b border-gray-200 bg-white px-4 shadow-sm sm:gap-x-6 sm:px-6 lg:px-8"> <!-- Site links --> <div class="lg:flex text-sm font-medium hidden space-x-4"> <div class="relative" x-data="{ open: false }"> <button type="button" @click="open = !open" class="text-zinc-700 hover:bg-stone-200 rounded-md px-3 py-2 flex" aria-current="page"> Who We Are <svg class="ml-1 h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z" clip-rule="evenodd"> </path> </svg> </button> <!-- Pop-up Menus --> <div class="absolute right-0 z-10 w-32 origin-top-left rounded-md bg-white py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="open" @click.away="open = false" role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" style="display: none" tabindex="-1"> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-1" href="https://aavso.org//visionmission"> About Us </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-2" href="https://aavso.org//awards-and-honors"> Awards </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-3" href="https://aavso.org//officers-and-board-members"> Board </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-4" href="https://aavso.org//blog"> Blog </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-5" href="https://aavso.org//aavso-staff"> Staff </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-6" href="https://aavso.org//aavso-policies"> Policies </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-1-7" href="https://aavso.org//contact-us"> Contact Us </a> </div> </div> <div class="relative" x-data="{ open: false }"> <button type="button" @click="open = !open" class="text-zinc-700 hover:bg-stone-200 rounded-md px-3 py-2 flex" aria-current="page"> Getting Started <svg class="ml-1 h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z" clip-rule="evenodd"> </path> </svg> </button> <!-- Pop-up Menus --> <div class="absolute right-0 z-10 w-32 origin-top-left rounded-md bg-white py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="open" @click.away="open = false" role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" style="display: none" tabindex="-1"> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-2-1" href="https://aavso.org//variables-what-are-they-why-observe-them"> What Are Variable Stars? </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-2-2" href="https://aavso.org//tutorials"> Tutorials </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-2-3" href="https://aavso.org//observing-manuals"> Manuals </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-2-4" href="https://aavso.org//mentor-program"> Find a Mentor </a> </div> </div> <div class="relative" x-data="{ open: false }"> <button type="button" @click="open = !open" class="text-zinc-700 hover:bg-stone-200 rounded-md px-3 py-2 flex" aria-current="page"> Community <svg class="ml-1 h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z" clip-rule="evenodd"> </path> </svg> </button> <!-- Pop-up Menus --> <div class="absolute right-0 z-10 w-32 origin-top-left rounded-md bg-white py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="open" @click.away="open = false" role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" style="display: none" tabindex="-1"> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-3-1" href="https://aavso.org//aavso-meetings"> Meetings </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-3-2" href="https://aavso.org//forum"> Forums </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-3-3" href="https://aavso.org//apps/member/search/"> Find a Member </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-3-4" href="https://aavso.org//introducing-aavso-communications"> AAVSO Communications </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-3-5" href="https://aavso.org//programs-events"> Programs &amp; Events </a> </div> </div> <div class="relative" x-data="{ open: false }"> <button type="button" @click="open = !open" class="text-zinc-700 hover:bg-stone-200 rounded-md px-3 py-2 flex" aria-current="page"> Get Involved <svg class="ml-1 h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z" clip-rule="evenodd"> </path> </svg> </button> <!-- Pop-up Menus --> <div class="absolute right-0 z-10 w-32 origin-top-left rounded-md bg-white py-2 shadow-lg ring-1 ring-gray-900/5 focus:outline-none" x-show="open" @click.away="open = false" role="menu" aria-orientation="vertical" aria-labelledby="user-menu-button" style="display: none" tabindex="-1"> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-4-1" href="https://aavso.org//welcome"> Welcome </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-4-2" href="https://aavso.org//databases#research"> Research Opportunities </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-4-3" href="https://aavso.org//volunteer-opportunities"> Volunteer Opportunities </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-4-4" href="https://aavso.org//membership"> Become a Member </a> <a class="block px-3 py-1 text-sm leading-6 text-gray-900 hover:bg-stone-200" role="menuitem" tabindex="-1" id="menu-item-4-5" href="https://aavso.org//faq"> FAQ </a> </div> </div> <!-- Store --> <a href="https://aavso.org/store/" class="text-zinc-700 hover:bg-stone-200 rounded-md px-3 py-2 flex" aria-current="page"> Store </a> </div> <!-- Menu Button --> <button type="button" class="-m-2.5 p-2.5 text-gray-700 lg:hidden" @click="mobileMenuOpen = !mobileMenuOpen"> <span class="sr-only">Open sidebar</span> <!-- Close --> <template x-if="mobileMenuOpen"> <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/> </svg> </template> <!-- Open --> <template x-if="!mobileMenuOpen"> <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"></path> </svg> </template> </button> <!-- Vertical Line --> <div class="h-6 w-px bg-gray-900/10 lg:hidden" aria-hidden="true"></div> <!-- Other Links --> <div class="flex flex-auto gap-x-4 lg:gap-x-6 justify-end"> <div class="flex items-center gap-x-4 lg:gap-x-6"> <!-- Donate Button --> <a href="https://aavso.org/donate-now"> <button class="btn btn-primary">Donate</button> </a> <!-- Separator --> <div class="hidden lg:block lg:h-6 lg:w-px lg:bg-gray-900/10" aria-hidden="true"></div> <!-- Profile dropdown --> <a href="/v2/accounts/signup/?next=/v2/campaigns/" class="text-sm font-semibold leading-6 text-gray-900 hover:text-gray-700">Sign up</a> <div class="hidden lg:block lg:h-6 lg:w-px lg:bg-gray-900/10" aria-hidden="true"></div> <a href="/v2/accounts/login/?next=/v2/campaigns/" class="text-sm font-semibold leading-6 text-gray-900 hover:text-gray-700">Sign in</a> </div> </div> </div> <!-- Mobile Menu --> <div class="sm:hidden" :class="{ hidden : !mobileMenuOpen}"> <div class="space-y-1 px-2 pb-3 pt-2"> <a href="https://aavso.org//visionmission" class="block rounded-md px-3 py-2 text-gray-600 font-medium hover:bg-stone-200">About Us</a> <a href="https://aavso.org//variables-what-are-they-why-observe-them" class="block rounded-md px-3 py-2 text-gray-600 font-medium hover:bg-stone-200">Get Started</a> <a href="https://aavso.org//forum" class="block rounded-md px-3 py-2 text-gray-600 font-medium hover:bg-stone-200">Forums</a> <a href="https://aavso.org//contact-us" class="block rounded-md px-3 py-2 text-gray-600 font-medium hover:bg-stone-200">Contact Us</a> <a href="https://aavso.org//donate-now" class="block rounded-md px-3 py-2 text-gray-600 font-medium hover:bg-stone-200">Donate</a> </div> </div> </div> <main class="pb-10"> <div class="sm:px-3 lg:px-5 mt-2"> <div class="flex"> <a href="/v2/campaigns/" class="px-3 py-2 font-medium text-sm rounded-t-md text-white bg-primary"> Active </a> <a href="/v2/campaigns/search" class="px-3 py-2 font-medium text-sm rounded-t-md text-gray-700 hover:bg-gray-200"> Search </a> <a href="/v2/campaigns/create" class="px-3 py-2 font-medium text-sm rounded-t-md text-gray-700 hover:bg-gray-200"> Create </a> </div> </div> <hr> <div class="px-4 sm:px-6 lg:px-8"> <div> <div class="mt-10"> <div class="max-w-screen-lg"> <div class="container"> <!-- Overview --> <div class="container mx-auto mt-10 mb-6"> <div class="bg-secondary p-4 rounded-lg"> <h2 class="text-xl font-semibold mb-2">Overview</h2> <p class="text-base"> The American Association of Variable Star Observers (AAVSO) observing campaigns are coordinated observational efforts focused on specific astronomical objects, particularly variable stars. These campaigns invite amateur and professional astronomers worldwide to contribute observations, leading to a comprehensive dataset that can yield substantial scientific results. </p> </div> </div> <!-- Active Campaigns --> <div class="mb-3"> <h6 class="font-bold mb-2">Active Campaigns</h6> <style> th:first-child { border-top-left-radius: 8px; border-bottom-left-radius: 4px; } th:last-child { border-top-right-radius: 8px; border-bottom-right-radius: 4px; } </style> <div class="table-container"> <table id="table" class="text-left rounded-t-md" > <thead > <tr class="bg-primary text-white"> <th class="px-4 py-2" class="orderable"> <a href="?sort=id">#</a> </th> <th class="px-4 py-2" class="orderable"> <a href="?sort=title">Title</a> </th> <th class="px-4 py-2" class="orderable"> <a href="?sort=user">Principal Investigator</a> </th> <th class="px-4 py-2" class="desc orderable"> <a href="?sort=start_date">Start date</a> </th> <th class="px-4 py-2" class="orderable"> <a href="?sort=end_date">End date</a> </th> <th class="px-4 py-2" class="orderable"> <a href="?sort=requested_data_types">Requested data types</a> </th> </tr> </thead> <tbody > <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 884 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/884">RW Aur fading episode - monitoring requested</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-02-04 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2027-12-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 883 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/883">Photometry of DQ Tau requested in support of multiwavelength observations</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-01-29 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-02-28 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 881 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/881">HM Sge monitoring needed for HST and SOFIA observations</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Goldman, S. </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-01-28 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2027-02-15 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 882 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/882">Continued monitoring requested for PSN J12355230+2755559 (Com)</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-01-20 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-01-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 880 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/880">Flare Star Campaign: High-Cadence Photometric and Spectroscopic Observations</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Hawkins, G. </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-01-13 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-12-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 877 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/877">Photometry of GOTO065054.49+593624.51 requested</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-11-05 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-04-15 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 875 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/875">Monitoring T CrB</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-10-18 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-10-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 871 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/871">AM Her monitoring requested</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Terada, Y. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-10-08 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-08-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 865 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/865">Photometry and Spectroscopy of WR 140 (V1687 Cyg) through its upcoming periastron</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Richardson, N. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-09-10 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-06-30 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 870 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/870">Unveiling CI Hyi as a symbiotic system</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Toalá, J. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-09-10 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-09-10 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 872 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/872">Nova in Scorpius: N Sco 2024 No. 3 = V1725 Sco (TCP J17064645-3528079)</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-09-10 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-09-11 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 867 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/867">Nova in Vulpecula: V615 Vul ( = N Vul 2024 = PNV J19430751+2100204)</a> </td> <td class="px-4 py-2 border-b border-gray-400" > Waagen, E. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-08-02 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-08-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 856 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/856">Nova in Ophiuchus: N Oph 2024 = V4370 Oph = TCP J17395720-2627410</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-03-10 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-03-13 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 851 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/851">Multiwavelength coverage requested for V695 Cyg study with HST</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-02-14 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-03-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry, Spectroscopy </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 849 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/849">Bright nova in Sco: V1723 Sco (= N Sco 2024 = PNV J17261813-3809354)</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2024-02-10 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-02-13 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 836 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/836">AAVSO and SNEWS partner in campaign to monitor bright supernova progenitors</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2023-10-13 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-08-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 826 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/826">Supernova in M101 - SN 2023ixf in NGC 5457</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2023-05-19 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Ongoing </td> <td class="px-4 py-2 border-b border-gray-400" > — </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 859 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/859">Photometry and spectroscopy requested for bright binaries being observed with CHARA - Revised</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2023-04-18 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-08-28 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 813 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/813">Nova in Sagittarius: N Sgr 2023 = TCP J17562787-1714548</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2023-02-20 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2026-10-13 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 804 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/804">Alert Notice 804: RW Cep dimming underway - observations requested</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2022-12-16 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-06-30 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry, Spectroscopy </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 797 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/797">Monitoring requested for V730 Cep</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2022-10-28 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-08-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 773 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/773">EX Lup outburst coverage requested</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2022-03-19 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-10-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 771 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/771">Alert Notice 771: V1117 Her in deep fade again</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2022-03-09 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > 2025-10-31 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Photometry </td> </tr> <tr class="odd"> <td class="px-4 py-2 border-b border-gray-400" > 747 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/747">V627 Peg photometry and spectroscopy requested</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2021-07-20 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Ongoing </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> <tr class="even"> <td class="px-4 py-2 border-b border-gray-400" > 749 </td> <td class="px-4 py-2 border-b border-gray-400" > <a class="text-primary" href="/v2/campaigns/749">Nova in Vulpecula: N Vul 2021 = TCP J20210770+2914093</a> </td> <td class="px-4 py-2 border-b border-gray-400" > HQ, A. </td> <td class="px-4 py-2 border-b border-gray-400" > 2021-07-16 (UTC) </td> <td class="px-4 py-2 border-b border-gray-400" > Ongoing </td> <td class="px-4 py-2 border-b border-gray-400" > Spectroscopy, Photometry </td> </tr> </tbody> </table> <ul class="pagination"> <li class="active" > <a href="?page=1"> 1 </a> </li> <li > <a href="?page=2"> 2 </a> </li> <li class="next"> <a class="p-2" href="?page=2"> next </a> </li> </ul> </div> </div> <hr> <!-- Links --> <div class="mt-3"> <p> <a class="mt-10 text-center text-sm text-gray-500" href="/v2/campaigns/active"> See all active campaigns </a> <br> <a class="mt-10 text-center text-sm text-gray-500" href="/v2/campaigns/archived"> See past campaigns </a> </p> </div> </div> </div> </div> </div> </div> </main> </div> </div> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10