Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 3.27 KB

README.md

File metadata and controls

73 lines (47 loc) · 3.27 KB

marine-litter-manager

logo

Marine Litter Manager (MLM) is a Python data formatting tool that can be used to generate:

  • EMODnet beach litter format
  • EMODnet seafloor trawlings litter format

This is done following the specifications of the official guidelines published by EMODnet Chemistry. It is available for Linux and Windows.

The software is available for download at the following links:

The user manual is available at the following link: https://doi.org/10.13120/21addf37-7e82-4a55-b040-3d3d87115ac0

The specific video tutorials are available at the following link: https://www.youtube.com/playlist?list=PL_M9BQEHNdJGeSprzOJBrDVssVpiQepzN

Available functions

  • Seafloor Litter formatting
  • Beach Litter formatting
  • The surveys plots (for both litter standards)
  • The params plots (for both litter standards)
  • Dictionary search engine
  • Links

How to build an executable

Windows

pip install pyinstaller
pip install -r requirements.txt

pyinstaller --noconfirm --onefile --windowed --icon "./resources/logo.ico" --add-data "./resources;." --hidden-import "PIL._tkinter_finder"  mlm.py

If you are using Anaconda you must exclude some modules with the --exclude-module option: --exclude-module scikit-learn,PyQt5,PyQt4,2to3,IPython,Jinja2,pycparser,scipy

Linux

pip install pyinstaller
pip install -r requirements.txt

pyinstaller --noconfirm --onefile --windowed --icon ./resources/logo.ico --add-data ./resources:. --hidden-import PIL._tkinter_finder  mlm.py

Screenshots

main

10

11

12

13

14

15

16

17

18

19

20

21

22