diff --git a/README.rst b/README.rst index d2b0846..e03c169 100644 --- a/README.rst +++ b/README.rst @@ -83,5 +83,9 @@ License .. admonition:: - Copyright (C) 2020 INPE. + Copyright (C) 2022 INPE. + 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, either version 3 of the License, or + (at your option) any later version. \ No newline at end of file diff --git a/bdc_collectors/scripts/load_creodias_provider.sql b/bdc_collectors/scripts/load_creodias_provider.sql deleted file mode 100644 index 4cc032f..0000000 --- a/bdc_collectors/scripts/load_creodias_provider.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO bdc.providers (name, description, uri, credentials) - VALUES ('CREODIAS', 'CREODIAS is a seamless environment that brings processing to Earth Observation data (EODATA - EO DATA Free Archive) . Our platform contains online most of Copernicus Sentinel satellites data and Services, Envisat and ESA/Landsat data and other EODATA. Its design allows Third Party Users to prototype and build their own value-added services and products.', - 'https://creodias.eu/what-is-creodias', - '{"username": "user@email.com", "password": "password"}') - ON CONFLICT DO NOTHING; \ No newline at end of file diff --git a/bdc_collectors/scripts/load_google_provider.sql b/bdc_collectors/scripts/load_google_provider.sql deleted file mode 100644 index a6ec690..0000000 --- a/bdc_collectors/scripts/load_google_provider.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO bdc.providers (name, description, uri, credentials) - VALUES ('Google', 'Google Cloud Storage of Public data sets - Landsat and Sentinel', - 'https://cloud.google.com/storage/docs/public-datasets', - '{"GOOGLE_APPLICATION_CREDENTIALS": ""}') - ON CONFLICT DO NOTHING; \ No newline at end of file diff --git a/bdc_collectors/scripts/load_onda_provider.sql b/bdc_collectors/scripts/load_onda_provider.sql deleted file mode 100644 index b00800a..0000000 --- a/bdc_collectors/scripts/load_onda_provider.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO bdc.providers (name, description, uri, credentials) - VALUES ('ONDA', 'ONDA DIAS provides free and open access to geospatial data and information, including full availability of Copernicus data.', - 'https://catalogue.onda-dias.eu/catalogue/', - '{"username": "user@email.com", "password": "password"}') - ON CONFLICT DO NOTHING; \ No newline at end of file diff --git a/bdc_collectors/scripts/load_scihub_provider.sql b/bdc_collectors/scripts/load_scihub_provider.sql deleted file mode 100644 index cba05f8..0000000 --- a/bdc_collectors/scripts/load_scihub_provider.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO bdc.providers (name, description, uri, credentials) - VALUES ('SciHub', '', - 'https://scihub.copernicus.eu/dhus', - '{"username": "user@email.com", "password": "password"}') - ON CONFLICT DO NOTHING; \ No newline at end of file diff --git a/bdc_collectors/scripts/load_usgs_provider.sql b/bdc_collectors/scripts/load_usgs_provider.sql deleted file mode 100644 index 6f88704..0000000 --- a/bdc_collectors/scripts/load_usgs_provider.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO bdc.providers (name, description, uri, credentials) - VALUES ('USGS', 'The USGS Earth Explorer data portal is your one stop shop for obtaining geo-spatial datasets from our extensive collections', - 'https://earthexplorer.usgs.gov/', - '{"username": "user@email.com", "password": "password"}') - ON CONFLICT DO NOTHING; \ No newline at end of file diff --git a/setup.py b/setup.py index f7ddb88..c7b268b 100644 --- a/setup.py +++ b/setup.py @@ -105,9 +105,6 @@ 'scihub = bdc_collectors.scihub', 'dgi = bdc_collectors.dgi', 'modis = bdc_collectors.modis', - ], - 'bdc_db.scripts': [ - 'bdc_collectors = bdc_collectors.scripts' ] }, extras_require=extras_require,