Skip to main content

Geovio client cli tool

Project description

GeoVisio

GeoVisio is a complete solution for storing and serving your own 📍📷 geolocated pictures (like StreetView / Mapillary).

➡️ Give it a try at panoramax.ign.fr or geovisio.fr !

📦 Components

GeoVisio is modular and made of several components, each of them standardized and ♻️ replaceable.

GeoVisio architecture

All of them are 📖 open-source and available online:

🌐 Server 💻 Client
API Website
Blur API Web viewer
GeoPic Tag Reader Command line

⌨️ GeoVisio Command-line scripts

This repository only contains command-line interface (CLI).

Features

This tool allows you to:

  • Upload a sequence of pictures on a GeoVisio API

It is under development, new features will appear in a near future 😉

Install

GeoVisio CLI can be installed using two methods:

Geovisio CLI is compatible with all Python versions >= 3.8.

From PyPI

Just launch this command:

pip install geovisio_cli

After this you should be able to use the CLI tool with the name geovisio:

geovisio --help

Alternatively, you can use pipx if you want all the script dependencies to be in a custom virtual env.

You need to install pipx, then:

pipx install geovisio_cli

From packaged binaries

Packaged binaries are available for windows and linux on AMD64 architecture. The binaries include python and all needed dependencies, so they should be self sufficient.

They are available in the latest release.

Windows

On windows, just download the windows executable, open a shell in the download directory (you can do that by typing cmd in the explorer opened in the directory).

Then you can just do:

geovisio_cli-win-amd64.exe --help

Linux

Prebuild binary have been built for AMD64. They are build using ubuntu 22.04, so they should work for all newer version. For older version though, there might be libstdc++ incompatibilities, if you encounter the problem, you can update libstdc++ or directly use Pypi.

Download the binary, then in the download directory:

chmod u+x geovisio_cli-linux-amd64
./geovisio_cli-linux-amd64 --help

