Skip to content

Commit

Permalink
Initial commit release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bapt Abl committed Nov 3, 2021
0 parents commit 29b812f
Show file tree
Hide file tree
Showing 19 changed files with 1,751 additions and 0 deletions.
621 changes: 621 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions Opendatasoft/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -----------------------------------------------------------
# Copyright (C) 2021 Venceslas Roullier/Opendatasoft
# -----------------------------------------------------------
# Licensed under the terms of GNU GPL 3
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3 of the License.
# ---------------------------------------------------------------------

from . import qgis_ods_plugin


# noinspection PyPep8Naming
def classFactory(iface):
return qgis_ods_plugin.QgisOdsPlugin(iface)
48 changes: 48 additions & 0 deletions Opendatasoft/cancel_import.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>194</width>
<height>123</height>
</rect>
</property>
<property name="windowTitle">
<string>ODS</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="importLabel">
<property name="text">
<string>Processing import...</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="wordWrap">
<bool>false</bool>
</property>
</widget>
</item>
<item alignment="Qt::AlignHCenter">
<widget class="QLabel" name="chunkLabel">
<property name="text">
<string>Loading chunk n°0</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="cancelButton">
<property name="text">
<string>Cancel import</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
Binary file added Opendatasoft/documentation/Photo1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/documentation/Photo9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Opendatasoft/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions Opendatasoft/metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[general]
name=Opendatasoft
description=Download datasets from Opendatasoft-powered data catalogs
about=This plugin allows one to directly import, in the GeoJSON format, any dataset from a private or public Opendatasoft portal. It uses the web Explore API v2 to fetch the data, thus you'll find this plugin in the web menu.
version=1.0.0
qgisMinimumVersion=3.0
author=Venceslas Roullier (Opendatasoft)
[email protected]
repository=https://github.com/opendatasoft/qgis-ods-plugin
tracker=https://github.com/opendatasoft/qgis-ods-plugin/issues
icon=icon.png

changelog=1.0.0
- Initial release: working plugin for listing datasets of an Opendatasoft catalog and fetching a specific one locally

tags=Opendatasoft,ods,open data,datasets
Loading

0 comments on commit 29b812f

Please sign in to comment.