amirfarhan
amirfarhan
It seems that some data when fetched still give me the 404 error after your changes. Are you experiencing this?
That would be one of them. The others, if you wait long enough, will appear and it seems like they do starting from 26th of August (backwards). Perhaps the NOAA...
I retrieve the data from here: [https://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_1p00.pl](https://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_1p00.pl) They are in the form of grib so you can use [grib2json](https://github.com/cambecc/grib2json) to get the json file. Make sure that var_TMP=on so you...
I'm also getting the same error and I have a feeling it is from the glsl files
I solved my issue with `var vertexShader = glsl(["#define GLSLIFY 1\nuniform mat4 u_matrix;\nattribute vec2 a_position;\n\nvoid main() {\n gl_Position = u_matrix * vec4(a_position, 0.0, 1.0);\n gl_PointSize = 10.0;\n}\n"]);` `var fragmentShader =...