Re: [OSGeoLive] #2330: opendatacube jupyter notebooks

2022-08-03 Thread OSGeoLive
#2330: opendatacube jupyter notebooks
---+
 Reporter:  darkblueb  |   Owner:  osgeolive@…
 Type:  enhancement|  Status:  new
 Priority:  major  |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive  |  Resolution:
 Keywords:  jupyter, opendatacube  |
---+
Comment (by darkblueb):

 **ol15** build 167s
 {{{
 user@osgeolive:~$ ./do_setup_datacube.sh
 CREATE EXTENSION
 CREATE EXTENSION
 2022-08-04 04:52:11,495 8363 datacube INFO Running datacube command:
 /usr/bin/datacube -v system init
 Initialising database...
 2022-08-04 04:52:11,991 8363 datacube.drivers.postgres._core INFO Ensuring
 user roles.
 2022-08-04 04:52:11,997 8363 datacube.drivers.postgres._core INFO Creating
 schema.
 2022-08-04 04:52:11,998 8363 datacube.drivers.postgres._core INFO Creating
 tables.
 2022-08-04 04:52:12,028 8363 datacube.drivers.postgres._core INFO Creating
 triggers.
 2022-08-04 04:52:12,032 8363 datacube.drivers.postgres._core INFO Creating
 added column.
 2022-08-04 04:52:12,033 8363 datacube.drivers.postgres._core INFO Adding
 role grants.
 2022-08-04 04:52:12,035 8363 datacube.index.postgres.index INFO Adding
 default metadata types.
 Created.
 Checking indexes/views.
 2022-08-04 04:52:12,217 8363 datacube.drivers.postgres._api INFO Checking
 dynamic views/indexes. (rebuild views=True, indexes=False)
 Done.
 Adding "clip_landsat" (this might take a while) DONE
 }}}

 {{{
 user@osgeolive:~$ cat do_setup_datacube.sh
 #!/bin/sh

 createdb datacube
 psql datacube -c 'create extension postgis'
 psql datacube -c 'create extension hstore'

 ##-
 mkdir ~/.config/datacube

 cat << EOF > ~/.config/datacube/landsat-clip.yml
 name: clip_landsat
 description: example ortho imagery
 metadata_type: eo3

 license: CC-BY-4.0

 metadata:
   product:
 name: clip_landsat

 storage:
   crs: EPSG:32619
   resolution:
 longitude: 28.497418829384827
 latitude: -28.503958771796388

 measurements:
   - name: imagery
 dtype: uint8
 nodata: -32768.0
 units: "meter"

 EOF

 #--
 cat << EOF >  ~/.config/datacube/datacube.conf
 [datacube]
 db_database: datacube

 # A blank host will use a local socket. Specify a hostname (such as
 localhost) to use TCP.
 db_hostname:

 # Credentials are optional: you might have other Postgres authentication
 configured.
 # The default username otherwise is the current user id.
 db_username: user
 db_password: user
 EOF

 ##-
 USER=user
 DCONF=/home/${USER}/.config/datacube
 export DATACUBE_CONFIG_PATH=${DCONF}/datacube.conf

 datacube -v system init

 datacube product add ${DCONF}/landsat-clip.yml

 }}}
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by darkblueb):

 https://github.com/OSGeo/OSGeoLive/pull/347
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by sanak):

 About patching location, I guess that patching {{{python3-mapproxy}}}
 itself may be better than patching it on OSGeoLive
 {{{bin/install_mapproxy.sh}}}.
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by sanak):

 Okay, thanks for the information.\\
 I also confirmed it.
 {{{
 user@osgeolive:~$ ldd /usr/lib/libmapnik.so.3.1.0 | grep proj
 libproj.so.22 => /lib/x86_64-linux-gnu/libproj.so.22
 (0x7f1252217000)
 }}}

 

 > but the mapproxy demo still fails. Perhaps a configuration issue?

 About this mapproxy demo failing, the error message was changed to
 {{{failed to initialize projection with: '+init=epsg:3857'}}}, and from
 googling a bit, the cause seems to be in mapproxy side.
 - https://github.com/mapproxy/mapproxy/issues/538
 - https://github.com/mapproxy/mapproxy/issues/136#issuecomment-42392618

 From above 2nd link, I patched {{{/usr/lib/python3/dist-
 packages/mapproxy/source/mapnik.py}}} as follows  locally, then I could
 show the mapnik layer correctly.
 {{{
 - m.srs = '+init=%s' % str(query.srs.srs_code.lower())
 + m.srs = str(query.srs.srs_code.lower())
 }}}
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by darkblueb):

 confirm build 167-staging
 {{{
 user@osgeolive:~$ ldd /usr/lib/libmapnik.so.3.1.0 | grep proj
 libproj.so.22 => /lib/x86_64-linux-gnu/libproj.so.22
 (0x7f7cf20b4000)
 }}}
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


