You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue seems to be resolved in source code, but not yet published to the CDN. See https://cdn.jsdelivr.net/npm/[email protected]/src/leaflet.timedimension.util.js, which does not have the suggested changes. Would it be possible to release the latest version of the code to CDN?
See git blame, which was made a few days after the 1.1.1 release.
When providing a GeoJson that has dates from before and after 2001-09-09 the Timedimension breaks.
This issue was originally discovered and reported when using the Folium package: see python-visualization/folium#1268 for more background.
The issue may be related to the fact that during 2001-09-09 an extra digit was added in the unix timestamp.
User @davecao suggests the following fix:
In the function
sort_and_deduplicate
change the linearr = arr.slice(0).sort()
toarr = arr.slice(0).sort(function(a, b){return a-b;});
The text was updated successfully, but these errors were encountered: