<?xml version="1.0"?>

<rss version="2.0">
    <channel>
        <title>mikewong's astroblog</title>
        <link>http://astro.berkeley.edu/~mikewong</link>
        <description>the life of a jupiter researcher</description>
        <docs>http://blogs.law.harvard.edu/tech/rss</docs>
        <language>en-us</language>
        <managingEditor>mikewong</managingEditor>
        <webMaster>mikewong</webMaster>
        <generator>giardiacorp cgi</generator>
        <pubDate>Sat 2022-06-11 14:02</pubDate>
        <lastBuildDate>Sat 2022-06-11 14:02</lastBuildDate>
            <item>
              <title>Uploading multiple files from the command line using curl and the FTPS protocol</title>
              <pubDate>Sat 2022-06-11 14:02</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#curl+FTPS</guid>
              <description>
&lt;center>
&lt;a href="https://archive.stsci.edu/ftp.html" target="_blank">&lt;img border=0 
height=313 width=503 src="http://astro.berkeley.edu/~mikewong/images/2022/MAST_FTP.png">&lt;/a>
&lt;/center>

&lt;p>I needed to upload a bunch of files to the MAST archive, but FTP is no longer allowed because it is not secure. The &lt;a href="https://archive.stsci.edu/ftp.html" target="_blank">MAST announcement&lt;/a> recommends "GUI clients Filezilla, Cyberduck," but I have a purely emotional response to this: I don't &lt;b>feel the maximum enjoyment of techie accomplishment&lt;/b> if I have to click bubbles in a tool called Cyberduck. I want to use the command line, like I used to be able to with FTP.&lt;/p>

&lt;p>The MAST announcement said you could use curl, but it didn't give a good example. I wanted a way to do the following:
&lt;ul>
&lt;li>Run on the command line.
&lt;li>Upload a whole bunch of files to a single directory.
&lt;li>Require typing password only once.
&lt;/ul>
Basically, I was looking for the equivalent of typing &lt;span class="code_txt">mput hlsp_*&lt;/span> in FTP. This is what worked for the MAST archive:
&lt;/p>

&lt;pre class="code_txt" style="background: #ffffff">      curl &lt;mark class="hilite_blueberry">--ssl-reqd -u USERNAME&lt;/mark> 
           &lt;mark class="hilite_mint">-T 'hlsp_{dogs.txt,cats.fits,birds-and-worms.fits}'&lt;/mark>
           &lt;mark class="hilite_strawberry">ftp://archive.stsci.edu/pub/MY_DIR/&lt;/mark>&lt;/pre>

&lt;p>&lt;mark class="code_txt">&lt;span class="hilite_blueberry">--ssl-reqd&lt;/span>&lt;/mark> creates an &lt;a href="https://everything.curl.dev/ftp/ftps" target="_blank">explicit FTPS connection&lt;/a> rather than a FTP connection, as required by MAST security.&lt;/p>

&lt;p>&lt;mark class="code_txt">&lt;span class="hilite_blueberry">-u USERNAME&lt;/span>&lt;/mark> tells what username that curl should send to the server (for this system it is our email address). You would be able to tell curl to also send your password by using &lt;span class="code_txt">-u USERNAME:PASSWORD&lt;/span>, but I prefer to leave password blank so that I can enter it invisibly at the prompt.&lt;/p>

&lt;p>&lt;mark class="code_txt">&lt;span class="hilite_mint">-T 'hlsp_{dogs.txt,cats.fits,birds-and-worms.fits}'&lt;/span>&lt;/mark> is the way to specify several files. I tried to use &lt;span class="code_txt">-T 'hlsp_*'&lt;/span>. But that does not work, because curl is doing &lt;a href="https://everything.curl.dev/cmdline/globbing" target="_blank">URL globbing&lt;/a>, which doesn't support a * wildcard. URL globbing was designed to loop over a set of URLs following a pattern, not to loop over a set of local files.&lt;/p>

&lt;p>&lt;mark class="code_txt">&lt;span class="hilite_strawberry">ftp://archive.stsci.edu/pub/MY_DIR/&lt;/span>&lt;/mark> is the destination URL, and when uploading multiple files, this must end with a "/". Some testing suggests that for MAST, you can also start the URL with &lt;span class="code_txt">ftps://&lt;/span> and omit the &lt;span class="code_txt">--ssl-reqd&lt;/span> option to perform the transfer under an &lt;a href="https://everything.curl.dev/ftp/ftps" target="_blank">implicit FTPS connection&lt;/a>.&lt;/p>

&lt;p>&lt;/p>

&lt;p>&lt;/p>

&lt;p>&lt;/p>

&lt;p>&lt;/p>


&lt;a href="" target="_blank">&lt;/a>
              </description>
            </item>
            <item>
              <title>The rainbow collection.</title>
              <pubDate>Tue 2022-04-05 22:06</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#rainbow_collection</guid>
              <description>
&lt;center>
&lt;a href="https://dps.aas.org/leadership/climate" target="_blank">&lt;img border=0 
height=150 width=150 src="http://astro.berkeley.edu/~mikewong/images/2022/DPSLogoRainbow-Blue-500x.png">&lt;/a>

&amp;nbsp;

&lt;a href="https://www.nasa.gov/offices/odeo/LGBTQ-special-emphasis" target="_blank">&lt;img border=0 
height=150 width=150 src="http://astro.berkeley.edu/~mikewong/images/2022/msl-pixelrover.png">&lt;/a>

&amp;nbsp;

&lt;a href="https://ethicsandequitycenter.org/diversity-science/" target="_blank">&lt;img border=0 
height=150 width=399 src="http://astro.berkeley.edu/~mikewong/images/2022/gAyGU_logo_RGB.png">&lt;/a>
&lt;/center>

&lt;p>Here are some planetary science rainbow logos, in case anyone wants to use them for anything. I made stickers of the rainbow pixel-rover (based on one of the &lt;a href="https://mars.nasa.gov/msl/mission-updates/sols-2015-2017-rover-in-a-candy-store/?mu=sols-2015-2017-rover-in-a-candy-store" target="_blank">fiducial tattoos on Curiosity&lt;/a>), so I can give you one if you see me in person. Maybe I'll do &lt;a href="https://www.nasa.gov/audience/forstudents/5-8/features/symbols-of-nasa.html" target="_blank">the worm&lt;/a> next.&lt;/p>

&lt;p>Today's rainbow-fest is inspired by reading the &lt;a href="https://www.scientificamerican.com/article/new-revelations-raise-pressure-on-nasa-to-rename-the-james-webb-space-telescope" target="_blank">latest article in Scientific American&lt;/a> about how NASA declined to remove James Webb's name from its flagship telescope. I already commented on this issue below, but check out the best new thing in this article: the quote from Scott Gaudi. &lt;/p>

&lt;p>The article pointed me to a cool resource, the &lt;a href="https://astro-outlist.github.io/#outlist" target="_blank">Astronomy and Astrophysics Outlist&lt;/a>. I read through all 800+ names, which gave plenty of time for a swirl of thoughts:&lt;/p>
&lt;ul>
&lt;li>Oh [him/her/them]?
&lt;li>Wow there's a lot of Berkeley.
&lt;li>Now that you mention it, duh.
&lt;li>Hm. This list is not complete.
&lt;li>All these people would have been fired 60 years ago.
&lt;li>That affiliation? This list has been around for a while.
&lt;li>So sweet that [he/she] took the time to sign the allies list !!
&lt;li>Sapphic can be an identity label? Neat.
&lt;li>Schools that have "research professors" are cooler than Berkeley.
&lt;/ul>              </description>
            </item>
            <item>
              <title>The Klaus Teuber Space Telescope?</title>
              <pubDate>Fri 2022-01-07 14:50</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#KTST</guid>
              <description>