[OSGeoLive] #2390: Image Viewer lacks icon theme files

2022-08-03 Thread OSGeoLive
#2390: Image Viewer lacks icon theme files
-+---
 Reporter:  darkblueb|  Owner:  osgeolive@…
 Type:  enhancement  | Status:  new
 Priority:  normal   |  Milestone:  OSGeoLive15.0
Component:  OSGeoLive|   Keywords:  desktop
-+---
 ol15 build 167s

 {{{
 user@osgeolive:~$ xdg-open output.png
 Icon theme "elementary" not found.
 Icon theme "breeze" not found.

 user@osgeolive:~$ which lximage-qt
 /usr/bin/lximage-qt

 }}}
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2383: actinia only available through docker

2022-08-03 Thread OSGeoLive
#2383: actinia only available through docker
---+
 Reporter:  kalxas |   Owner:  osgeolive@…
 Type:  defect |  Status:  new
 Priority:  critical   |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive  |  Resolution:
 Keywords: |
---+
Comment (by carmenTawalika):

 I updated the upstream issue.

 In short, workaround could be:


 {{{
 pip3 install "actinia-core @
 
https://github.com/mundialis/actinia_core/releases/download/4.2.0/actinia_core-4.2.0-py2.py3
 -none-any.whl"
 pip3 install "actinia-api @ https://github.com/mundialis/actinia-
 api/releases/download/3.2.0/actinia_api-3.2.0-py3-none-any.whl"
 pip3 install -r
 https://raw.githubusercontent.com/mundialis/actinia_core/main/requirements.txt
 python3 -m actinia_core.main
 }}}

 A running redis instance is needed at localhost.
 If error appears: `PermissionError: [Errno 13] Permission denied:
 '/etc/default/actinia'` the config path can be adjusted, the file doesn't
 need to exist, e.g. `export DEFAULT_CONFIG_PATH=~$HOME/actinia.cfg`
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] OSGeoLive Version 15 rc1 is planned for Tuesday 9. August - feature freeze on Friday 4. August

2022-08-03 Thread Luca Delucchi
Il mer 3 ago 2022, 19:31 Vicky Vergara  ha scritto:

> Hi,
>

Hi,

>
> Translations will continue until the final release at the end of september.
>

Sorry I didn't follow deeply the release timeline but from this sentence it
seems that OSGeoLive 15 will be released before after FOSS4G, did I
understand correctly?

>
Best regards
Luca
___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by kalxas):

 After installing the new packages on top of build163, the test code seems
 to work now (see screenshot) but the mapproxy demo still fails.
 Perhaps a configuration issue?
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2318: Update previously available projects page with projects that got retired after 10.5

2022-08-03 Thread OSGeoLive
#2318: Update previously available projects page with projects that got retired
after 10.5
---+--
 Reporter:  kalxas |   Owner:  osgeolive@…
 Type:  task   |  Status:  new
 Priority:  major  |   Milestone:  Unplanned
Component:  OSGeoLive  |  Resolution:
 Keywords: |
---+--
Comment (by cvvergara):

 Merged that PR
 Leaving open just in case something is not included this year.
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Changes (by kalxas):

 * Attachment "Screenshot_20220803_203821.png" added.

-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] OSGeoLive Version 15 rc1 is planned for Tuesday 9. August - feature freeze on Friday 4. August

2022-08-03 Thread Vicky Vergara
Hi,
English will be frozen.
I am downloading every day from transifex at the end of my day 01:00 GMT.
This weekend I will also do it, around 13:00 GMT and 01:00 GMT
Translations will continue until the final release at the end of september.

Let's suppose the following situation:
Changes in transifex on Sunday were not captured by the rc1.
They will still be visible at [1]
The day of the rc1 release at [2]  all contents of [1] will be copied to [3]

[1] https://osgeo.github.io/OSGeoLive-doc/en/
[2] https://sourceforge.net/projects/osgeo-live/files/
[3] https://live.osgeo.org/en/index.html

So, the translations might not be inside the iso/vmdk, as they were not
captured, but on the webpage everything on [1] will be on the webpage [3].

What you do want to make sure is that before the final release to have all
translation work advanced as much as possible.
Probably we will freeze translations (aka no more downloads from transifex)
3/4 days before the final release.

