Custom Query (1154 matches)
Results (25 - 27 of 1154)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2428 | fixed | xarray io for netCDF | ||
Description |
some sample code shows xarray optional dependencies are described here: https://docs.xarray.dev/en/stable/getting-started-guide/installing.html |
|||
#1149 | fixed | WSGI Apps preferred conf | ||
Description |
Python WSGI apps have to share resources on the Live. This ticket is just a reminder for best practices while things are tuned. At the time of writing, EOxServer has the following settings, which appear to be appropriate for the Live: processes=5 threads=1 |
|||
#1210 | fixed | wrong version of leaflet is installed | ||
Description |
On the current build of the live dvd an old version of leaflet is accidently installed (0.2 instead of 0.6.2). This renders the quickstart and demo useless. The fix is fairly easy, and won't affect other programs on the live dvd. It can be tested on the current live dvd by running apt-get install libjs-leaflet I therefore propose to add this fix even though we are already at a RC level. Full fix below: --- install_leaflet.sh (revision 10783) +++ install_leaflet.sh (working copy) @@ -20,6 +20,7 @@ #### add-apt-repository --yes ppa:johanvdw/leafletjs +apt-get -q update apt-get --assume-yes install libjs-leaflet |