&lt;center>
&lt;a href="https://fortune.com/2016/04/03/settlers-catan-monopoly/" target="_blank">&lt;img border=0 
height=322 width=800 src="https://astro.berkeley.edu/~mikewong/images/2022/catan-KTST.jpg">&lt;/a>
&lt;/center>

&lt;p>My friend noticed that the segmented &lt;a href="https://jwst.nasa.gov/content/webbLaunch/whereIsWebb.html" target="_blank">JWST&lt;/a> primary mirror matches the segmented playing board of &lt;a href="https://fortune.com/2016/04/03/settlers-catan-monopoly/" target="_blank">Settlers of Catan&lt;/a>. ("The black thing in the middle is the robber," he said.)
&lt;/p>

&lt;p>NASA should rename the telescope after Catan creator &lt;a href="https://www.newyorker.com/business/currency/the-man-who-built-catan" target="_blank">Klaus Teuber&lt;/a>. This would have double benefits: It would give proper credit and avoid a copyright infringement suit against NASA for blatantly copying the playing board. But more importantly, it would eliminate the telescope's problematic association with &lt;a href="https://gizmodo.com/nasa-advisor-quits-over-space-telescope-named-for-homop-1847856513" target="_blank">a bureaucrat who enacted anti-queer policies in NASA and the State department&lt;/a> as part of the "lavender scare."&lt;/p>

&lt;p>
Actually the best choice &amp;mdash; if NASA wanted to return to the convention of naming space observatories after scientists &amp;mdash; would be renaming the telescope after &lt;a href="https://en.wikipedia.org/wiki/Frank_Kameny" target="_blank">Dr. Frank Kameny&lt;/a>. Kameny actually lost his job due to anti-LGBTQ discrimination (although not while Webb was in charge of anything), driving him to leave science for activism. He was mentioned in the &lt;a href="https://www.scientificamerican.com/article/nasa-needs-to-rename-the-james-webb-space-telescope/"_blank">&lt;i>Scientific American&lt;/i> piece&lt;/a> that originally boosted the issue of James Webb's problematic associations.
&lt;/p>

&lt;p>
Whatever its name, the telescope's job is to busily create &lt;a href="https://www.stsci.edu/jwst/instrumentation/spectroscopic-modes" target="_blank">infrared rainbows&lt;/a> behind a &lt;a href="https://en.wikipedia.org/wiki/James_Webb_Space_Telescope_sunshield" target="_blank">lavender sunshield&lt;/a>, making it possibly the gayest thing in space.
&lt;/p>              </description>
            </item>
            <item>
              <title>Using alpine as an IMAP client for G-suite at UC Berkeley.</title>
              <pubDate>Mon 2021-10-11 10:41</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#alpine_bmail</guid>
              <description>
&lt;center>
&lt;a href="" target="_blank">&lt;img border=0 
height= width= src="http://astro.berkeley.edu/~mikewong/images/2021/email-config-2021-10-11.png">&lt;/a>
&lt;/center>

&lt;p>It's been 8+ years since my &lt;a href="https://w.astro.berkeley.edu/~mikewong/index_12.php#pine_bmail" target="_blank">last post on how to keep ancient mail
readers working&lt;/a> with the most popular corporate email provider. The instructions there about encrypting your pine password file still work. But Google's "app 
passwords" can't be used any more at Berkeley, so here is the current method.&lt;/p>

&lt;p>You need to have Alpine v2.22 or above. To trigger authentication with the currently-supported OAUTH2 method, use settings as shown above. I got this from the &lt;a href="http://alpine.x10host.com/alpine/alpine-info/misc/AuthorizeAlpineGmail.html" target="_blank">relevant page&lt;/a> in Eduardo Chappa's Alpine project. You also have to go to &lt;a href="https://console.developers.google.com/" target="_blank">console.developers.google.com&lt;/a> and follow these &lt;a href="https://wiki.umbc.edu/display/faq/Configuring+Alpine+with+Gmail" target="_blank">helpful instructions&lt;/a> from UMBC, which are far more complicated than the old procedure of creating an app password. There are also instructions for this part at the Alpine project, but the UMBC instructions are slightly easier to follow (and I found them first).&lt;/p>

&lt;p>Now sometimes when you open Alpine, it will show a screen with an ugly Google link. Copy/paste that to a browser where you are logged in to your G-suite account, copy the key that the link provides, come back to Alpine, and enter that key after pressing "C" for "enter Code."&lt;/p>              </description>
            </item>
            <item>
              <title>Python in a TI graphing calculator.</title>
              <pubDate>Fri 2021-07-30 11:36</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#TI_python</guid>
              <description>
&lt;center>
&lt;a href="
https://www.tomshardware.com/news/circuitpython-powers-ti-84-calculator" target="_blank">&lt;img border=0 
height=400 width=698 src="http://astro.berkeley.edu/~mikewong/images/2021/calculator.jpg">&lt;/a>
&lt;/center>

&lt;p>
I just saw an article/ad for a &lt;a href="
https://education.ti.com/en-gb/products/calculators/graphing-calculators/ti-84-plus-ce-t-python" target="_blank">Texas Instruments TI-84&lt;/a> that has Python. This is so exciting and cool. This is what I want for Christmas, even though I'm pretty sure I would not actually use it. I made a whole pros/cons list to understand how completely irrational my attraction to this device is:
&lt;/p>

 &lt;table style="width:75%">
  &lt;tr>
    &lt;th>Pros&lt;/th>
    &lt;th>Cons&lt;/th>
  &lt;/tr>
  &lt;tr style="padding:20px; vertical-align:top;">
    &lt;td>
&lt;ul>
&lt;li>Cool
&lt;li>Has Python
&lt;li>Very nice color blue and green keys
&lt;li>TI calculators are well made and virtually last forever
&lt;/ul>
    &lt;/td>

    &lt;td>
&lt;ul>
&lt;li>I already have a calculator
&lt;li>I already have Pythons
&lt;li>Easier to type/view code on a computer
&lt;li>Cannot use when wearing contacts (keys/screen too small)
&lt;li>Does not have as many dedicated functions as my TI-30XA (DEG->RAD, DMS->DD, etc.)
&lt;li>No QWERTY
&lt;li>Will Python last forever?
&lt;/ul>
    &lt;/td>
  &lt;/tr>
&lt;/table> 



&lt;p>&lt;/p>




              </description>
            </item>
            <item>
              <title>Interactive Jupiter images at NOIRLab.</title>
              <pubDate>Tue 2021-05-11 16:47</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#interactive_noirlab</guid>
              <description>
&lt;center>
&lt;a href="https://noirlab.edu/public/news/noirlab2116/" target="_blank">&lt;img border=0 
height=200 width=600 src="http://astro.berkeley.edu/~mikewong/images/2021/triple-comparison.jpg">&lt;/a>
&lt;/center>

&lt;p>NOIRLab put together a really cool &lt;a href="https://noirlab.edu/public/images/comparisons/" target="_blank">interactive experience&lt;/a> that lets you compare simultaneous Jupiter images at multiple wavelengths. The data were obtained at Hubble and Gemini North observatories.&lt;/p>