I hope it helps.

Regards
Vicky

-- 

Georepublic UG (haftungsbeschränkt)
Salzmannstraße 44,
81739 München, Germany

Vicky Vergara
Operations Research

eMail: vi...@georepublic.de
Web: https://georepublic.info

Tel: +49 (089) 4161 7698-1
Fax: +49 (089) 4161 7698-9

Commercial register: Amtsgericht München, HRB 181428
CEO: Daniel Kastl
___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by kalxas):

 python3-mapnik patched from proj6 upstream branch:

 https://launchpad.net/~gcpp-
 kalxas/+archive/ubuntu/osgeolive/+sourcepub/13844380/+listing-archive-
 extra
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by sanak):

 Replying to [comment:12 kalxas]:

 Great! \\
 Thanks for the update!
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2352: mapnik python demo ol15

2022-08-03 Thread OSGeoLive
#2352: mapnik python demo ol15
-+
 Reporter:  darkblueb|   Owner:  osgeolive@…
 Type:  defect   |  Status:  new
 Priority:  critical |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive|  Resolution:
 Keywords:  mapnik, jupyter  |
-+
Comment (by kalxas):

 Thanks all for the feedback.

 mapnik package now patched with the commit:

 
https://github.com/tomhughes/mapnik/commit/8944e81367d2b3b91a41e24116e1813c01491e5d

 https://launchpad.net/~gcpp-
 kalxas/+archive/ubuntu/osgeolive/+sourcepub/13844321/+listing-archive-
 extra
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2318: Update previously available projects page with projects that got retired after 10.5

2022-08-03 Thread OSGeoLive
#2318: Update previously available projects page with projects that got retired
after 10.5
---+--
 Reporter:  kalxas |   Owner:  osgeolive@…
 Type:  task   |  Status:  new
 Priority:  major  |   Milestone:  Unplanned
Component:  OSGeoLive  |  Resolution:
 Keywords: |
---+--
Comment (by kalxas):

 https://github.com/OSGeo/OSGeoLive-doc/pull/779
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2318: Update previously available projects page with projects that got retired after 10.5

2022-08-03 Thread OSGeoLive
#2318: Update previously available projects page with projects that got retired
after 10.5
---+--
 Reporter:  kalxas |   Owner:  osgeolive@…
 Type:  task   |  Status:  new
 Priority:  major  |   Milestone:  Unplanned
Component:  OSGeoLive  |  Resolution:
 Keywords: |
---+--
Comment (by kalxas):

 I found the following to be retired after 10.5:
 {{{
 OSSIM 11.0
 GeoMajas 13.0
 Mapslicer 13.0
 LibLAS 13.0
 }}}
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] OSGeoLive Version 15 rc1 is planned for Tuesday 9. August - feature freeze on Friday 4. August

2022-08-03 Thread Ko Nagase
Hi Astrid, OSGeoLive team,

Thanks for the detailed schedule information!

2022年8月3日(水) 5:55 Astrid Emde (OSGeo) :
>
> Hello and greetings from the OSGeoLive team,
>
> we are preparing an OSGeoLive Version 15 rc1 for FOSS4G 2022 which will
> be published on Tuesday 9. August 2022.
>
> The final release of version 15 is going to be published later in
> September 2022.
>
> Deadlines for Version 15 rc1:
> --
> 1. documentation freeze for the english version is on Friday 4. August
> 2022

This is a minor point, but I think it would be "Friday 5. August", not
"Friday 4. August". :)

> 2. translation progress: Your translations till 4. August will be on the
> rc1.
> Please support with the translations on Transifex
> https://www.transifex.com/osgeo/osgeolive/dashboard/

If possible, translation till "Saturday 6. August" or "Sunday 7.
August" is really helpful...

Best regards,

--
合同会社 Georepublic Japan
〒658-0081 兵庫県神戸市東灘区田中町1丁目7-22
長瀬 興
mail: nag...@georepublic.co.jp
___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] OSGeoLive 15.0 status: beta2

2022-08-03 Thread Angelos Tzotsos

Hi all,

This is the updated list of critical issues that are still open based on 
latest build testing:


