Browse Source

[DATALAD] Recorded changes

Daniel Busch 3 months ago
parent
commit
41a762bef9
2 changed files with 6 additions and 26 deletions
  1. 0 20
      dodo.py
  2. 6 6
      src/faostat_data_primap/helper/definitions.py

+ 0 - 20
dodo.py

@@ -4,26 +4,6 @@ Define tasks to download and read the FAO data set.
 import datalad.api
 
 
-def task_add_github_sibling():
-    """
-    Create github sibling after cloning from gin
-    """
-
-    def run_add_sibling():
-        datalad.api.create_sibling_github(
-            "primap-community/FAOSTAT_data_primap",
-            name="github",
-            existing="error",
-            access_protocol="ssh",
-            publish_depends="origin",
-            private=False,
-            dry_run=False,
-            api="https://api.github.com",
-        )
-
-    return {"actions": [run_add_sibling]}
-
-
 def task_download():
     """
     Download latest data

+ 6 - 6
src/faostat_data_primap/helper/definitions.py

@@ -427,12 +427,12 @@ config_to_if = {
 # Definition of the domains and releases to be read
 domains_and_releases_to_read = {
     "2024": [
-        # ("farm_gate_agriculture_energy", "2024-11-14"),
-        # ("farm_gate_emissions_crops", "2024-11-14"),
-        # ("farm_gate_livestock", "2024-11-14"),
-        # ("land_use_drained_organic_soils", "2024-11-14"),
-        # ("land_use_fires", "2024-11-14"),
-        # ("land_use_forests", "2024-11-14"),
+        ("farm_gate_agriculture_energy", "2024-11-14"),
+        ("farm_gate_emissions_crops", "2024-11-14"),
+        ("farm_gate_livestock", "2024-11-14"),
+        ("land_use_drained_organic_soils", "2024-11-14"),
+        ("land_use_fires", "2024-11-14"),
+        ("land_use_forests", "2024-11-14"),
         ("pre_post_agricultural_production", "2024-11-14"),
     ]
 }