Just for the sake of "whateverness" here is another way to do it with scrape. Admitedly it might not work the same for everyone, or google might do something to break it, so the Wunder method is probably still better, as long as our api key keeps working.
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 1.9.1.9-->
<command id="166" name="scrape sunrise" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>scrape</cmdType>
<params>
<param>https://www.google.ca/search?q=when+is+sunrise%20in%20Morin-Heights</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>Results.RegEx</cmdType>
<params>
<param>td.class="r"><b>(.*?)<</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>OSD.ShowText</cmdType>
<params>
<param>{Match.1}</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
</command>