1. Actinia packaging (https://trac.osgeo.org/osgeolive/ticket/2383)
2. Mapnik demo (https://trac.osgeo.org/osgeolive/ticket/2352)

Best,
Angelos

On 7/28/22 14:59, Angelos Tzotsos wrote:

Hi all,

Initial testing of beta2 iso is reported in the packages spreadsheet:
https://docs.google.com/spreadsheets/d/1Q5BaEgQtgw4O1bXyeWMlM8XtAOhUgcjZ7Y2O0FZc2H0/edit#gid=690914723 



Critical issues:
1. UEFI setup for iso (https://trac.osgeo.org/osgeolive/ticket/2361)
2. 52NorthSOS java issue (https://trac.osgeo.org/osgeolive/ticket/2366)
3. Re3gistry tomcat/java issue 
(https://trac.osgeo.org/osgeolive/ticket/2379)

4. pgadmin 4 (https://trac.osgeo.org/osgeolive/ticket/2355)
5. ZOO packaging (https://trac.osgeo.org/osgeolive/ticket/2382)
6. Actinia packaging (https://trac.osgeo.org/osgeolive/ticket/2383)
7. Leaflet demo (https://trac.osgeo.org/osgeolive/ticket/2384)
8. Mapnik demo (https://trac.osgeo.org/osgeolive/ticket/2352)
9. t-rex startup issue (https://trac.osgeo.org/osgeolive/ticket/2357)
10. rasdaman packaging (https://trac.osgeo.org/osgeolive/ticket/2385)

The iso size is on the limit, we have already moved UDig and 
52NorthSOS to VM only for this beta stage. Given Actinia is docker 
only it should also probably move to VM too.


I think we need to solve the above issues in order to consider a 
release candidate.


Best,
Angelos


On 7/28/22 14:42, Angelos Tzotsos wrote:

Hi all,

The second beta version of OSGeoLive 15.0 is available.
Please download [1], test and report any issues found [2]. Changelog 
available at [3].
For those who are working on the VM version, please continue testing 
and fixing bugs in beta1 VM.


Cheers,
Angelos

[1] 
http://download.osgeo.org/livedvd/releases/15.0/osgeolive-15.0beta2-amd64.iso

[2] https://trac.osgeo.org/osgeolive/report/10
[3] https://github.com/OSGeo/OSGeoLive/blob/master/CHANGES.txt#L4








--
Angelos Tzotsos, PhD
President
Open Source Geospatial Foundation
http://users.ntua.gr/tzotsos

___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2355: Install pgadmin or replacement

2022-08-03 Thread OSGeoLive
#2355: Install pgadmin or replacement
+
 Reporter:  kalxas  |   Owner:  osgeolive@…
 Type:  task|  Status:  new
 Priority:  major   |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive   |  Resolution:
 Keywords:  postgresql  |
+
Comment (by kalxas):

 
https://github.com/OSGeo/OSGeoLive/commit/2f9b1cac5fa2437409b9939d0699fd227753df9e
-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2383: actinia only available through docker

2022-08-03 Thread OSGeoLive
#2383: actinia only available through docker
---+
 Reporter:  kalxas |   Owner:  osgeolive@…
 Type:  defect |  Status:  new
 Priority:  critical   |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive  |  Resolution:
 Keywords: |
---+
Changes (by kalxas):

 * type:  task => defect

-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2385: rasdaman packaging for 22.04

2022-08-03 Thread OSGeoLive
#2385: rasdaman packaging for 22.04
---+
 Reporter:  kalxas |   Owner:  osgeolive@…
 Type:  task   |  Status:  closed
 Priority:  critical   |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive  |  Resolution:  fixed
 Keywords: |
---+
Changes (by kalxas):

 * status:  new => closed
 * resolution:   => fixed

-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2330: opendatacube jupyter notebooks

2022-08-03 Thread OSGeoLive
#2330: opendatacube jupyter notebooks
---+
 Reporter:  darkblueb  |   Owner:  osgeolive@…
 Type:  enhancement|  Status:  new
 Priority:  major  |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive  |  Resolution:
 Keywords:  jupyter, opendatacube  |
---+
Changes (by kalxas):

 * cc: osgeolive@… (added)
 * priority:  normal => major

-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive


Re: [OSGeoLive] #2355: Install pgadmin or replacement

2022-08-03 Thread OSGeoLive
#2355: Install pgadmin or replacement
+
 Reporter:  kalxas  |   Owner:  osgeolive@…
 Type:  task|  Status:  new
 Priority:  major   |   Milestone:  OSGeoLive15.0
Component:  OSGeoLive   |  Resolution:
 Keywords:  postgresql  |
+
Changes (by kalxas):

 * priority:  critical => major

-- 
Ticket URL: 
OSGeoLive 
self-contained bootable DVD, USB thumb drive or Virtual Machine based on 
Lubuntu, that allows you to try a wide variety of open source geospatial 
software without installing anything.___
osgeolive mailing list
osgeolive@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/osgeolive