I can't provide support if I'm the developer, and I don't have the admin privileges to access the data. Also, even if I had privileges, I'm not sure it is kosher to try to build data access for data behind a login in an open source project.
05.08.2025 04:32 β π 0 π 0 π¬ 1 π 0
I'll still hold on to my code in case of them making this publicly available again. But for now, the fuels charts won't work.
04.08.2025 23:44 β π 3 π 0 π¬ 1 π 0
Unfortunately for FireWxPy users, it looks like now you need government credentials to access FEMS, otherwise you get an HTTP 403:Forbidden error. Guess I'll have to remove the fuels charts from FireWxPy because they won't work anymore.
04.08.2025 23:41 β π 5 π 2 π¬ 1 π 0
Had a great day mountain biking at Snow Valley, California. #cawx #mtb
02.08.2025 23:27 β π 8 π 0 π¬ 0 π 0
Operational forecasting now feels like a chore to me lol.
01.08.2025 16:00 β π 1 π 0 π¬ 0 π 0
It's amazing how much interests can change in 10 years. When I was going into my senior year in college 10 years ago, I had zero interest in computer programming and was soley interested in forecasting. Now I am much more passionate about computer programming than I am about forecasting.
01.08.2025 13:58 β π 5 π 0 π¬ 1 π 0
A criminal doing business with a genocidal criminal regime. Birds of the same feather flock together.
31.07.2025 16:45 β π 2 π 0 π¬ 1 π 0
Remember kids, Donald Trump build a Trump Tower in Baku and Ivanka had a no-show consultant job on the project before Donny took office the first time!
31.07.2025 16:40 β π 2 π 1 π¬ 1 π 0
2024 was her chance. I think the Democratic Party needs someone new in 2028, especially after she lost to Donald Trump of all people in 2024. I want Andy Beshear 2028.
30.07.2025 19:37 β π 1 π 0 π¬ 0 π 0
Summer-to-date temperature anomaly for Alaska. @alaskawx.bsky.social
30.07.2025 17:26 β π 26 π 7 π¬ 1 π 0
It's always a good day when the Mets win and the Phillies lose! #LGM
28.07.2025 02:29 β π 14 π 1 π¬ 2 π 0
I also want to learn C++ with PyBind11. I have seen some tutorials on it. But I also need to learn C++ since I've never wrote C++ code before...π
27.07.2025 17:30 β π 1 π 0 π¬ 0 π 0
One application I am thinking of using Cython is for performing calculations on raster data in PyClimo. It takes several minutes when calculating new fields for each point on the geotiff PRISM data across CONUS when using Python. I suspect Cython will significantly speed up the process.
27.07.2025 17:27 β π 2 π 0 π¬ 2 π 0
When I was much newer to development a couple years ago, I would download the data eachtime I ran the script via NOMADS OPENDAP and sometimes it resulted in a 5-min ban from data access. The scanner will help newer developers who might not be fully aware of these things so that they avoid them.
27.07.2025 17:25 β π 1 π 0 π¬ 0 π 0
I plan to use wxdata to power the FireWxPy data access once it is done.
27.07.2025 17:19 β π 1 π 0 π¬ 0 π 0
One thing I am building into wxdata is a scanner for the purpose of being nice to the servers. The scanner will determine if the latest run is in and if the files locally on your PC are up to date to avoid downloading new data if you are creating a bunch of graphics from the same data at once.
27.07.2025 17:18 β π 1 π 0 π¬ 2 π 0
I am also starting to teach myself Cython because I think it can be useful for certain applications when preprocessing data. I think it can be good for the calc module because Cython is a C-extension of Python and thus runs closer to the speed of C/C++ to optimize performance.
27.07.2025 17:15 β π 1 π 0 π¬ 1 π 0
Downloading a single set of data (GEFS0P25 Ensemble Mean) takes about 2-4 minutes.
27.07.2025 17:12 β π 0 π 0 π¬ 0 π 0
I suspect no because this is file transfering over the internet. I found the GEFS0P25/GEFS0P50 takes about an hour for all 30 members. GEFS0P50 Secondary Parameters takes closer to 2 hours given those files are much bigger in size.
27.07.2025 17:10 β π 0 π 0 π¬ 2 π 0
When downloading all 30 GEFS members via HTTPS in Python, the function takes a couple hours to run and I want to speed that up. I have 1000MB/s internet. I suspect the answer is no but I'll ask anyway: Is this something that using a lower level language would speed up or no?
27.07.2025 17:08 β π 2 π 0 π¬ 1 π 0
I also used urllib to download the files from NOMADS via HTTPS.
24.07.2025 23:37 β π 1 π 0 π¬ 0 π 0
4) Use xarray open_mfdataset() in a for-loop going through each ensemble member folder. Set concat_dim='step'.
5) Create a ds_list of all concatenated xarray data arrays from each folder.
6) Then use ds = xr.concat(ds_list, dim='number')
Done!
24.07.2025 23:37 β π 1 π 0 π¬ 1 π 0
π§΅Nvm I figured out a solution. Here is my method:
1) Use os to create a folder for each ensemble member.
2) Download the .F### files and use os to move those files into the correct folder corresponding to the ensemble member number.
3) Use os to change the files from .F### to .GRIB2 [1/n]
24.07.2025 23:35 β π 1 π 0 π¬ 1 π 0
Trying to think of ways to concatenate all the GEFS ensemble members using open_mfdataset() in xarray along both the 'number' (ensemble) and 'step'. Problem is I get errors if I try more than 1 dimension and if I set concat_dim='step' I lose all but 1 member and concat_dim='number' I lose steps.
24.07.2025 15:35 β π 1 π 0 π¬ 0 π 1
This violates the Hatch Act on so many levels. Trump Cabinet: "Hey federal workers: Hatch Act for thee but not for me!"
19.07.2025 15:37 β π 3 π 0 π¬ 0 π 0
I combine the files by converting the .f{forecast hour} to f{forecast hour}.grib2 and then combine all files with file_pattern=f"{model}/*.grib2"
19.07.2025 15:31 β π 1 π 0 π¬ 0 π 0
I also combine all the files into one xarray data array which will make it easier for users. Finally, I built in a function for users who want to make a map spanning the globe that uses cartopy.util add_cyclic_point. I simplified the process for that with the function cyclic_point(ds, param).
19.07.2025 15:26 β π 1 π 0 π¬ 1 π 0
This project is still very much in its infancy but I did test out the scanner on the GEFS0p25 on NOMADS and it worked. Downloaded the new files when they updated on NOMADS but didn't re-download current files. Now it's repeating this for everything else.
19.07.2025 15:23 β π 1 π 0 π¬ 1 π 0
Always fighting for the people.
Wife, Momala, Auntie. She/her.
107 Days, my behind-the-scenes account of the shortest campaign in history, is available for pre-order now.
Federal workers fighting back against DOGE
MAY DAY EVENTS
maydaystrong.org
JOIN OUR MOVEMENT ‡οΈ
savepublicservices.com
SAVE THE SSA/EPA/VA PETITIONS:
https://linktr.ee/funfedworkers
22 | Democrat | @harryjsisson (1 million+) on Tik Tok | Email: inquiries@harryjsisson.net
Independent journalist and publisher of the Public Notice newsletter https://www.publicnotice.co/subscribe
Bronx boy. Cubs fan. Dad, husband, writer, podcaster and cable news host.
The Sirensβ Call: How Attention Became the Worldβs Most Endangered Resource out now.
https://sirenscallbook.com/
Official Account of Senator Chuck Schumer, New Yorkβs Senator and the Senate Democratic Leader.
schumer.senate.gov
Official Bluesky account for the 57th Governor of New York State. Social Media Use Policy: https://www.ny.gov/social-media-policy
48th Governor of the Commonwealth of Pennsylvania.
Father Β· Husband Β· Son Β· Governor of the Commonwealth of Kentucky Β· Committed to setting a positive tone and fighting for all our families.
Dad, husband, President, citizen. barackobama.com
Historian. Author. Professor. Budding Curmudgeon. I study the contrast between image and reality in America, especially in politics.
Living in a New York State of Mind, Upstate Style
Author of "Program Management for Open Source Projects" and all-around opinion haver. Always looking for my next tornado. I get too invested in sports.
https://funnelfiasco.com
https://duckalignment.academy
Satellite meteorologist, NOAA Cooperative Institute for Meteorological Satellite Studies, University of Wisconsin - Madison. Personal account, all opinions Β©2025. Possibly woke af. Trump is probably an authoritarian.
Scientist, soccer referee, Iowa State graduate, Iowa native, and Oklahoma transplant. Proud to be a civil servant working in my dream job at the National Severe Storm Laboratory. Opinions my own.
π° To Donate: https://www.buymeacoffee.com/SportsScores
Fastest scores on Bluesky
Follow other bots:
@mlsscores.bsky.social
@eplscores.bsky.social
@nbascores.bsky.social
@nflscores.bsky.social
@nhlscores.bsky.social
Created by @Blurangengold.bsky.social
Doting grandmother, among other things.
250+ MLB pitchers have worked with Codify to elevate their game! βΎοΈ Chat here and visit codifybaseball.com to learn more about how our analytics help pitchers succeed!
Recovering lawyer who may relapse at any moment. President, Society for the Rule of Law. Co-host of the βGeorge Conway Explains It Allβ podcast on The Bulwark.