&lt;p class="body_sml">&lt;b>CREDITS:&lt;/b> I'm grateful to NOIRLab staff for producing the release, with special appreciation to Vanessa Thomas for patiently meticulous writing, Lars Christensen for the idea of doing an image comparison, and Mahdi Zamani for giving the Jupiter data his special touch of vitality and glamour. The Gemini data are from program GN-2016B-FT-18 (PI Wong) and the Hubble data are from program GO-14839 (PI de Pater). Observations and processing were described in &lt;a href="https://iopscience.iop.org/article/10.3847/1538-4365/ab775f" target="_blank">Wong et al. (2020)&lt;/a> and &lt;a href="https://iopscience.iop.org/article/10.3847/1538-3881/ab3643" target="_blank">de Pater et al. (2019)&lt;/a>. This work was enabled by the location of the Gemini North telescope within the Maunakea Science Reserve, adjacent to the summit of Maunakea. I am grateful for the privilege of observing Ka'āwela (Jupiter) from a place that is unique in both its astronomical quality and its cultural significance.&lt;/p>
              </description>
            </item>
            <item>
              <title>Great conjuction 2020.</title>
              <pubDate>Sun 2020-12-06 19:45</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_13.php#great_conjunction</guid>
              <description>
&lt;center>
&lt;a href="http://astro.berkeley.edu/~mikewong/images/2020/conjunction-2panel.jpg" target="_blank">&lt;img border=0 
height=300 width=800 src="http://astro.berkeley.edu/~mikewong/images/2020/conjunction-2panel-800x.jpg">&lt;/a>
&lt;/center>

&lt;p>I'm fascinated with the 2020 Great Conjunction, because (1) there is an entire word ("great conjunction") specifically reserved for when Jupiter and Saturn are in the same place in the sky, and (2) Hubble would be able to capture images of both of them in a single pointing. But this is just a dream, because the relative positions of the Earth, Jupiter, and Saturn means that the grand giants appear too close to the Sun for Hubble to target. Otherwise, a parallel exposure using HST's ACS and WFC3 cameras could have imaged both planets at the same time!
&lt;/p>

&lt;p>Friends have been asking me about this event, so here is some more info:
&lt;ul>
    &lt;li>&lt;b>When will it happen?&lt;/b> The planets will be closest to each other in the sky on December 21 at 18:21 UTC (09:21 PST, thank you &lt;a href="https://www.timeanddate.com/astronomy/planets/great-conjunction" target="_blank">timeanddate.com&lt;/A>), although this could vary by a few minutes depending on your location on the Earth. It will be daytime for half of us (including those in California), but that's OK. Jupiter and Saturn will be astoundingly close together for a few days before and after 21 December too. The best time to view them is just after sunset. They will be following the Sun down.
    &lt;li>&lt;b>But someone said it was at 13:30 UTC.&lt;/b> The conjunction is indeed closer to 13:30 UTC (04:30 PST), but conjunction specifically means the planets are at the same east-west coordinate (right ascension) in the sky. Because their paths are at different angles, the closest approach (called the "appulse") will be a few hours later at 18:21 UTC, when Jupiter has passed slightly to the east of Saturn.  
    &lt;li>&lt;b>Do I need a telescope?&lt;/b> The great conjunction can be enjoyed without a telescope, especially if you get in the habit of taking a peek at the planets every few days leading up to it. A nice diagram &lt;a href="https://www.skyatnightmagazine.com/advice/skills/great-conjunction-jupiter-saturn/" target="_blank">here&lt;/a> shows how Jupiter and Saturn approach over time. At conjunction, they will be closer together than any of the bright stars in the Pleiades. So depending on your eyesight, you may still be able to tell that they are two separate points of light. With binoculars, you'll be able to see Saturn's unique shape (the rings), and possibly some of the major satellites. With a telescope, you can see details on the disk of Jupiter, and the gap between Saturn and its rings... perhaps in a single frame! I am very excited to see what spectacular images the amateur astronomers manage to produce. 
&lt;/ul>
&lt;/p>


&lt;p class="body_sml">&lt;b>CREDITS:&lt;/b> Timing and distance information comes from &lt;a href="https://ssd.jpl.nasa.gov/horizons.cgi" target="_blank">JPL Horizons&lt;/a>, where geocentric observer position was selected. The simulated sky image was generated by the &lt;a href="https://space.jpl.nasa.gov/" target="_blank">JPL Solar System Simulator&lt;/a>, and the instrument footprints themselves were taken from the &lt;a href="http://documents.stsci.edu/hst/wfc3/documents/handbooks/cycle18" target="_blank">WFC3 Instrument Handbook&lt;/a>. Gordy Bjoraker generated the solar system perspective view using the open-source &lt;a href="" target="_blank">Cosmographia&lt;/a> visualization tool.&lt;/p>              </description>
            </item>
            <item>
              <title>Jupiter's jet speeds in 2016.</title>
              <pubDate>Thurs 2016-10-20 12:22</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#OPAL_jupiter_ZWP</guid>
              <description>
&lt;center>
&lt;img border=0 
height=339 width=700 src="http://astro.berkeley.edu/~mikewong/images/2016/mapfig_2016-700x.jpg">
&lt;/center>

&lt;p>
Joshua Tollefson and I have derived &lt;a href="http://astro.berkeley.edu/~mikewong/doc/ZWP_j2016.txt" target="_blank">zonal winds&lt;/a> from the 2016
&lt;a href="http://astro.berkeley.edu/p/OPAL" target="_blank">OPAL&lt;/a>
observations of Jupiter. Josh is leading a paper on this, but we
wanted to release the wind profile in advance of publication, in
the hope that the profile will be useful for comparison with the Juno 
&lt;a href="http://www.nasa.gov/image-feature/jpl/pia21107/juno-s-first-slice-of-jupiter" target="_blank">microwave&lt;/a>
and 
&lt;a href="https://www.youtube.com/watch?v=i9TtSCkoERw" target="_blank">infrared&lt;/a>
observations coming soon, as well as the full range of earth-based
support observations going on during the Juno campaign.
&lt;/p>

&lt;p>The OPAL maps are already available on the
&lt;a href="https://archive.stsci.edu/prepds/opal/" target="_blank">OPAL archive page:&lt;/a>
&lt;center>
&lt;a href="https://archive.stsci.edu/prepds/opal/" target="_blank">&lt;img border=0 
height= width=700 src="http://astro.berkeley.edu/~mikewong/images/2016/hlsp_opal_hst_wfc3-uvis_jupiter-2016a_f395n-f502n-f631n_v1_globalmap-700x.jpg">&lt;/a>
&lt;/center>
&lt;/p>



&lt;p>We hope to update the wind profile using new observations near 
December 11, when Juno conducts its next scientific measurements of
Jupiter's atmosphere. &lt;/p>

&lt;ul>
&lt;li> Jupiter 2016 (April) zonal winds
&lt;a href="http://astro.berkeley.edu/~mikewong/doc/ZWP_j2016.txt" target="_blank">(141 kb text file)&lt;/a>

&lt;li>Current reference (until Tollefson et al. 2017 is published): 
&lt;a href="http://adsabs.harvard.edu/abs/2016DPS....4850107W" target="_blank">Wong et al. (2016) DPS&lt;/a>

&lt;li>Methods used:
&lt;a href="http://dx.doi.org/10.1016/j.icarus.2010.11.018" target="_blank">Asay-Davis et al. (2011)&lt;/a>

&lt;/ul>              </description>
            </item>
            <item>
              <title>TMT protests: Balanced discussion by a biased scientist.</title>
              <pubDate>Wed 2015-04-21 23:59</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#TMTprotests</guid>
              <description>
&lt;center>
&lt;a href="http://www.maunakeaandtmt.org/" target="_blank">&lt;img border=0 
height=319 width=742 src="http://astro.berkeley.edu/~mikewong/images/2015/summit-waimea-view.gif">&lt;/a>
&lt;/center>


