JanCaha / loadthemall

QGIS plugin that recursively loads vector and raster layers stored in a directory structure, based on several filters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Load Them All

QGIS plugin that recursively loads vector and raster layers stored in a directory structure, based on several filters.

Load Them All 3

Load Them All

Load Them All

Available filters are:

  • Alphanumeric:

    Enter a filter text and choose among the modes Start with, Any position, or Ends with to find files by name. You can use the logical operators || (or) and && (and), and even combine them. && has more priority, so the expression a || b && c becomes (a || b) && c.

    Additionally, you can invert the Alphanumeric filter, i.e., prepend a logic NOT to it, allowing you to invert the original filter result.

  • Bounding box:

    Enter coordinates by hand or get the current map extent. Choose the spatial filter: Contains or Intersects.

  • Date modified:

    Filter files by their latest modification date, using comparisons like before, after and exact date.

  • Geometry type:

    Choose which geometry type you want to load: Point, Line, or Polygon. Uncheck all geometry types for loading only geometryless layers (i.e., alphanumeric tables).

  • Raster type:

    Choose which raster type you want to load: Gray or undefined, Palette, Multiband, or Color Layer.

There are several options for you to configure how layers should be loaded to QGIS:

  • Groups: Whether or not to create groups based on directories' names. When groups are created, they reflect the directory structure, i.e., groups are nested if necessary.

  • Turn off layers: Make loaded layers invisible (it improves performance).

  • Do not load empty layers.

  • Sort (or reverse sort) loaded layers by name.

  • Ignore case in the alphanumeric filter: Make the alphanumeric filter case insensitive.

  • Ignore accents in the alphanumeric filter: You need the unidecode module for this option to work (you probably need to install it because it doesn't come with the standard Python installation). If enabled, an alphanumeric filter like 'arbol' will also match 'árbol'.

  • Sublayers: The following two options can work independently from each other.

    • Include parent in search: Make alphanumeric filters work with the parent name prepended. If enabled, an alphanumeric filter like 'Starts with: rivers' won't match the sublayer rivers, because the parent layer name is taken into account (e.g., 'parent_layer_name rivers').
    • Include parent in loaded sublayers: Prepend the parent layer name in all its sublayers.
  • Apply group style to layers: Whether or not to load QML style (group_name.qml) for all layers inside a group. The QML file must have the same name as the parent folder and must be found in the layer folder.

The plugin supports the following file extensions:

  • Vectors

    • GeoPackage (*.gpkg)", [".gpkg"]
    • ESRI Shapefile (*.shp)", [".shp"]
    • Mapinfo File (*.mif, *.tab)", [".mif", ".tab"]
    • Microstation DGN (*.dgn)", [".dgn"]
    • VRT - Virtual Datasource (*.vrt)
    • Comma Separated Value (*.csv)
    • Geography Markup Language (*.gml)
    • GPX (*.gpx)
    • KML - Keyhole Markup Language (*.kml, *kmz)
    • GeoJSON (*.geojson)
    • GMT (*.gmt)
    • SQLite (*.sqlite)
    • Arc/Info ASCII Coverage (*.e00)
    • AutoCAD DXF (*.dxf)
    • JSON (*.json)
  • Rasters

    • Virtual Raster (*.vrt)
    • GeoTIFF (*.tif, *.tiff)
    • Erdas Imagine Images (*.img)
    • Erdas Compressed Wavelets (*.ecw)
    • ERMapper .ers Labelled (*.ers)
    • DTED Elevation Raster (*.dt)
    • Arc/Info ASCII Grid (*.asc)
    • Portable Network Graphics (*.png)
    • JPEG JFIF (*.jpg, *.jpeg)
    • JPEG2000 (*.jp2)
    • Graphics Interchange Format (*.gif)
    • X11 PixMap Format (*.xpm)
    • Bitmap image file (*.bmp)
    • PCIDSK Database File (*.pix)
    • PCRaster Raster File (*.map)
    • ILWIS Raster Map (*.mpr, *.mpl)
    • SRTMHGT File Format (*.hgt)
    • GMT NetCDF Grid Format (*.nc)
    • GRIdded Binary (*.grb)
    • Idrisi Raster A.1 (*.rst)
    • Golden Software ASCII Grid (*.grd)
    • R Object Data Store (*.rda)
    • Vexcel MFF Raster (*.hdr)
    • USGS Optional ASCII DEM (*.dem)
    • Magellan topo (*.blx)
    • Rasterlite (*.sqlite)
    • SAGA GIS Binary Grid (*.sdat)
    • Multi-resolution Seamless Image Database (*.sid)

Where to find Load Them All after installation

  • Data source manager toolbar:

    image

  • Layer -> Add layer menu:

    image

  • Plugins menu:

    image

LICENSE: GPL v2.0

Code contributors:

  • David Bakeman (v2.1 and v2.4)
  • Sören Gebbert (v2.3)
  • Jean Hemmi (v3.1 and French translation)
  • Guillaume Lostis (v3.3)

More info about LoadThemAll at http://geotux.tuxfamily.org/index.php/en/geo-blogs/item/264-plugin-load-them-all-para-quantum-gis

See the changelog at https://github.com/gacarrillor/loadthemall/blob/master/changelog.txt

About

QGIS plugin that recursively loads vector and raster layers stored in a directory structure, based on several filters

License:GNU General Public License v2.0


Languages

Language:Python 98.4%Language:Makefile 1.1%Language:QMake 0.4%