-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bapt Abl
committed
Nov 3, 2021
0 parents
commit 29b812f
Showing
19 changed files
with
1,751 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.