&lt;p>I started working with the Thirty-Meter Telescope's (TMT's)
&lt;a href="http://www.tmt.org/about-tmt/international-science-development-teams/solar-system"
target="_blank">science advisory groups&lt;/a> in 2014, eleven years
after plans for the observatory started forming. At my first TMT
meeting, Project Manager Gary Sanders reported on "adversarial
questions" at public hearings held by TMT, and the view that
observatories on Mauna Kea are like pimples on the boundary
between land and sky. One thing Sanders impressed me with was
his deeply respectful tone when discussing difficulties he called
"more complicated than adaptive optics."&lt;/p>

&lt;p>Adaptive optics is a simple battle, with a single metric of
success: it's astronomers vs. atmospheric turbulence, where the
winner is determined by the value of the Strehl ratio. But on
Mauna Kea now, there are a host of factors to take into
account. The advance of human knowledge of the universe. The
undisputed best weather and clarity, darkest skies, and driest
air in the northern hemisphere. The educational and economic
state of a people oppressed and colonized for over 100 years. The
ancestral, spiritual link to the Earth. The ability of different
groups of humans to reach mutual respectful agreements.
Religious freedom. Biodiversity. Fragile ecosystems. A clean line
between land and sky.&lt;/p>


&lt;h4>Some facts and promises&lt;/h4>

&lt;p>Some of the objections to TMT are factually incorrect. A
  calmly-worded opposition statement claimed that
  the &lt;a href="http://upliftconnect.com/telescope-on-mauna-kea/"
  target="_blank">"Natural habitat, the watershed, conservation
  laws, cultural relevance, the illegal occupation of Hawai'i and
  a vision for the future are all being ignored as construction
  teams prepare to move forward."&lt;/a> Another objection holds
  that lucrative Mauna
  Kea &lt;a href="http://www.civilbeat.com/2015/04/peter-apo-mauna-kea-under-siege/"
  target="_blank">observatories generate millions of dollars of
  revenue&lt;/a>, which are not shared with their Hawai'ian
  hosts. Some of these are easy to discount:&lt;/p>

&lt;ul>
&lt;li> A very rigorous &lt;a href="http://www.maunakeaandtmt.org/documentation/" target="_blank">environmental impact study&lt;/a> was conducted,
  and the observatory is to be a zero-waste facility.

&lt;li> The pimple effect is reduced by a location down from the
  summit and to the
  northwest. &lt;a href="http://www.malamamaunakea.org/library/reference/index/refid/930-conservation-district-use-permit-application-thirty-meter-telescope-project-island-of-hawaii"
  target="_blank">Only 14% of the island of Hawai'i actually has
  a line of sight&lt;/a> to the observatory. The 600-ft elevation
  drop (compared to the higher-seated domes) reduces the area
  that will be able to see TMT, at a dear price to astronomers
  (the lowest-elevation domes are often the first to close when fog rolls in). The picture above
  shows that even from Waimea, where TMT would be visible, its
  much larger dome is less obtrusive than existing domes, due to
  the lower elevation of TMT.

&lt;li> The TMT site will not disturb any pu'u (cinder cones of
  spiritual significance). This is in contrast to prior
  observatory construction, which flattened some pu'u, leading to
  increased opposition to observatories on the summit.

&lt;li> TMT will directly support a vision for the future by
  creating jobs, many of them skilled tech jobs, for
  Hawai'ians. Substantial annual funding is &lt;a href="http://www.maunakeaandtmt.org/#collapse-8" target="_blank">already&lt;/a> giving
  educational support to train Hawai'ians in STEM fields.

&lt;li> Observatories do not "generate revenue." There are a few
  for-profit observatories, and selling observing time is also being
  contemplated to sustain aging facilities like Lick. But
  world-class research facilities like TMT are actually revenue
  suckers, draining money from governments and universities to
  conduct scientific research with no concrete monetary benefit
  whatsoever.
&lt;/ul>

&lt;p>And
the &lt;a href="http://www.welivemana.com/articles/native-hawaiian-astrophysicists-mana%E2%80%98o-thirty-meter-telescope"
target="_blank">native Hawai'ian voice is diverse.&lt;/a> Some in
favor of TMT say
that &lt;a href="http://www.kaleo.org/opinion/mauna-kea-telescope-in-line-with-hawaiian-values/article_fe6d0e06-e1a8-11e4-a997-bffb3e6bac1b.html"
target="_blank">the ancestors would be proud&lt;/a> of Hawai'i's role
in astronomical progress, and that
the &lt;a href="http://imgur.com/gallery/26IqJ" target="_blank">TMT
project contributes to island education, culture, and
economy&lt;/a>. A concise (compared to this) and
eloquent &lt;a href="http://www.gopetition.com/petitions/wesupporttmt.html"
target="_blank">petition in favor of TMT&lt;/a> was written by
18-year old native Hawai'ian Mailani Neal.&lt;/p>

&lt;h4>R.E.S.P.E.C.T.&lt;/h4>