Optional, you can put this in /usr/local/bin (if it's in your path):

chmod u+x geovisio_cli-linux-amd64
mv geovisio_cli-linux-amd64 /usr/local/bin/geovisio_cli

geovisio_cli --help

Note: on linux, it might be easier to use directly pypi package, combined with pipx updates will be easier and there should be less problems with libraries version.

From Git repository

Download the repository:

git clone https://gitlab.com/geovisio/cli.git geovisio_cli
cd geovisio_cli/

To avoid conflicts, it's considered a good practice to create a virtual environment (or virtualenv). To do so, launch the following commands:

# Create the virtual environment in a folder named "env"
python3 -m venv env

# Launches utilities to make environment available in your Bash
source ./env/bin/activate

Then, install the GeoVisio CLI dependencies using pip:

pip install -e .

You can also install the dev dependencies if necessary (to have lints, format, tests, ...):

pip install -e .[dev]

Then, you can use the geovisio command:

geovisio --help

Usage

All details of available commands are listed in USAGE.md documentation.

Upload pictures

The picture upload command is available under the upload subcommand:

geovisio upload --help

If you want to upload pictures from a my_sequence directory to a GeoVisio instance (running locally in this example), launch this command:

geovisio upload --api-url http://localhost:5000/ ./my_sequence

You can also add a --wait flag to wait for geovisio to process all the pictures.

Note that you can launch again the same command to recover a partial sequence import, for example if only some pictures failed to upload.

Authentication

If the GeoVisio API requires a login for the upload, the upload command will ask for a login on the instance by visiting a given url with a browser.

You can also login before hand with the command:

geovisio login --api-url http://localhost:5000/

Both will store the credentials in a configuration file, located either in a XDG defined directory or in a user specific .config, in a subdirectory geovisio/config.toml.

If you do not want to use this, you can also provide a geovisio token with the --token parameter.

External metadata

Picture metadata can also be set using a CSV file. This file should be placed in the same directory as pictures, and can be named as you like, as long as it ends with .csv. You can name it _geovisio.csv for example.

The CSV file should contain all following columns:

Header Type Mandatory ? Description
file str Yes File name of the picture
lon float No WGS84 longitude (for example 55.56 for Réunion Island)
lat float No WGS84 latitude (for example -21.14 for Réunion Island)
capture_time str No Capture time of the picture, in RFC 3339 (like 1985-04-12T23:20:50.52Z). If no timezone is given, considered as local time (and thus the date + position would be used to localize it).
Exif.* str No Any EXIF tag, with column name following Exiv2 scheme (example Exif.Image.Artist). You can create as many columns as necessary.
Xmp.* str No Any XMP tag, with column name following Exiv2 scheme (example Xmp.digiKam.TagsList). You can create as many columns as necessary.

All metadatas defined in the CSV are optional. If a metadata is not defined in CSV for a given image, GeoVisio CLI will try to read it from picture EXIF metadata.

Note that GeoVisio API will always need some metadata to be present (the GPS coordinates and the capture time), no matter where they are read from.

Collection status

Prints the status of a collection.

geovisio collection-status --id <some collection id> --api-url http://localhost:5000

You can alternatively give the location of the sequence (its full url) like:

geovisio collection-status --location http://localhost:5000/api/collections/dae288b2-9e8d-4896-af39-d35ce6bc9d4e

You can also add a --wait flag to wait for geovisio to process all the pictures.

Development

Tests

Tests are run using PyTest. By default, our tests use a Docker Compose environment (located in ./tests/integration/docker-compose-geovisio.yml) to set-up a temporary GeoVisio API to run onto. If you have Docker Compose enabled and running on your machine, you can simply run this command to launch tests:

pytest

If you don't have Docker Compose, or want to use an existing GeoVisio test instance (to speed up tests), you can pass the --external-geovisio-url option to pytest:

pytest --external-geovisio-url=http://localhost:5000

Using with an unsecure geovisio API

The CLI parameter --disable-cert-check is available to use with an unsecure geovisio API (or when behind proxies messing with ssl).

There are no automated test for this, but you can run a geovisio with flask run --cert=adhoc to manually test this.

Documentation

High-level documentation is handled by Typer. You can update the generated USAGE.md file using this command:

make docs

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Note that before opening a pull requests, you may want to check formatting and tests of your changes:

make ci

You can also install git pre-commit hooks to format code on commit with:

pip install -e .[dev]
pre-commit install

Make a release

git checkout main
git pull

make docs ci
vim CHANGELOG.md							# Edit version + links at bottom
vim geovisio_cli/__init__.py	# Edit version

git add *
git commit -m "Release x.x.x"
git tag -a x.x.x -m "Release x.x.x"
git push origin main --tags

🤗 Special thanks

Sponsors

GeoVisio was made possible thanks to a group of ✨ amazing people ✨ :

  • GéoVélo team, for 💶 funding initial development and for 🔍 testing/improving software
  • Carto Cité team (in particular Antoine Riche), for 💶 funding improvements on viewer (map browser, flat pictures support)
  • La Fabrique des Géocommuns (IGN) for offering long-term support and funding the Panoramax initiative and core team (Camille Salou, Mathilde Ferrey, Christian Quest, Antoine Desbordes, Jean Andreani, Adrien Pavie)
  • Many many wonderful people who worked on various parts of GeoVisio or core dependencies we use : 🧙 Stéphane Péneau, 🎚 Albin Calais & Cyrille Giquello, 📷 Damien Sorel, Pascal Rhod, Nick Whitelegg...
  • Adrien Pavie, for ⚙️ initial development of GeoVisio
  • And you all ✨ GeoVisio users for making this project useful !

⚖️ License

Copyright (c) GeoVisio team 2022-2023, released under MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geovisio_cli-0.3.12.tar.gz (3.0 MB view hashes)

Uploaded Source

Built Distribution

geovisio_cli-0.3.12-py3-none-any.whl (29.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page