1 2 Jump to
Questions about Expedition features » Import waypoints to Zeus3s » 7/09/2024 3:42 am |
So the way to get routes into our new ZeusS while at sea is to use Starlink. Wow, who saw that coming?
Networking Issues » Vulcan 7 to Exp via Wifi » 7/02/2024 4:27 am |
In Instruments->GPS make sure you've got the box selecting the Vulcan checked.
All the Vulcans I've used on port 10110 I set to NMEA 0183 - do they have a websockets server, too?
Community Resources » NE Pacific Images » 6/30/2024 11:48 am |
I'll leave the source server up for at least a while, maybe a long time.
Insert this into C:\Program Files\Expedition\config\myimage.xml
<Provider>
<name>fogmachine</name>
<Image>
<title>GOES-18 GeoColor Hawaii/California</title>
<projection>Mercator</projection>
<url>
<ref lat="40.0" lon="-161.0" x="0" y="0"></ref>
<ref lat="18.63" lon="-117.0" x="1920" y="1080"></ref>
</Image>
<Image>
<title>GOES-18 GeoColor Catalina Eddy</title>
<projection>Mercator</projection>
<url>
<ref lat="34.66" lon="-121.33" x="0" y="0"></ref>
<ref lat="32.40" lon="-116.50" x="1920" y="1080"></ref>
</Image>
<Image>
<title>GOES-18 GeoColor+Lightning - Hawaii/US West Coast</title>
<projection>Mercator</projection>
<url>
<ref lat="49.50" lon="-161.50" x="0" y="0"></ref>
<ref lat="19.08" lon="-94.50" x="1920" y="1080"></ref>
</Image>
</Provider>
General Discussion » Change CSV logfile Utc format in Excel » 11/06/2023 4:25 pm |
For those going from Expedition to Unix in Python:
msDate = float(vals["Utc"]) # Expedition's Microsoft DATE like 45059.344034
seconds = int((msDate - 25569) * 86400)
ts = datetime.datetime.utcfromtimestamp(seconds)
Community Resources » Weather website » 11/06/2023 11:54 am |
SF Bay, Southern California, and the Eastern North Pacific
Software Releases » Tracks disappear in 11.16.4 » 7/20/2022 5:30 pm |
Upgraded to 11.16.4 on Windows and the tracks of everyone I'm following in the Pacific Cup disappeared. Messed around for a while, couldn't get tracks back.
Downgraded to 11.15.2 and they reappeared.
Bug or pilot error?
Technical Q&A » logfile fields » 4/22/2022 1:01 pm |
Wow that did it - 2019 data is playing back with databoxes and everything. Thanks!
Google-programming (aka programming by cliche) for converting Python datetime objects:
def excel_date(date1):
temp = datetime.datetime(1899, 12, 30) # Note, not 31st Dec but 30th!
delta = date1 - temp
return float(delta.days) + (float(delta.seconds) / 86400)
Technical Q&A » logfile fields » 4/22/2022 11:55 am |
I'm trying to convert some historical logfiles to the Expedition format for further analysis - two questions:
(a) what format are the timestamps? They look like floating point numbers but aren't Unix timestamps (seconds since January 1, 1970)
(b) When reading logfiles does Expedition parse the header line to determine the set of fields ensuing or does it used a fixed set? I'm using the set from an example file, but there are many, many unused fields.
Networking Issues » Windows 10 WiFi & H5000 » 4/08/2022 9:31 am |
We fixed this with a Windows 10 generic from scratch reinstall from a pure image (not an OEM image) with no "Enhanced Microsoft Experience" or other "value added" features. This means only a local user, no OneDrive, no Office 365, no 3rd party anti-virus, etc.
- The WiFi Network Profile (under the net's properties) is "Private" and Metered connection is enabled. The profile change may be the significant one, the metered connection should prevent Windows Update and other services from firing up when at sea.
- Disabled Windows Defender Firewall on "Private" networks. Probably unnecessary.
YMMV. Caveat emptor. Illegitimi non carborundum.
Technical Q&A » Expedition GFS 0.11 - No rain » 4/08/2022 9:27 am |
From NOAA this morning:
Dear Users, We recognize that our NOMADS services are still degraded since this past Wednesday’s data center issues. We have a team dedicated still to resolve all of the remaining issues with access, and apologize for the disruption. Please be advised that all data remains available on FTPPRD (). Thank you for your patience while we work to fully restore our systems. Regards,NCO Dataflow
1 2 Jump to