&lt;p>One common complaint is the lack of respect coming from
astronomers. In 2006, Kealoha Pisciotta (one of the first native
Hawai'ians to work as a Mauna Kea telescope technician) expressed
frustration
that &lt;a href="http://articles.latimes.com/2001/mar/18/news/mn-39418"
target="_blank">astronomers "never once have said, 'We screwed up
and we're sorry.' They never once said, 'Thank you for letting us
use your sacred temple.'"&lt;/a> And professional activist Walter Ritte said he was so disappointed
with University of Hawai'i's community dialogue in response to
recent protests, that his "goal now is not to stop the building
of this observatory. The goal now is to &lt;a href="http://www.hawaiinewsnow.com/story/28719717/native-hawaiian-leaders-call-for-moratorium" target="_blank">get all of these
observatories off this mountain. They have crossed the line and
they have really angered the Hawai'ian community."&lt;/a>&lt;/p>

&lt;p>The issue of respect is highly emotionally charged. And honestly,
astronomers should be held accountable for lack of respect. But
on an institutional level, TMT's engagement with the native
community, and its adherence to the spirit and letter of the
construction approval process, speak to strong respect for
Hawai'ian values. I learned much much more about Hawai'ian culture
from reading TMT's own Use Permit Application than I did from
following #TMTshutdown tweets.&lt;/p>

&lt;p>On an individual level, planetary astronomers including Mike
Brown and Imke de Pater have demonstrated great respect for
Hawai'ian culture by honoring it within their work. Haumea
(Pluto's cousin), and its two small moons Hi'iaka and Namaka,
were given &lt;a href="http://en.wikipedia.org/wiki/Haumea#Name" target="_blank">names of Hawai'ian deities&lt;/a>, linked by intricate
similarities between the Hawai'ian legends and the physical
characteristics of the objects themselves. In 2002, years before Pisciotta
complained of a lack of gratitude among astronomers, de Pater's
acknowledgements in a journal article about the atmosphere of
Jupiter's moon Io read &lt;a href="http://dx.doi.org/10.1006/icar.2001.6787" target="_blank">"The authors extend special thanks to
those of Hawai'ian ancestry on whose sacred mountain we are
privileged to be guests. Without their generous hospitality, none
of the observations presented would have been possible."&lt;/a>&lt;/p>



&lt;h4>Self-determination of minority peoples&lt;/h4>

&lt;p>But
the &lt;a href="http://news.sciencemag.org/people-events/2015/04/hawaii-protests-force-pause-construction-world-s-largest-telescope"
target="_blank">protests against TMT are being used to "highlight
another cause: Hawai'ian sovereignty."&lt;/a> This may not seem fair
to TMT. But guess what else isn't fair?  A century of
colonialist domination of Hawai'i, from the overthrow of Queen
Lili'uokalani to the "banning" of Hawai'ian language in
schools.&lt;/p>

&lt;p>The suppression of Hawai'ian culture left folks
with a diminished ability to provide community input when the first
telescopes were being built on Mauna Kea. Even though TMT is
exercising much greater sensitivity and respect in its current
process, old resentments are now being spoken in a stronger
voice. The hashtag is mightier than the pen.&lt;/p>


&lt;p>TMT is a partnership between US universities (including
University of Hawai'i), China, India, Japan, and Canada. The world
is watching this controversy. People in the USA have been quick
to condemn Chinese practices ranging from the colonization and
cultural suppression of Tibet, to forced displacement for large
public works projects like the World Expo or the Three Gorges
Dam. It is essential that we set a good example for our TMT
partners by respecting Hawai'ian beliefs, protecting Hawai'ian
lands, and listening to the broad range of Hawai'ian viewpoints
both in favor of TMT and against it. &lt;/p>

&lt;p>I would rather see the telescope built at an inferior site,
rather than built without respect for native values as previous
observatories were. But much has changed since observatories
began popping up on Mauna Kea. No new observatories will ever be
placed atop the summit or on/near sacred pu'u. TMT's
construction/operations plan resulted from a process of
respectful dialog, and this process also deserves respect.&lt;/p>
              </description>
            </item>
            <item>
              <title>Moon shadow, moon shadow.</title>
              <pubDate>Fri 2015-03-20 21:28</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#moonshadow</guid>
              <description>
&lt;center>
&lt;img id="id_moonshadow" src="http://astro.berkeley.edu/~mikewong/images/2015/moonshadow-collage-800.jpg" border="0" width="800" height="479" orgWidth="800" orgHeight="479" usemap="#map_moonshadow" alt="" />

&lt;map name="map_moonshadow" id="id_map_moonshadow">

&lt;area id="1" alt="cassini sketch" title="cassini sketch" href="http://en.wikipedia.org/wiki/Giovanni_Domenico_Cassini#Astronomer" shape="rect" coords="0,0,388,98" style="outline:none;" target="_blank"     />

&lt;area id="2" alt="hubble heritage" title="hubble heritage" href="http://hubblesite.org/newscenter/archive/releases/2015/05" shape="rect" coords="0,98,386,479" style="outline:none;" target="_blank"     />

&lt;area id="3" alt="IRTF" title="IRTF" href="http://adsabs.harvard.edu/abs/2013DPS....4550603B" shape="rect" coords="385,0,800,192" style="outline:none;" target="_blank"     />

&lt;area id="4" alt="hubble hangout" title="hubble hangout" href="https://www.youtube.com/watch?v=Pf6j6WJS8Ig" shape="rect" coords="385,190,800,479" style="outline:none;" target="_blank"     />

&lt;area shape="rect" coords="798,477,800,479" alt="Image Map !! from image-maps.com" style="outline:none;" title="Image Map !! from image-maps.com" href="http://www.image-maps.com" />
&lt;/map>
&lt;/center>

&lt;p>A lot of cool things have been going on lately with solar eclipses on Jupiter, or "shadow transits." &lt;a href="http://en.wikipedia.org/wiki/Giovanni_Domenico_Cassini#Astronomer" target="_blank">Giovanni Cassini&lt;/a> was the first to actually observe one of these events 
(&lt;a href="http://en.wikipedia.org/wiki/Solar_eclipses_on_Jupiter" target="_blank">upper left&lt;/a>),
back in the 1600s at the dawn of the telescopic era of astronomy. He used his observations to implement one of Galileo's ideas: to use the timing of mutual events (eclipses and transits) as a type of absolute clock that could work anywhere on the Earth, back before atomic clocks or quartz oscillators were available.&lt;/p>

&lt;p>These events can be visually stunning, as the Hubble images of a rare triple-transit 
(&lt;a href="http://hubblesite.org/newscenter/archive/releases/2015/05" target="_blank">lower left&lt;/a>) 
show. Last month, I joined some Space Telescope Science Institute folks and Scott Lewis from &lt;a href="http://www.knowthecosmos.com" target="_blank">knowthecosmos.com&lt;/a> for a 1-hour chat about the spectacular Hubble imaging data (&lt;a href="https://www.youtube.com/watch?v=Pf6j6WJS8Ig" target="_blank">lower right&lt;/a>). It was a good time, and Susana Deutua from the Institute showed off her &lt;a href="http://galileoscope.org/" target="_blank">Galileoscope&lt;/a>, a replica of the telescope used by Galileo himself.&lt;/p>

&lt;p>Just this week, right in the middle of the &lt;a href="http://www.hou.usra.edu/meetings/lpsc2015/" target="_blank">LPSC meeting&lt;/a>, I participated in a super exciting remote-observing session at the &lt;a href="http://irtfweb.ifa.hawaii.edu/gallery/facility.php" target="_blank">IRTF telescope&lt;/a> on Mauna Kea. The PI of the observing program, &lt;a href="http://adsabs.harvard.edu/abs/2013DPS....4550603B" target="_blank">Gordy Bjoraker&lt;/a>, came up with a brilliant way to use shadow transits. Our goal was to measure infrared spectra, made up of thermal emission from the deeper atmosphere. We're using the data to figure out just how deep Jupiter's water clouds lie. However, near Jupiter's equator, things get tricky &amp;mdash; thick clouds there also reflect  sunlight that is still weakly present at 5-&amp;mu;m wavelengths. Gordy wanted to get a spectrum of just the thermal emission, without that pesky reflected sunlight. Io to the rescue! Io's shadow conveniently blocked most of the sunlight from the clouds in a little spot (screenshot by Tilak Hewagama at upper right), allowing us to take a pure thermal spectrum within the shadow.&lt;/p>

&lt;p>Analysis of these fresh data will take a while, but it's definitely worth the wait. We'll be sure to have results before the &lt;a href="http://science.nasa.gov/missions/juno/" target="_blank">Juno&lt;/a> spacecraft gets to Jupiter and conducts its highly complementary observations.&lt;/a>

              </description>
            </item>
            <item>
              <title>Giant storms on giant planets</title>
              <pubDate>Fri 2014-10-03 10:54</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#superstorms</guid>
              <description>
&lt;center>
&lt;a href="http://www.keckobservatory.org/recent/entry/cosmic_matters_stormy_weather_on_uranus" target="_blank">
&lt;table border=0 padding=15>
&lt;tr>
&lt;td>
&lt;img border=0 
height=256 width=235 src="http://astro.berkeley.edu/~mikewong/images/2014/bigstorms-blink.gif">
&lt;/td>
&lt;td>
&lt;img border=0 
height=256 width=470 src="http://astro.berkeley.edu/~mikewong/images/2014/bigstorms.jpg">
&lt;/td>
&lt;/tr>
&lt;/table>
&lt;/a>
&lt;/center>

&lt;p>When Voyager passed by Uranus in 1986, none of this was going on. Of course, the "blue" image above is false color, applied to infrared images of Uranus from the Keck Observatory. These storms are a lot more dramatic in the infrared. But still, seven years after equinox in Uranus' 84-year annual cycle, storm activity seems to be picking up.&lt;/p>

&lt;p>The storms themselves, at least visually, look similar to storms on Jupiter and Saturn, as seen in the infrared. These storms are rare on any of the giant planets, but there are a lot of questions about them. How much of the planets' internal heat do these superstorms carry? How often do they happen? Are they part of long term cycles? &lt;/p>

&lt;p>This is what I love about studying the solar system. It never gets old. Things change and evolve over time.&lt;/p>
              </description>
            </item>
            <item>
              <title>LPSC Megablog.</title>
              <pubDate>Thu 2013-03-21 6:05pm in TX</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#LPSC</guid>
              <description>
&lt;center>
&lt;img border=0 
height=316 width=624 src="http://astro.berkeley.edu/~mikewong/images/2013/lpsc-5002.jpg">
&lt;/center>

&lt;p>
Microblogging is really big at &lt;a href="http://www.lpi.usra.edu/meetings/lpsc2013/" target="_blank">LPSC&lt;/a>. I'm not a microblogger, or any kind of blogger really. I worry that as technology advances, and attention spans shrink, I am developing a mental disability. Short attention spans used to be characteristic of an attention deficit disorder. But now short attention spans are normal, and those who prefer to devote attention to things for longer amounts of time are the anomalous ones. So I think I have Attention Excess Disorder. Pharmaceutical companies, please develop some medicine for me so I can microblog.
&lt;/p>

&lt;p>
I had lunch today with Max Mutchler from STScI (a collaborator on &lt;a href="http://archive.stsci.edu/prepds/planetpipeline/" target="_blank">Planet Pipeline&lt;/a> and &lt;a href="http://www.lpi.usra.edu/meetings/lpsc2013/eposter/2633.pdf" target="_blank">Planet Investigators&lt;/a>), and I was amazed to find out that he's a kidney donor just &lt;a href="http://www.ucsfhealth.org/patients/chou_simone" target="_blank">like me&lt;/a>! I'm not shocked to meet a kidney donor. But to collaborate with one for more than three years, only to find this out halfway through lunch, was quite a shock. We talked about how we were affected by the situations that made our operations necessary, rather than the operations themselves. 
&lt;/p>

&lt;p>
I forgot to ask Max whether he was ever told, as I was recently by a friend, "You? You're the LAST person I would expect to be a kidney donor!"
&lt;/p>

&lt;p>
On my quest for free stuff in the exhibitors section, I came across edible rocks courtesy of the &lt;a href="http://cpsx.uwo.ca/" target="_blank">CPSX&lt;/a> booth (which they bought from a store nearby). Pictured are a black one and a yellow one. They look exactly like rocks, but they're chocolate! I'm looking around for Laurie Leshin, because she said during &lt;a href="http://www.lpi.usra.edu/meetings/lpsc2013/pdf/2234.pdf" target="_blank">her talk&lt;/a> that Curiosity finds 150-&amp;mu;m grains to be the "yummiest" dirt; but now, the rover is not the only one who eats rocks!
&lt;/p>              </description>
            </item>
            <item>
              <title>Using pine and bmail.</title>
              <pubDate>Sat 2013-02-09 18:02</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#pine_bmail</guid>
              <description>
&lt;center>
&lt;img border=0 
height=203 width=379 src="http://astro.berkeley.edu/~mikewong/images/2013/bmail.png">
&lt;/center>

&lt;p>I hate change! That's why I still use pine. My nephew saw my screen
last night and was like "Wow, look at all those lines of code!" It was just
pine. Nobody even knows what it is. But for the few that still use it, 
and who want to be able to use it with Berkeley's new bMail service,
here's how to set it up.&lt;/p>

&lt;ol>
&lt;li> Follow step 1 and 2 (only) here, to set bmail configuration options and to generate a google key that you need for login:
&lt;a href="http://kb.berkeley.edu/campus-shared-services/page.php?id=26754" target="_blank">http://kb.berkeley.edu/campus-shared-services/page.php?id=26754&lt;/a>.
&lt;li> In pine, go to the setup screen (M-S-C keys). Find and set the following config lines:
&lt;pre>&lt;code>     SMTP Server (for sending) = smtp.gmail.com/ssl/user=&lt;span style="color: #000000; background-color: #07240D">username&lt;/span>@berkeley.edu
     Inbox Path = {imap.gmail.com/ssl/user=&lt;span style="color: #000000; background-color: #07240D">username&lt;/span>@berkeley.edu}inbox
&lt;/code>&lt;/pre>
&lt;li> Now when you use pine, it will prompt you for your ugly-looking google key when you try to use email. This next step is optional, but it will allow pine to retain the key so you don't have to keep entering it:
&lt;br />
&lt;ul>&lt;li>Create your pine-password storage file, if it doesn't already exist. At the command line, type &lt;code>touch ~/pine.pwd&lt;/code>. The file name can be anything, but this is the name they used on the &lt;a href="http://objectmix.com/pine/244296-how-make-pine-not-ask-password.html" target="_blank">page&lt;/a> that showed me how to do this. The file wil contain your google key, but encrypted.
&lt;li>From now on, start pine with the right option to look for the password file. You can either type the option every time, or include an alias in your startup file. I only know how to do this for the csh/tcsh shells:
&lt;code>cat alias 'pinemail pine -passfile ~/pine.pwd' &amp;gt; .cshrc&lt;/code>. For other shells, you would probably need to change the syntax for the alias command, and/or store the command in another file (like profile.bash instead of .cshrc or something).
&lt;li>Now start pine, with the -passfile option. When it asks for a password,  enter the google key from step 1. Pine should then store it in the pine.pwd file, so you never have to ener it again.
&lt;/ul>&lt;/ol>

&lt;p>Thanks Google! That was much easier than trying to get pine to work with Microsoft Exchange.&lt;/p>
              </description>
            </item>
            <item>
              <title>They don't make school lunch the way they used to.</title>
              <pubDate>Thu 2012-11-08 16:28</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#southpointe</guid>
              <description>
&lt;center>
&lt;a href="http://www.wvusd.k12.ca.us/apps/news/show_news.jsp?REC_ID=277797&amp;id=1" target="_blank">&lt;img border=0 
height="413px" width="700px" src="http://astro.berkeley.edu/~mikewong/images/2012/southpointe-4762.jpg">&lt;/a>
&lt;/center>

&lt;p>I had a great time this week, speaking to 311 students at &lt;a href="http://www.wvusd.k12.ca.us/apps/news/show_news.jsp?REC_ID=277797&amp;id=1" target="_blank">South Pointe Middle School&lt;/a> in Diamond Bar on Tuesday (thanks, Kellie Muragishi!), and 36 students in the Robotics Magnet Class at &lt;a href="http://audubonms.org" target="_blank">Audubon Middle School&lt;/a> in Crenshaw yesterday (thanks, Eric Yu!).&lt;/p>

&lt;p>JPL's Mars office set me up with a rover model and a full size model rover wheel, and Scott gave me some NASA "meatball" stickers to hand out. These were great bribes to encourage the students to ask questions at the end. Some highlights:
&lt;ul>
&lt;li>I got more questions about my inspiration and enjoyment of work, than about how much money I make. But they still did ask.
&lt;li>When I asked what social/environmental issue relates to CO&lt;sub>2&lt;/sub> in the atmosphere, none of the students in Diamond Bar guessed that I was thinking climate change. Several of the Crenshaw students almost immediately knew what I was fishing for. 
&lt;li>School lunches have changed since I was little... similar to how airplane food changed. They used to be little cooked meals from the school kitchen, but now the lunches are pre-packaged corporate food. I had Subway sandwich at South Pointe, and another option was a pita-pack encased in a black plastic tub with  a plastic sheet that you have to peel back to get to the food. Maybe I didn't get in the right line, because another guy in the Faculty Lounge was eating a school lunch in a small white Chinese takeout box.
&lt;/ul>
&lt;/p>

&lt;p>&lt;/p>
              </description>
            </item>
            <item>
              <title>Flash news.</title>
              <pubDate>Tue 2012-09-11 12:34</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#impact2012</guid>
              <description>
&lt;center>
&lt;a href="http://georgeastro.weebly.com/jupiter.html" target="_blank">&lt;img border=0 
height=392 width=650 src="http://astro.berkeley.edu/~mikewong/images/2012/georgehall_LC2_mhw.png">&lt;/a>
&lt;/center>

&lt;p>What an exciting night. Or day. Or sol?&lt;/p>

&lt;p>I slept in yesterday, missing some key emails, and showed up to work
"early" for my shift doing MSL operations work (at 8pm). That's when I
found out there was another Jupiter fireball. This one was discovered
by Dan Petersen in Wisconsin by visual observation, and confirmed
when George Hall went back and found the flash in his archived video.&lt;/p>

&lt;p>Being simultaneously pulled to work on Mars and Jupiter made me
almost believe in astrology. I definitely felt that the planets were
controlling my life.&lt;/p>

&lt;p>&lt;b>About the image:&lt;/b> My lightcurve has a large uncertainty, but
is sufficient to predict that this event is too small to
create a visible impact scar. George Hall was kind enough to share
his video data for this analysis. The inset image consists of 22 frames
of George's data, stacked by Ricardo Hueso and treated with a mild
high-pass filter. Light curve data points are based on radial brightness 
curves, extrapolated to compensated for saturated pixels in the original
data.&lt;/p>


&lt;p>More detailed reports include:
&lt;ul>
&lt;li>&lt;a href="http://www.flickr.com/photos/19299984@N08/7976507568" target="_blank">George Hall's video data on Flickr !!&lt;/a>
&lt;li>&lt;a href="http://www.skyandtelescope.com/observing/home/Another-Flash-on-Jupiter-169263686.html" target="_blank">Sky and Telescope&lt;/a>
&lt;li>&lt;a href="http://cosmicdiary.org/fmarchis/2012/09/10/another-fireball-on-jupiter/" target="_blank">Franck's blog&lt;/a>
&lt;li>&lt;a href="http://www.newscientist.com/article/dn22259-fresh-jupiter-impact-may-aid-solar-system-census.html" target="_blank">New Scientist&lt;/a>
&lt;/ul>
&lt;/p>
              </description>
            </item>
            <item>
              <title>Time Lapse Saturn/Jupiter Video: "Outer Space."</title>
              <pubDate>Wed 2012-05-02 12:09</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#outerspace</guid>
              <description>
&lt;center>
&lt;a href="http://vimeo.com/40234826" target="_blank">&lt;iframe src="http://player.vimeo.com/video/40234826" width="500" height="255" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen>&lt;/iframe>&lt;/a>
&lt;/center>

&lt;p>I just found out about this awesome video by &lt;a href="http://vimeo.com/user5612068" target="_blank">Sander van den Berg&lt;/a>, using Voyager and Cassini imaging data. If you're like me, you've seen some of the videos in this compilation, but this is a really breathtaking new way to absorb them. A lot of physics, some understood and some not, is captured in this 1:52 piece.&lt;/p>
              </description>
            </item>
            <item>
              <title>Space Senator.</title>
              <pubDate>Thu 2012-04-12 14:01</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#mikulski</guid>
              <description>
&lt;center>
&lt;a href="http://archive.stsci.edu/aboutmast.html" target="_blank">&lt;img border=0 
height=266 width=400 src="http://imgsrc.hubblesite.org/hu/db/images/hs-2012-17-h-web.jpg">&lt;/a>
&lt;/center>

&lt;p>I just went to browse &lt;a href="http://archive.stsci.edu/" target="_blank">MAST&lt;/a>, formerly the Multimission Archive at STScI, and found out that it's been renamed. It's still MAST, but now it stands for the Mikulski Archive for Space Telescopes.&lt;/p>

&lt;p>Senator Barbara Mikulski was honored for becoming the longest-serving woman in U.S. Congressional history, and also for being a great defender of space exploration and research. There are nice writeups about MAST and Sen. Mikulski on the  &lt;a href="http://archive.stsci.edu/aboutmast.html" target="_blank">about MAST page&lt;/a> and a &lt;a href="http://hubblesite.org/newscenter/archive/releases/2012/17/full/" target="_blank">Hubble press release.&lt;/a> Although some NASA advocates focus their support on the manned space program with its associated defense contractor expenditures, Senator Mikulski's record shows support for the kind of stuff I do: science. I'm proud that they renamed the archive after her.&lt;/p>
              </description>
            </item>
            <item>
              <title>Space Ronin.</title>
              <pubDate>Tue 2012-02-28 12:20</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_12.php#ronin</guid>
              <description>
&lt;center>
&lt;table border=0>
&lt;tr>&lt;td>
&lt;a href="http://astro.berkeley.edu/~mikewong/images/2011/HFA-full.jpg" target="_blank">&lt;img border=0 
height=300 width=392 src="http://astro.berkeley.edu/~mikewong/images/2011/HFA-mini.jpg">&lt;/a> 
&lt;/td>&lt;td>
&lt;a href="http://astro.berkeley.edu/~mikewong/images/2012/SRB-full.jpg" target="_blank">&lt;img border=0 
height=300 width=392 src="http://astro.berkeley.edu/~mikewong/images/2012/SRB-mini.jpg">&lt;/a>
&lt;/td>&lt;/tr>&lt;/table>
&lt;/center>

&lt;p>My career is not not going quite the way I thought it would, back when I was 18. Shouldn't I have a faculty job by now? Or a civil servant position at NASA?
&lt;/p>

&lt;p>These days, many people adopt different paths. We branch out, or we work at scientist farms, where top-quality researchers can sustain themselves on grants. So I'm starting a new (part-time) Visiting Scientist gig at University of Michigan, following on an awesome Visiting Scientist stint at Space Telescope in 2009-2010. At Michigan I'll be working with the &lt;A href="http://ssed.gsfc.nasa.gov/sam/" target="_blank">SAM instrument&lt;/a> on the &lt;A href="http://www.nasa.gov/mission_pages/msl" target="_blank">Curiosity rover&lt;/a>.&lt;/p>

&lt;p>Although a part-time visiting scientist arrangement is odd, and inconvenient... I don't think it's extremely unusual these days. I'm a &lt;a href="http://en.wikipedia.org/wiki/R%C5%8Dnin" target="_blank">Space Ronin&lt;/a>; I have no tenure and I work here and there. I'm well regarded internationally in my field, but just without the job to match. I console myself in the quote usually found on the whiteboard behind the bar at &lt;A href="http://www.tommystequila.com/" target="_blank">Tommy's&lt;/a>: "IF YOU LIVE IN S.F. PLEASE REMEMBER HOW LUCKY YOU ARE."&lt;/p>
              </description>
            </item>
            <item>
              <title>NASA's new map of ocean salt concentration.</title>
              <pubDate>Thu 2011-09-22 14:33</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_11.php#aquarius_salt</guid>
              <description>
&lt;center>
&lt;a href="http://photojournal.jpl.nasa.gov/catalog/PIA14786" target="_blank">&lt;img border=0 
height=271 width=620 src="http://photojournal.jpl.nasa.gov/jpegMod/PIA14786_modest.jpg">&lt;/a>
&lt;/center>

&lt;p>This is the first map showing the salt concentration at the ocean's surface that was taken by NASA's Aquarius instrument, flying aboard Argentina's Earth observation satellite SAC-D (Sat&eacute;lite de Aplicaciones Cient&iacute;ficas).&lt;/p>

&lt;p>What's cool about this map? You can see how salt and fresh water interact in the ocean. Purplish regions, especially near continental coastlines, show relatively fresh water delivered by river systems. NASA calls the extensive fresh outflow from the Amazon delta "surprisingly large." &lt;/p>

&lt;p>Other features&amp;mdash;like the blue stripe near the equator and orange blobs in the tropics/subtropics  north and south of the equator&amp;mdash;are well understood effects caused by strong evaporation at the tropics/subtropics and heavy rainfall at the equator.&lt;/p>

&lt;p>As Aquarius makes more and more of these maps, it will be fascinating to see how these patterns change with season, or with climatic events such as El Ni&amp;ntilde;o.&lt;/p>
              </description>
            </item>
            <item>
              <title>Great launch for Juno mission to Jupiter.</title>
              <pubDate>Fri 2011-08-05 14:16</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_11.php#juno_launch</guid>
              <description>
&lt;center>
&lt;a href="http://www.nasa.gov/mission_pages/juno/main/index.html" target="_blank">&lt;script type="text/javascript" src="http://cdn-akm.vmixcore.com/vmixcore/js?auto_play=0&amp;cc_default_off=1&amp;player_name=uvp&amp;width=512&amp;height=332&amp;player_id=1aa0b90d7d31305a75d7fa03bc403f5a&amp;t=V0F7WsdsCgawql9QaIK367mqRWefcji1GO">&lt;/script>&lt;/a>
&lt;/center>

&lt;p>NASA's offering a pretty launch video of the Juno spacecraft being carried to space aboard an Atlas 5. My former graduate advisor was there at the launch, so I'll have to ask him what his impression was. Solar-powered Juno will reach Jupiter in 5 years with only one Earth flyby gravitational assist, slightly faster than nuclear-powered Galileo's 6-year cruise with a Venus flyby and two Earth flybys. Juno is a much smaller mission, with specific goals, and it only will cost about 80&amp;#37; of the $1.4B Galileo missions total &lt;a target="_blank" href="http://solarsystem.nasa.gov/galileo/facts.cfm">pricetag&lt;/a>. &lt;a target="_blank" href="http://bigbendnow.com/2011/06/scientist-with-area-ties-to-study-jupiter-up-close-and-personal/">Juno's cost&lt;/a> 
is about half the &lt;a target="_blank" href="http://www.nasa.gov/centers/kennedy/about/information/shuttle_faq.html#1">cost of a Space Shuttle&lt;/a>, and about 2x the &lt;a target="_blank" href="http://www.nasa.gov/centers/kennedy/about/information/shuttle_faq.html#10">cost of a Space Shuttle launch&lt;/a>.&lt;/p>

&lt;p>From my perspective, the most exciting Juno observations will be it's super-deep probing radio-wave measurements of gas opacity in the deep polar atmosphere. The mission hopes to capture the holy grail of &lt;a target="_blank" href="http://astro.berkeley.edu/~mikewong/projects.php#G320">Jupiter compositional studies:&lt;/a> a measure of the deep water abundance. Another exciting contribution will be the hi-definition measurements of Jupiter's gravitational (and magnetic) fields. The gravity data will help us define the structure of Jupiter's core regions, as well as its deep wind flows and currents.&lt;/p>

&lt;p>NASA gives a &lt;a target="_blank" href="http://www.nasa.gov/mission_pages/juno/overview">great summary&lt;/a> of why the name Juno was picked:

&lt;blockquote>In Greek and Roman mythology, Jupiter drew a veil of clouds around himself to hide his mischief. It was Jupiter's wife, the goddess Juno, who was able to peer through the clouds and reveal Jupiter's true nature. The Juno spacecraft will also look beneath the clouds to see what the planet is up to, not seeking signs of misbehavior, but helping us to understand the planet's structure and history.&lt;/blockquote>

Speaking of names, dictionary.com recently opened a &lt;a target="_blank" href="http://hotword.dictionary.com/pluto-moon/">606-comment debate&lt;/a> (as of now) about what &lt;a target="_blank" href="http://astro.berkeley.edu/~mikewong/index_11.php#plutoP4">Pluto's new moon&lt;/a> should be called. The moon is really dinky, but I still think it's about time we got something named after Cerberus, or maybe Kerberos since Asteroid 1865 is already called 
&lt;a target="_blank" href="http://en.wikipedia.org/wiki/1865_Cerberus">Cerberus&lt;/a>.&lt;/p>
              </description>
            </item>
            <item>
              <title>Pluto's new moon.</title>
              <pubDate>Wed 2011-07-20 16:18</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_11.php#plutoP4</guid>
              <description>
&lt;center>
&lt;a href="http://hubblesite.org/newscenter/archive/releases/2011/23/" target="_blank">&lt;img border=0 
height=222 width=400 src="http://imgsrc.hubblesite.org/hu/db/images/hs-2011-23-a-web.jpg">&lt;/a>
&lt;/center>

&lt;p>In another bid to render textbook entries about it obsolete, Pluto has
revealed its fourth, and smallest, satellite. This is yet another outstanding
discovery by Mark Showalter, who also recently found that small bodies
impacting Jupiter and Saturn can create long-lasting &lt;a href="http://news.sciencemag.org/sciencenow/2011/03/scienceshot-impacts-leave-marks.html" target="_blank">ripples in the planets' ring systems&lt;/a>.&lt;/p>

&lt;p>Pluto's new moon "P4" was discovered using the &lt;a href="http://www.stsci.edu/hst/wfc3" target="_blank">WFC3&lt;/a>/UVIS detector, which 
I helped to calibrate and support when I was in Baltimore. &lt;/p>

&lt;p>I just uploaded the image below, a calibration test frame for CCD Chip 2 of WFC3&amp;mdash;the very same chip that discovered P4&amp;mdash;to this great but not very active site called &lt;a href="http://www.myartinscience.com/" target="_blank">my art in science&lt;/a>. If you have any pretty scientific images of your own, &lt;a href="http://www.myartinscience.com/" target="_blank">my art in science&lt;/a> is a great place to share it.&lt;/p>

&lt;center>
&lt;a href="http://www.myartinscience.com/node/245" target="_blank">&lt;img border=0 
height=150 width=300 src="http://astro.berkeley.edu/~mikewong/images/2011/TV3_43_2_mini.jpg">&lt;/a>
&lt;/center>
              </description>
            </item>
            <item>
              <title>New office, new astro-blog.</title>
              <pubDate>Wed 2011-07-13 18:09 PDT</pubDate>
              <guid isPermaLink="true">http://astro.berkeley.edu/~mikewong/index_11.phpindex_11.php#newHFA</guid>
              <description>
&lt;center>
&lt;a href="http://astro.berkeley.edu/~mikewong/images/2011/HFA-full.jpg" target="_blank">&lt;img border=0 
height=300 width=392 src="http://astro.berkeley.edu/~mikewong/images/2011/HFA-mini.jpg">&lt;/a>
&lt;/center>

&lt;p>Along with most of the Astronomy Department, I've moved to the Hearst
Field Annex (HFA). Here we await the demolition of Campbell Hall, and the 
building of &lt;a href="http://berkeley.edu/news/media/releases/2008/11/25_campbell.shtml" target="_blank">New Campbell Hall&lt;/a>.&lt;/p>

&lt;p>Cubicle life is lovely. I'm located near the blue dot in the map above,
everything smells like new carpet, new toys are in use (an IRC channel and a ping pong table), and we have water coolers.&lt;/p>
              </description>
            </item>
    </channel>
</rss>
