From 9c71005fe8095b67fa2d2aa14d9842097eeb644b Mon Sep 17 00:00:00 2001 From: Mali Akmanalp Date: Wed, 28 Jun 2017 09:48:00 -0400 Subject: [PATCH] Distinguish between census / noncensus agricultural products and add noncensus products. --- product/Datlas/Rural/Tupfile | 4 +- product/Datlas/Rural/clean_agproducts.py | 8 +- .../Datlas/Rural/clean_agproducts_census.py | 35 +++ product/Datlas/Rural/download_sheets.py | 7 +- .../Rural/in/AgProducts_Census_Hierarchy.tsv | 29 +++ .../Rural/in/AgProducts_Census_Names.tsv | 35 +++ .../Datlas/Rural/in/AgProducts_Hierarchy.tsv | 166 ++++++++++--- product/Datlas/Rural/in/AgProducts_Names.tsv | 228 +++++++++++++++--- .../Rural/out/agricultural_products.csv | 228 +++++++++++++++--- .../Rural/out/agricultural_products.dta | Bin 7292 -> 43828 bytes .../out/agricultural_products_census.csv | 35 +++ .../out/agricultural_products_census.dta | Bin 0 -> 7292 bytes 12 files changed, 673 insertions(+), 102 deletions(-) create mode 100644 product/Datlas/Rural/clean_agproducts_census.py create mode 100644 product/Datlas/Rural/in/AgProducts_Census_Hierarchy.tsv create mode 100644 product/Datlas/Rural/in/AgProducts_Census_Names.tsv create mode 100644 product/Datlas/Rural/out/agricultural_products_census.csv create mode 100644 product/Datlas/Rural/out/agricultural_products_census.dta diff --git a/product/Datlas/Rural/Tupfile b/product/Datlas/Rural/Tupfile index 5ccbb5e..e0eab18 100644 --- a/product/Datlas/Rural/Tupfile +++ b/product/Datlas/Rural/Tupfile @@ -2,9 +2,11 @@ PYTHON_PREFIX = PYTHONPATH=../../../ python -B LIVESTOCK = in/Livestock_Hierarchy.tsv in/Livestock_Names.tsv AGPRODUCTS = in/AgProducts_Hierarchy.tsv in/AgProducts_Names.tsv +AGPRODUCTS_CENSUS = in/AgProducts_Census_Hierarchy.tsv in/AgProducts_Census_Names.tsv FARMTYPE = in/FarmType_Hierarchy.tsv in/FarmType_Names.tsv -: |> $(PYTHON_PREFIX) download_sheets.py |> $(LIVESTOCK) $(AGPRODUCTS) $(FARMTYPE) +: |> $(PYTHON_PREFIX) download_sheets.py |> $(LIVESTOCK) $(AGPRODUCTS) $(AGPRODUCTS_CENSUS) $(FARMTYPE) : $(LIVESTOCK) |> $(PYTHON_PREFIX) clean_livestock.py |> out/livestock.csv out/livestock.dta +: $(AGPRODUCTS_CENSUS) |> $(PYTHON_PREFIX) clean_agproducts_census.py |> out/agricultural_products_census.csv out/agricultural_products_census.dta : $(AGPRODUCTS) |> $(PYTHON_PREFIX) clean_agproducts.py |> out/agricultural_products.csv out/agricultural_products.dta : $(FARMTYPE) |> $(PYTHON_PREFIX) clean_farmtype.py |> out/farm_type.csv out/farm_type.dta diff --git a/product/Datlas/Rural/clean_agproducts.py b/product/Datlas/Rural/clean_agproducts.py index 588aaf6..4a57ed1 100644 --- a/product/Datlas/Rural/clean_agproducts.py +++ b/product/Datlas/Rural/clean_agproducts.py @@ -9,15 +9,16 @@ dtype={"code": str}) hierarchy = pd.read_table("./in/AgProducts_Hierarchy.tsv", encoding="utf-8") - hierarchy.columns = ["level2_code", "level1_code", "level0_code"] + hierarchy.columns = ["level3_code", "level2_code", "level1_code", "level0_code"] fields = { "level0": [], "level1": [], - "level2": [] + "level2": [], + "level3": [] } - h = Hierarchy(["level0", "level1", "level2"]) + h = Hierarchy(["level0", "level1", "level2", "level3"]) parent_code_table = repeated_table_to_parent_id_table(hierarchy, h, fields) parent_code_table.code = parent_code_table.code.astype(str) @@ -30,6 +31,7 @@ "name_es", "parent_id"]] c = Classification(parent_id_table, h) + c.table.code = c.table.code.str.lower() c.to_csv("out/agricultural_products.csv") c.to_stata("out/agricultural_products.dta") diff --git a/product/Datlas/Rural/clean_agproducts_census.py b/product/Datlas/Rural/clean_agproducts_census.py new file mode 100644 index 0000000..68f6d1d --- /dev/null +++ b/product/Datlas/Rural/clean_agproducts_census.py @@ -0,0 +1,35 @@ +import pandas as pd + +from classification import (Hierarchy, repeated_table_to_parent_id_table, + parent_code_table_to_parent_id_table, + Classification) + +if __name__ == "__main__": + names = pd.read_table("./in/AgProducts_Census_Names.tsv", encoding="utf-8", + dtype={"code": str}) + + hierarchy = pd.read_table("./in/AgProducts_Census_Hierarchy.tsv", encoding="utf-8") + hierarchy.columns = ["level2_code", "level1_code", "level0_code"] + + fields = { + "level0": [], + "level1": [], + "level2": [] + } + + h = Hierarchy(["level0", "level1", "level2"]) + parent_code_table = repeated_table_to_parent_id_table(hierarchy, h, fields) + parent_code_table.code = parent_code_table.code.astype(str) + + parent_code_table = parent_code_table.merge(names, on=["code", "level"]) + + parent_id_table = parent_code_table_to_parent_id_table(parent_code_table, h) + parent_id_table["name"] = parent_id_table.name_en + + parent_id_table = parent_id_table[["code", "name", "level", "name_en", + "name_es", "parent_id"]] + + c = Classification(parent_id_table, h) + + c.to_csv("out/agricultural_products_census.csv") + c.to_stata("out/agricultural_products_census.dta") diff --git a/product/Datlas/Rural/download_sheets.py b/product/Datlas/Rural/download_sheets.py index f4d477f..fc220cb 100644 --- a/product/Datlas/Rural/download_sheets.py +++ b/product/Datlas/Rural/download_sheets.py @@ -5,8 +5,13 @@ hierarchy.to_csv("./in/Livestock_Hierarchy.tsv", sep="\t", index=False, encoding="utf-8") names.to_csv("./in/Livestock_Names.tsv", sep="\t", index=False, encoding="utf-8") -# Agricultural Products +# Agricultural Products (Census) hierarchy, names = get_classification_from_gdrive("https://docs.google.com/spreadsheets/d/1UV80vfHq0Gopy7Gpxb9SyQ41PfCN3wZthy-Cp5pSf_E/edit#gid=0") +hierarchy.to_csv("./in/AgProducts_Census_Hierarchy.tsv", sep="\t", index=False, encoding="utf-8") +names.to_csv("./in/AgProducts_Census_Names.tsv", sep="\t", index=False, encoding="utf-8") + +# Agricultural Products (Non-Census) +hierarchy, names = get_classification_from_gdrive("https://docs.google.com/spreadsheets/d/1yye7lVVVEsfmbeVTMY41tymH9mIU84CiUXOwi1wx-lI/edit#gid=743162393") hierarchy.to_csv("./in/AgProducts_Hierarchy.tsv", sep="\t", index=False, encoding="utf-8") names.to_csv("./in/AgProducts_Names.tsv", sep="\t", index=False, encoding="utf-8") diff --git a/product/Datlas/Rural/in/AgProducts_Census_Hierarchy.tsv b/product/Datlas/Rural/in/AgProducts_Census_Hierarchy.tsv new file mode 100644 index 0000000..d24ea1b --- /dev/null +++ b/product/Datlas/Rural/in/AgProducts_Census_Hierarchy.tsv @@ -0,0 +1,29 @@ +level2 level1 level0 +cocoa agroind_total total +coffee agroind_total total +cotton agroind_total total +other agroind agroind_total total +palm agroind_total total +panela cane agroind_total total +rubber agroind_total total +sugar cane agroind_total total +tobacco agroind_total total +other cereals cereals_total total +rice cereals_total total +white corn cereals_total total +yellow corn cereals_total total +avocado fruits_total total +banana expo fruits_total total +banana other fruits_total total +citrics fruits_total total +other fruits fruits_total total +papaya fruits_total total +pinneaple fruits_total total +flowers & foliage greens_total total +forest plants greens_total total +herbs greens_total total +vegetables greens_total total +other tubers pltubers_total total +plantain pltubers_total total +potatoes pltubers_total total +yucca pltubers_total total diff --git a/product/Datlas/Rural/in/AgProducts_Census_Names.tsv b/product/Datlas/Rural/in/AgProducts_Census_Names.tsv new file mode 100644 index 0000000..1cf0e94 --- /dev/null +++ b/product/Datlas/Rural/in/AgProducts_Census_Names.tsv @@ -0,0 +1,35 @@ +code level name_en name_short_en name_es name_short_es +total level0 Total Total Total Total +cereals_total level1 Cereals Cereals Cereals Cereals +pltubers_total level1 Tubers Tubers Tubers Tubers +agroind_total level1 Total Agroindustries Total Agroindustries Total Agroindustries Total Agroindustries +greens_total level1 Greens Greens Greens Greens +fruits_total level1 Fruits Fruits Fruits Fruits +palm level2 Palm Palm Palm Palm +avocado level2 Avocado Avocado Avocado Avocado +papaya level2 Papaya Papaya Papaya Papaya +other fruits level2 Other Fruits Other Fruits Other Fruits Other Fruits +banana expo level2 Banana Expo Banana Expo Banana Expo Banana Expo +coffee level2 Coffee Coffee Coffee Coffee +white corn level2 White Corn White Corn White Corn White Corn +rice level2 Rice Rice Rice Rice +yellow corn level2 Yellow Corn Yellow Corn Yellow Corn Yellow Corn +other tubers level2 Other Tubers Other Tubers Other Tubers Other Tubers +plantain level2 Plantain Plantain Plantain Plantain +cotton level2 Cotton Cotton Cotton Cotton +cocoa level2 Cocoa Cocoa Cocoa Cocoa +other agroind level2 Other Agroindustries Other Agroindustries Other Agroindustries Other Agroindustries +vegetables level2 Vegetables Vegetables Vegetables Vegetables +forest plants level2 Forest Plants Forest Plants Forest Plants Forest Plants +pinneaple level2 Pinneaple Pinneaple Pinneaple Pinneaple +flowers & foliage level2 Flowers & Foliage Flowers & Foliage Flowers & Foliage Flowers & Foliage +rubber level2 Rubber Rubber Rubber Rubber +yucca level2 Yucca Yucca Yucca Yucca +citrics level2 Citrics Citrics Citrics Citrics +panela cane level2 Panela Cane Panela Cane Panela Cane Panela Cane +potatoes level2 Potatoes Potatoes Potatoes Potatoes +tobacco level2 Tobacco Tobacco Tobacco Tobacco +banana other level2 Other Banana Other Banana Other Banana Other Banana +other cereals level2 Other Cereals Other Cereals Other Cereals Other Cereals +sugar cane level2 Sugar Cane Sugar Cane Sugar Cane Sugar Cane +herbs level2 Herbs Herbs Herbs Herbs diff --git a/product/Datlas/Rural/in/AgProducts_Hierarchy.tsv b/product/Datlas/Rural/in/AgProducts_Hierarchy.tsv index d24ea1b..74753ba 100644 --- a/product/Datlas/Rural/in/AgProducts_Hierarchy.tsv +++ b/product/Datlas/Rural/in/AgProducts_Hierarchy.tsv @@ -1,29 +1,137 @@ -level2 level1 level0 -cocoa agroind_total total -coffee agroind_total total -cotton agroind_total total -other agroind agroind_total total -palm agroind_total total -panela cane agroind_total total -rubber agroind_total total -sugar cane agroind_total total -tobacco agroind_total total -other cereals cereals_total total -rice cereals_total total -white corn cereals_total total -yellow corn cereals_total total -avocado fruits_total total -banana expo fruits_total total -banana other fruits_total total -citrics fruits_total total -other fruits fruits_total total -papaya fruits_total total -pinneaple fruits_total total -flowers & foliage greens_total total -forest plants greens_total total -herbs greens_total total -vegetables greens_total total -other tubers pltubers_total total -plantain pltubers_total total -potatoes pltubers_total total -yucca pltubers_total total +level3 level2 level1 level0 +ARROZ RIEGO ARROZ CEREALES Todos los Productos +ARROZ SECANO MANUAL ARROZ CEREALES Todos los Productos +ARROZ SECANO MECANIZADO ARROZ CEREALES Todos los Productos +AVENA AVENA CEREALES Todos los Productos +CEBADA CEBADA CEREALES Todos los Productos +CENTENO CENTENO CEREALES Todos los Productos +MAIZ TECNIFICADO MAIZ CEREALES Todos los Productos +MAIZ TRADICIONAL MAIZ CEREALES Todos los Productos +MAIZ FORRAJERO MAIZ FORRAJERO CEREALES Todos los Productos +QUINUA QUINUA CEREALES Todos los Productos +MILLO SORGO CEREALES Todos los Productos +SORGO SORGO CEREALES Todos los Productos +TRIGO TRIGO CEREALES Todos los Productos +ALGODON ALGODON FIBRAS Todos los Productos +CAãA FLECHA CAãA FLECHA FIBRAS Todos los Productos +ESPARTO ESPARTO FIBRAS Todos los Productos +ESTROPAJO ESTROPAJO FIBRAS Todos los Productos +FIQUE FIQUE FIBRAS Todos los Productos +IRACA IRACA FIBRAS Todos los Productos +MIMBRE MIMBRE FIBRAS Todos los Productos +PALMA AMARGA PALMA AMARGA FIBRAS Todos los Productos +ANTURIO FLORES FLORES Y FOLLAJES Todos los Productos +ASTROMELIA FLORES FLORES Y FOLLAJES Todos los Productos +CARTUCHO-ASTROMELIA FLORES FLORES Y FOLLAJES Todos los Productos +CLAVEL FLORES FLORES Y FOLLAJES Todos los Productos +GIRASOL FLORES FLORES Y FOLLAJES Todos los Productos +GLADIOLO FLORES FLORES Y FOLLAJES Todos los Productos +HELICONIA FLORES FLORES Y FOLLAJES Todos los Productos +HORTENSIA FLORES FLORES Y FOLLAJES Todos los Productos +ORQUIDEA FLORES FLORES Y FOLLAJES Todos los Productos +POMPON Y CRISANTEMO FLORES FLORES Y FOLLAJES Todos los Productos +ROSA FLORES FLORES Y FOLLAJES Todos los Productos +FLORES Y FOLLAJES FLORES Y FOLLAJES FLORES Y FOLLAJES Todos los Productos +ASPARRAGUS FOLLAJES FLORES Y FOLLAJES Todos los Productos +CORDELINE CINTA FOLLAJES FLORES Y FOLLAJES Todos los Productos +EUCALIPTO BABY BLUE FOLLAJES FLORES Y FOLLAJES Todos los Productos +FITOSPORUM FOLLAJES FLORES Y FOLLAJES Todos los Productos +HELECHO FOLLAJES FLORES Y FOLLAJES Todos los Productos +HELECHO CUERO FOLLAJES FLORES Y FOLLAJES Todos los Productos +PALMA ROBELINA FOLLAJES FLORES Y FOLLAJES Todos los Productos +TREE FERN FOLLAJES FLORES Y FOLLAJES Todos los Productos +CAUCHO CAUCHO FORESTALES Todos los Productos +PLANTULAS CAUCHO FORESTALES Todos los Productos +AGUACATE AGUACATE FRUTALES Todos los Productos +ALGARROBO ALGARROBO FRUTALES Todos los Productos +ANON ANON FRUTALES Todos los Productos +ARANDANO ARANDANO FRUTALES Todos los Productos +BANANITO BANANO FRUTALES Todos los Productos +BANANO BANANO FRUTALES Todos los Productos +BANANO EXPORTACION BANANO FRUTALES Todos los Productos +BANANO MANZANO BANANO FRUTALES Todos los Productos +CHIRO BANANO FRUTALES Todos los Productos +MURRAPO BANANO FRUTALES Todos los Productos +BREVO CADUCIFOLIOS FRUTALES Todos los Productos +CADUCIFOLIOS CADUCIFOLIOS FRUTALES Todos los Productos +CIRUELA CADUCIFOLIOS FRUTALES Todos los Productos +DURAZNO CADUCIFOLIOS FRUTALES Todos los Productos +MANZANA CADUCIFOLIOS FRUTALES Todos los Productos +NISPERO CADUCIFOLIOS FRUTALES Todos los Productos +PERA CADUCIFOLIOS FRUTALES Todos los Productos +CITRICOS CITRICOS FRUTALES Todos los Productos +LIMA CITRICOS FRUTALES Todos los Productos +LIMA TAHITI CITRICOS FRUTALES Todos los Productos +LIMON CITRICOS FRUTALES Todos los Productos +LIMON MANDARINO CITRICOS FRUTALES Todos los Productos +LIMON PAJARITO CITRICOS FRUTALES Todos los Productos +LIMON TAHITI CITRICOS FRUTALES Todos los Productos +MANDARINA CITRICOS FRUTALES Todos los Productos +MANDARINA CLEMENTINA CITRICOS FRUTALES Todos los Productos +MANDARINA ONECO CITRICOS FRUTALES Todos los Productos +NARANJA CITRICOS FRUTALES Todos los Productos +NARANJA JAFFA CITRICOS FRUTALES Todos los Productos +NARANJA SALUSTIANA CITRICOS FRUTALES Todos los Productos +NARANJA VALENCIA CITRICOS FRUTALES Todos los Productos +NARANJA WASHINGTON NAVEL CITRICOS FRUTALES Todos los Productos +POMELO CITRICOS FRUTALES Todos los Productos +TANGELO MINEOLA CITRICOS FRUTALES Todos los Productos +TANGELO ORLANDO CITRICOS FRUTALES Todos los Productos +TORONJA CITRICOS FRUTALES Todos los Productos +COCO COCO FRUTALES Todos los Productos +CURUBA CURUBA FRUTALES Todos los Productos +FEIJOA FEIJOA FRUTALES Todos los Productos +FRAMBUESA FRAMBUESA FRUTALES Todos los Productos +FRESA FRESA FRUTALES Todos los Productos +AGRAZ FRUTALES EXOTICOS FRUTALES Todos los Productos +AGUAJE FRUTALES EXOTICOS FRUTALES Todos los Productos +ARAZA FRUTALES EXOTICOS FRUTALES Todos los Productos +ASAI FRUTALES EXOTICOS FRUTALES Todos los Productos +BACURI FRUTALES EXOTICOS FRUTALES Todos los Productos +BADEA FRUTALES EXOTICOS FRUTALES Todos los Productos +BOROJO FRUTALES EXOTICOS FRUTALES Todos los Productos +CAIMO FRUTALES EXOTICOS FRUTALES Todos los Productos +CHAMBA FRUTALES EXOTICOS FRUTALES Todos los Productos +CHIRIMOYA FRUTALES EXOTICOS FRUTALES Todos los Productos +CHOLUPA FRUTALES EXOTICOS FRUTALES Todos los Productos +CHONTADURO FRUTALES EXOTICOS FRUTALES Todos los Productos +COCONA FRUTALES EXOTICOS FRUTALES Todos los Productos +COPOAZU FRUTALES EXOTICOS FRUTALES Todos los Productos +COROZO FRUTALES EXOTICOS FRUTALES Todos los Productos +DATIL FRUTALES EXOTICOS FRUTALES Todos los Productos +GUAMA FRUTALES EXOTICOS FRUTALES Todos los Productos +GULUPA FRUTALES EXOTICOS FRUTALES Todos los Productos +HIGO FRUTALES EXOTICOS FRUTALES Todos los Productos +MAMONCILLO FRUTALES EXOTICOS FRUTALES Todos los Productos +MANGOSTINO FRUTALES EXOTICOS FRUTALES Todos los Productos +PEPA DE PAN FRUTALES EXOTICOS FRUTALES Todos los Productos +PITAHAYA FRUTALES EXOTICOS FRUTALES Todos los Productos +POMARROSA FRUTALES EXOTICOS FRUTALES Todos los Productos +TAMARINDO FRUTALES EXOTICOS FRUTALES Todos los Productos +UCHUVA FRUTALES EXOTICOS FRUTALES Todos los Productos +UMARI FRUTALES EXOTICOS FRUTALES Todos los Productos +UVA CAIMARONA FRUTALES EXOTICOS FRUTALES Todos los Productos +FRUTALES VARIOS FRUTALES VARIOS FRUTALES Todos los Productos +GRANADILLA GRANADILLA FRUTALES Todos los Productos +GUANABANA GUANABANA FRUTALES Todos los Productos +GUAYABA GUAYABA FRUTALES Todos los Productos +GUAYABA MANZANA GUAYABA FRUTALES Todos los Productos +GUAYABA PERA GUAYABA FRUTALES Todos los Productos +LULO LULO FRUTALES Todos los Productos +MAMEY MAMEY FRUTALES Todos los Productos +MANGO MANGO FRUTALES Todos los Productos +MANGO INJERTO MANGO FRUTALES Todos los Productos +MARACUYA MARACUYA FRUTALES Todos los Productos +MELON MELON FRUTALES Todos los Productos +MORA MORA FRUTALES Todos los Productos +NONI NONI FRUTALES Todos los Productos +MACADAMIA NUECES FRUTALES Todos los Productos +MARAãON NUECES FRUTALES Todos los Productos +PAPAYA PAPAYA FRUTALES Todos los Productos +PAPAYA HAWAIANA PAPAYA FRUTALES Todos los Productos +PAPAYUELA PAPAYA FRUTALES Todos los Productos +PATILLA PATILLA FRUTALES Todos los Productos +PIãA PIãA FRUTALES Todos los Productos +RAMBUTAN RAMBUTAN FRUTALES Todos los Productos +TOMATE DE ARBOL TOMATE DE ARBOL FRUTALES Todos los Productos +UVA UVA FRUTALES Todos los Productos diff --git a/product/Datlas/Rural/in/AgProducts_Names.tsv b/product/Datlas/Rural/in/AgProducts_Names.tsv index 1cf0e94..5a16cdc 100644 --- a/product/Datlas/Rural/in/AgProducts_Names.tsv +++ b/product/Datlas/Rural/in/AgProducts_Names.tsv @@ -1,35 +1,195 @@ code level name_en name_short_en name_es name_short_es -total level0 Total Total Total Total -cereals_total level1 Cereals Cereals Cereals Cereals -pltubers_total level1 Tubers Tubers Tubers Tubers -agroind_total level1 Total Agroindustries Total Agroindustries Total Agroindustries Total Agroindustries -greens_total level1 Greens Greens Greens Greens -fruits_total level1 Fruits Fruits Fruits Fruits -palm level2 Palm Palm Palm Palm -avocado level2 Avocado Avocado Avocado Avocado -papaya level2 Papaya Papaya Papaya Papaya -other fruits level2 Other Fruits Other Fruits Other Fruits Other Fruits -banana expo level2 Banana Expo Banana Expo Banana Expo Banana Expo -coffee level2 Coffee Coffee Coffee Coffee -white corn level2 White Corn White Corn White Corn White Corn -rice level2 Rice Rice Rice Rice -yellow corn level2 Yellow Corn Yellow Corn Yellow Corn Yellow Corn -other tubers level2 Other Tubers Other Tubers Other Tubers Other Tubers -plantain level2 Plantain Plantain Plantain Plantain -cotton level2 Cotton Cotton Cotton Cotton -cocoa level2 Cocoa Cocoa Cocoa Cocoa -other agroind level2 Other Agroindustries Other Agroindustries Other Agroindustries Other Agroindustries -vegetables level2 Vegetables Vegetables Vegetables Vegetables -forest plants level2 Forest Plants Forest Plants Forest Plants Forest Plants -pinneaple level2 Pinneaple Pinneaple Pinneaple Pinneaple -flowers & foliage level2 Flowers & Foliage Flowers & Foliage Flowers & Foliage Flowers & Foliage -rubber level2 Rubber Rubber Rubber Rubber -yucca level2 Yucca Yucca Yucca Yucca -citrics level2 Citrics Citrics Citrics Citrics -panela cane level2 Panela Cane Panela Cane Panela Cane Panela Cane -potatoes level2 Potatoes Potatoes Potatoes Potatoes -tobacco level2 Tobacco Tobacco Tobacco Tobacco -banana other level2 Other Banana Other Banana Other Banana Other Banana -other cereals level2 Other Cereals Other Cereals Other Cereals Other Cereals -sugar cane level2 Sugar Cane Sugar Cane Sugar Cane Sugar Cane -herbs level2 Herbs Herbs Herbs Herbs +Todos los Productos level0 All Products All Products Todos Los Productos Todos Los Productos +CEREALES level1 Cereals Cereals Cereales Cereales +FIBRAS level1 Fibers Fibers Fibras Fibras +FLORES Y FOLLAJES level1 Flowers And Foliage Flowers And Foliage Flores Y Follajes Flores Y Follajes +FORESTALES level1 Forestry Forestry Forestales Forestales +FRUTALES level1 Fruits Fruits Frutales Frutales +AGUACATE level2 Aguacate Aguacate Aguacate Aguacate +ALGARROBO level2 Algarrobo Algarrobo Algarrobo Algarrobo +ALGODON level2 Algodon Algodon Algodon Algodon +ANON level2 Anon Anon Anon Anon +ARANDANO level2 Arandano Arandano Arandano Arandano +ARROZ level2 Arroz Arroz Arroz Arroz +AVENA level2 Avena Avena Avena Avena +BANANO level2 Banano Banano Banano Banano +CADUCIFOLIOS level2 Caducifolios Caducifolios Caducifolios Caducifolios +CAUCHO level2 Caucho Caucho Caucho Caucho +CAãA FLECHA level2 Caãa Flecha Caãa Flecha Caãa Flecha Caãa Flecha +CEBADA level2 Cebada Cebada Cebada Cebada +CENTENO level2 Centeno Centeno Centeno Centeno +CITRICOS level2 Citricos Citricos Citricos Citricos +COCO level2 Coco Coco Coco Coco +CURUBA level2 Curuba Curuba Curuba Curuba +ESPARTO level2 Esparto Esparto Esparto Esparto +ESTROPAJO level2 Estropajo Estropajo Estropajo Estropajo +FEIJOA level2 Feijoa Feijoa Feijoa Feijoa +FIQUE level2 Fique Fique Fique Fique +FLORES level2 Flores Flores Flores Flores +FLORES Y FOLLAJES level2 Flores Y Follajes Flores Y Follajes Flores Y Follajes Flores Y Follajes +FOLLAJES level2 Follajes Follajes Follajes Follajes +FRAMBUESA level2 Frambuesa Frambuesa Frambuesa Frambuesa +FRESA level2 Fresa Fresa Fresa Fresa +FRUTALES EXOTICOS level2 Frutales Exoticos Frutales Exoticos Frutales Exoticos Frutales Exoticos +FRUTALES VARIOS level2 Frutales Varios Frutales Varios Frutales Varios Frutales Varios +GRANADILLA level2 Granadilla Granadilla Granadilla Granadilla +GUANABANA level2 Guanabana Guanabana Guanabana Guanabana +GUAYABA level2 Guayaba Guayaba Guayaba Guayaba +IRACA level2 Iraca Iraca Iraca Iraca +LULO level2 Lulo Lulo Lulo Lulo +MAIZ level2 Maiz Maiz Maiz Maiz +MAIZ FORRAJERO level2 Maiz Forrajero Maiz Forrajero Maiz Forrajero Maiz Forrajero +MAMEY level2 Mamey Mamey Mamey Mamey +MANGO level2 Mango Mango Mango Mango +MARACUYA level2 Maracuya Maracuya Maracuya Maracuya +MELON level2 Melon Melon Melon Melon +MIMBRE level2 Mimbre Mimbre Mimbre Mimbre +MORA level2 Mora Mora Mora Mora +NONI level2 Noni Noni Noni Noni +NUECES level2 Nueces Nueces Nueces Nueces +PALMA AMARGA level2 Palma Amarga Palma Amarga Palma Amarga Palma Amarga +PAPAYA level2 Papaya Papaya Papaya Papaya +PATILLA level2 Patilla Patilla Patilla Patilla +PIãA level2 Piãa Piãa Piãa Piãa +QUINUA level2 Quinua Quinua Quinua Quinua +RAMBUTAN level2 Rambutan Rambutan Rambutan Rambutan +SORGO level2 Sorgo Sorgo Sorgo Sorgo +TOMATE DE ARBOL level2 Tomate De Arbol Tomate De Arbol Tomate De Arbol Tomate De Arbol +TRIGO level2 Trigo Trigo Trigo Trigo +UVA level2 Uva Uva Uva Uva +AGUACATE level3 Aguacate Aguacate Aguacate Aguacate +ALGARROBO level3 Algarrobo Algarrobo Algarrobo Algarrobo +ALGODON level3 Algodon Algodon Algodon Algodon +ANON level3 Anon Anon Anon Anon +ARANDANO level3 Arandano Arandano Arandano Arandano +ARROZ RIEGO level3 Arroz Riego Arroz Riego Arroz Riego Arroz Riego +ARROZ SECANO MANUAL level3 Arroz Secano Manual Arroz Secano Manual Arroz Secano Manual Arroz Secano Manual +ARROZ SECANO MECANIZADO level3 Arroz Secano Mecanizado Arroz Secano Mecanizado Arroz Secano Mecanizado Arroz Secano Mecanizado +AVENA level3 Avena Avena Avena Avena +BANANITO level3 Bananito Bananito Bananito Bananito +BANANO level3 Banano Banano Banano Banano +BANANO EXPORTACION level3 Banano Exportacion Banano Exportacion Banano Exportacion Banano Exportacion +BANANO MANZANO level3 Banano Manzano Banano Manzano Banano Manzano Banano Manzano +CHIRO level3 Chiro Chiro Chiro Chiro +MURRAPO level3 Murrapo Murrapo Murrapo Murrapo +BREVO level3 Brevo Brevo Brevo Brevo +CADUCIFOLIOS level3 Caducifolios Caducifolios Caducifolios Caducifolios +CIRUELA level3 Ciruela Ciruela Ciruela Ciruela +DURAZNO level3 Durazno Durazno Durazno Durazno +MANZANA level3 Manzana Manzana Manzana Manzana +NISPERO level3 Nispero Nispero Nispero Nispero +PERA level3 Pera Pera Pera Pera +CAUCHO level3 Caucho Caucho Caucho Caucho +PLANTULAS level3 Plantulas Plantulas Plantulas Plantulas +CAãA FLECHA level3 Caãa Flecha Caãa Flecha Caãa Flecha Caãa Flecha +CEBADA level3 Cebada Cebada Cebada Cebada +CENTENO level3 Centeno Centeno Centeno Centeno +CITRICOS level3 Citricos Citricos Citricos Citricos +LIMA level3 Lima Lima Lima Lima +LIMA TAHITI level3 Lima Tahiti Lima Tahiti Lima Tahiti Lima Tahiti +LIMON level3 Limon Limon Limon Limon +LIMON MANDARINO level3 Limon Mandarino Limon Mandarino Limon Mandarino Limon Mandarino +LIMON PAJARITO level3 Limon Pajarito Limon Pajarito Limon Pajarito Limon Pajarito +LIMON TAHITI level3 Limon Tahiti Limon Tahiti Limon Tahiti Limon Tahiti +MANDARINA level3 Mandarina Mandarina Mandarina Mandarina +MANDARINA CLEMENTINA level3 Mandarina Clementina Mandarina Clementina Mandarina Clementina Mandarina Clementina +MANDARINA ONECO level3 Mandarina Oneco Mandarina Oneco Mandarina Oneco Mandarina Oneco +NARANJA level3 Naranja Naranja Naranja Naranja +NARANJA JAFFA level3 Naranja Jaffa Naranja Jaffa Naranja Jaffa Naranja Jaffa +NARANJA SALUSTIANA level3 Naranja Salustiana Naranja Salustiana Naranja Salustiana Naranja Salustiana +NARANJA VALENCIA level3 Naranja Valencia Naranja Valencia Naranja Valencia Naranja Valencia +NARANJA WASHINGTON NAVEL level3 Naranja Washington Navel Naranja Washington Navel Naranja Washington Navel Naranja Washington Navel +POMELO level3 Pomelo Pomelo Pomelo Pomelo +TANGELO MINEOLA level3 Tangelo Mineola Tangelo Mineola Tangelo Mineola Tangelo Mineola +TANGELO ORLANDO level3 Tangelo Orlando Tangelo Orlando Tangelo Orlando Tangelo Orlando +TORONJA level3 Toronja Toronja Toronja Toronja +COCO level3 Coco Coco Coco Coco +CURUBA level3 Curuba Curuba Curuba Curuba +ESPARTO level3 Esparto Esparto Esparto Esparto +ESTROPAJO level3 Estropajo Estropajo Estropajo Estropajo +FEIJOA level3 Feijoa Feijoa Feijoa Feijoa +FIQUE level3 Fique Fique Fique Fique +ANTURIO level3 Anturio Anturio Anturio Anturio +ASTROMELIA level3 Astromelia Astromelia Astromelia Astromelia +CARTUCHO-ASTROMELIA level3 Cartucho-Astromelia Cartucho-Astromelia Cartucho-Astromelia Cartucho-Astromelia +CLAVEL level3 Clavel Clavel Clavel Clavel +GIRASOL level3 Girasol Girasol Girasol Girasol +GLADIOLO level3 Gladiolo Gladiolo Gladiolo Gladiolo +HELICONIA level3 Heliconia Heliconia Heliconia Heliconia +HORTENSIA level3 Hortensia Hortensia Hortensia Hortensia +ORQUIDEA level3 Orquidea Orquidea Orquidea Orquidea +POMPON Y CRISANTEMO level3 Pompon Y Crisantemo Pompon Y Crisantemo Pompon Y Crisantemo Pompon Y Crisantemo +ROSA level3 Rosa Rosa Rosa Rosa +FLORES Y FOLLAJES level3 Flores Y Follajes Flores Y Follajes Flores Y Follajes Flores Y Follajes +ASPARRAGUS level3 Asparragus Asparragus Asparragus Asparragus +CORDELINE CINTA level3 Cordeline Cinta Cordeline Cinta Cordeline Cinta Cordeline Cinta +EUCALIPTO BABY BLUE level3 Eucalipto Baby Blue Eucalipto Baby Blue Eucalipto Baby Blue Eucalipto Baby Blue +FITOSPORUM level3 Fitosporum Fitosporum Fitosporum Fitosporum +HELECHO level3 Helecho Helecho Helecho Helecho +HELECHO CUERO level3 Helecho Cuero Helecho Cuero Helecho Cuero Helecho Cuero +PALMA ROBELINA level3 Palma Robelina Palma Robelina Palma Robelina Palma Robelina +TREE FERN level3 Tree Fern Tree Fern Tree Fern Tree Fern +FRAMBUESA level3 Frambuesa Frambuesa Frambuesa Frambuesa +FRESA level3 Fresa Fresa Fresa Fresa +AGRAZ level3 Agraz Agraz Agraz Agraz +AGUAJE level3 Aguaje Aguaje Aguaje Aguaje +ARAZA level3 Araza Araza Araza Araza +ASAI level3 Asai Asai Asai Asai +BACURI level3 Bacuri Bacuri Bacuri Bacuri +BADEA level3 Badea Badea Badea Badea +BOROJO level3 Borojo Borojo Borojo Borojo +CAIMO level3 Caimo Caimo Caimo Caimo +CHAMBA level3 Chamba Chamba Chamba Chamba +CHIRIMOYA level3 Chirimoya Chirimoya Chirimoya Chirimoya +CHOLUPA level3 Cholupa Cholupa Cholupa Cholupa +CHONTADURO level3 Chontaduro Chontaduro Chontaduro Chontaduro +COCONA level3 Cocona Cocona Cocona Cocona +COPOAZU level3 Copoazu Copoazu Copoazu Copoazu +COROZO level3 Corozo Corozo Corozo Corozo +DATIL level3 Datil Datil Datil Datil +GUAMA level3 Guama Guama Guama Guama +GULUPA level3 Gulupa Gulupa Gulupa Gulupa +HIGO level3 Higo Higo Higo Higo +MAMONCILLO level3 Mamoncillo Mamoncillo Mamoncillo Mamoncillo +MANGOSTINO level3 Mangostino Mangostino Mangostino Mangostino +PEPA DE PAN level3 Pepa De Pan Pepa De Pan Pepa De Pan Pepa De Pan +PITAHAYA level3 Pitahaya Pitahaya Pitahaya Pitahaya +POMARROSA level3 Pomarrosa Pomarrosa Pomarrosa Pomarrosa +TAMARINDO level3 Tamarindo Tamarindo Tamarindo Tamarindo +UCHUVA level3 Uchuva Uchuva Uchuva Uchuva +UMARI level3 Umari Umari Umari Umari +UVA CAIMARONA level3 Uva Caimarona Uva Caimarona Uva Caimarona Uva Caimarona +FRUTALES VARIOS level3 Frutales Varios Frutales Varios Frutales Varios Frutales Varios +GRANADILLA level3 Granadilla Granadilla Granadilla Granadilla +GUANABANA level3 Guanabana Guanabana Guanabana Guanabana +GUAYABA level3 Guayaba Guayaba Guayaba Guayaba +GUAYABA MANZANA level3 Guayaba Manzana Guayaba Manzana Guayaba Manzana Guayaba Manzana +GUAYABA PERA level3 Guayaba Pera Guayaba Pera Guayaba Pera Guayaba Pera +IRACA level3 Iraca Iraca Iraca Iraca +LULO level3 Lulo Lulo Lulo Lulo +MAIZ TECNIFICADO level3 Maiz Tecnificado Maiz Tecnificado Maiz Tecnificado Maiz Tecnificado +MAIZ TRADICIONAL level3 Maiz Tradicional Maiz Tradicional Maiz Tradicional Maiz Tradicional +MAIZ FORRAJERO level3 Maiz Forrajero Maiz Forrajero Maiz Forrajero Maiz Forrajero +MAMEY level3 Mamey Mamey Mamey Mamey +MANGO level3 Mango Mango Mango Mango +MANGO INJERTO level3 Mango Injerto Mango Injerto Mango Injerto Mango Injerto +MARACUYA level3 Maracuya Maracuya Maracuya Maracuya +MELON level3 Melon Melon Melon Melon +MIMBRE level3 Mimbre Mimbre Mimbre Mimbre +MORA level3 Mora Mora Mora Mora +NONI level3 Noni Noni Noni Noni +MACADAMIA level3 Macadamia Macadamia Macadamia Macadamia +MARAãON level3 Maraãon Maraãon Maraãon Maraãon +PALMA AMARGA level3 Palma Amarga Palma Amarga Palma Amarga Palma Amarga +PAPAYA level3 Papaya Papaya Papaya Papaya +PAPAYA HAWAIANA level3 Papaya Hawaiana Papaya Hawaiana Papaya Hawaiana Papaya Hawaiana +PAPAYUELA level3 Papayuela Papayuela Papayuela Papayuela +PATILLA level3 Patilla Patilla Patilla Patilla +PIãA level3 Piãa Piãa Piãa Piãa +QUINUA level3 Quinua Quinua Quinua Quinua +RAMBUTAN level3 Rambutan Rambutan Rambutan Rambutan +MILLO level3 Millo Millo Millo Millo +SORGO level3 Sorgo Sorgo Sorgo Sorgo +TOMATE DE ARBOL level3 Tomate De Arbol Tomate De Arbol Tomate De Arbol Tomate De Arbol +TRIGO level3 Trigo Trigo Trigo Trigo +UVA level3 Uva Uva Uva Uva diff --git a/product/Datlas/Rural/out/agricultural_products.csv b/product/Datlas/Rural/out/agricultural_products.csv index b549dab..1925ab9 100644 --- a/product/Datlas/Rural/out/agricultural_products.csv +++ b/product/Datlas/Rural/out/agricultural_products.csv @@ -1,35 +1,195 @@ "","code","name","level","name_en","name_es","parent_id" -0,"total","Total","level0","Total","Total","" -1,"agroind_total","Total Agroindustries","level1","Total Agroindustries","Total Agroindustries",0.0 -2,"cocoa","Cocoa","level2","Cocoa","Cocoa",1.0 -3,"coffee","Coffee","level2","Coffee","Coffee",1.0 -4,"cotton","Cotton","level2","Cotton","Cotton",1.0 -5,"other agroind","Other Agroindustries","level2","Other Agroindustries","Other Agroindustries",1.0 -6,"palm","Palm","level2","Palm","Palm",1.0 -7,"panela cane","Panela Cane","level2","Panela Cane","Panela Cane",1.0 -8,"rubber","Rubber","level2","Rubber","Rubber",1.0 -9,"sugar cane","Sugar Cane","level2","Sugar Cane","Sugar Cane",1.0 -10,"tobacco","Tobacco","level2","Tobacco","Tobacco",1.0 -11,"cereals_total","Cereals","level1","Cereals","Cereals",0.0 -12,"other cereals","Other Cereals","level2","Other Cereals","Other Cereals",11.0 -13,"rice","Rice","level2","Rice","Rice",11.0 -14,"white corn","White Corn","level2","White Corn","White Corn",11.0 -15,"yellow corn","Yellow Corn","level2","Yellow Corn","Yellow Corn",11.0 -16,"fruits_total","Fruits","level1","Fruits","Fruits",0.0 -17,"avocado","Avocado","level2","Avocado","Avocado",16.0 -18,"banana expo","Banana Expo","level2","Banana Expo","Banana Expo",16.0 -19,"banana other","Other Banana","level2","Other Banana","Other Banana",16.0 -20,"citrics","Citrics","level2","Citrics","Citrics",16.0 -21,"other fruits","Other Fruits","level2","Other Fruits","Other Fruits",16.0 -22,"papaya","Papaya","level2","Papaya","Papaya",16.0 -23,"pinneaple","Pinneaple","level2","Pinneaple","Pinneaple",16.0 -24,"greens_total","Greens","level1","Greens","Greens",0.0 -25,"flowers & foliage","Flowers & Foliage","level2","Flowers & Foliage","Flowers & Foliage",24.0 -26,"forest plants","Forest Plants","level2","Forest Plants","Forest Plants",24.0 -27,"herbs","Herbs","level2","Herbs","Herbs",24.0 -28,"vegetables","Vegetables","level2","Vegetables","Vegetables",24.0 -29,"pltubers_total","Tubers","level1","Tubers","Tubers",0.0 -30,"other tubers","Other Tubers","level2","Other Tubers","Other Tubers",29.0 -31,"plantain","Plantain","level2","Plantain","Plantain",29.0 -32,"potatoes","Potatoes","level2","Potatoes","Potatoes",29.0 -33,"yucca","Yucca","level2","Yucca","Yucca",29.0 +0,"todos los productos","All Products","level0","All Products","Todos Los Productos","" +1,"cereales","Cereals","level1","Cereals","Cereales",0.0 +2,"arroz","Arroz","level2","Arroz","Arroz",1.0 +3,"arroz riego","Arroz Riego","level3","Arroz Riego","Arroz Riego",2.0 +4,"arroz secano manual","Arroz Secano Manual","level3","Arroz Secano Manual","Arroz Secano Manual",2.0 +5,"arroz secano mecanizado","Arroz Secano Mecanizado","level3","Arroz Secano Mecanizado","Arroz Secano Mecanizado",2.0 +6,"avena","Avena","level2","Avena","Avena",1.0 +7,"avena","Avena","level3","Avena","Avena",6.0 +8,"cebada","Cebada","level2","Cebada","Cebada",1.0 +9,"cebada","Cebada","level3","Cebada","Cebada",8.0 +10,"centeno","Centeno","level2","Centeno","Centeno",1.0 +11,"centeno","Centeno","level3","Centeno","Centeno",10.0 +12,"maiz","Maiz","level2","Maiz","Maiz",1.0 +13,"maiz tecnificado","Maiz Tecnificado","level3","Maiz Tecnificado","Maiz Tecnificado",12.0 +14,"maiz tradicional","Maiz Tradicional","level3","Maiz Tradicional","Maiz Tradicional",12.0 +15,"maiz forrajero","Maiz Forrajero","level2","Maiz Forrajero","Maiz Forrajero",1.0 +16,"maiz forrajero","Maiz Forrajero","level3","Maiz Forrajero","Maiz Forrajero",15.0 +17,"quinua","Quinua","level2","Quinua","Quinua",1.0 +18,"quinua","Quinua","level3","Quinua","Quinua",17.0 +19,"sorgo","Sorgo","level2","Sorgo","Sorgo",1.0 +20,"millo","Millo","level3","Millo","Millo",19.0 +21,"sorgo","Sorgo","level3","Sorgo","Sorgo",19.0 +22,"trigo","Trigo","level2","Trigo","Trigo",1.0 +23,"trigo","Trigo","level3","Trigo","Trigo",22.0 +24,"fibras","Fibers","level1","Fibers","Fibras",0.0 +25,"algodon","Algodon","level2","Algodon","Algodon",24.0 +26,"algodon","Algodon","level3","Algodon","Algodon",25.0 +27,"caãa flecha","Caãa Flecha","level2","Caãa Flecha","Caãa Flecha",24.0 +28,"caãa flecha","Caãa Flecha","level3","Caãa Flecha","Caãa Flecha",27.0 +29,"esparto","Esparto","level2","Esparto","Esparto",24.0 +30,"esparto","Esparto","level3","Esparto","Esparto",29.0 +31,"estropajo","Estropajo","level2","Estropajo","Estropajo",24.0 +32,"estropajo","Estropajo","level3","Estropajo","Estropajo",31.0 +33,"fique","Fique","level2","Fique","Fique",24.0 +34,"fique","Fique","level3","Fique","Fique",33.0 +35,"iraca","Iraca","level2","Iraca","Iraca",24.0 +36,"iraca","Iraca","level3","Iraca","Iraca",35.0 +37,"mimbre","Mimbre","level2","Mimbre","Mimbre",24.0 +38,"mimbre","Mimbre","level3","Mimbre","Mimbre",37.0 +39,"palma amarga","Palma Amarga","level2","Palma Amarga","Palma Amarga",24.0 +40,"palma amarga","Palma Amarga","level3","Palma Amarga","Palma Amarga",39.0 +41,"flores y follajes","Flowers And Foliage","level1","Flowers And Foliage","Flores Y Follajes",0.0 +42,"flores","Flores","level2","Flores","Flores",41.0 +43,"anturio","Anturio","level3","Anturio","Anturio",42.0 +44,"astromelia","Astromelia","level3","Astromelia","Astromelia",42.0 +45,"cartucho-astromelia","Cartucho-Astromelia","level3","Cartucho-Astromelia","Cartucho-Astromelia",42.0 +46,"clavel","Clavel","level3","Clavel","Clavel",42.0 +47,"girasol","Girasol","level3","Girasol","Girasol",42.0 +48,"gladiolo","Gladiolo","level3","Gladiolo","Gladiolo",42.0 +49,"heliconia","Heliconia","level3","Heliconia","Heliconia",42.0 +50,"hortensia","Hortensia","level3","Hortensia","Hortensia",42.0 +51,"orquidea","Orquidea","level3","Orquidea","Orquidea",42.0 +52,"pompon y crisantemo","Pompon Y Crisantemo","level3","Pompon Y Crisantemo","Pompon Y Crisantemo",42.0 +53,"rosa","Rosa","level3","Rosa","Rosa",42.0 +54,"flores y follajes","Flores Y Follajes","level2","Flores Y Follajes","Flores Y Follajes",41.0 +55,"flores y follajes","Flores Y Follajes","level3","Flores Y Follajes","Flores Y Follajes",54.0 +56,"follajes","Follajes","level2","Follajes","Follajes",41.0 +57,"asparragus","Asparragus","level3","Asparragus","Asparragus",56.0 +58,"cordeline cinta","Cordeline Cinta","level3","Cordeline Cinta","Cordeline Cinta",56.0 +59,"eucalipto baby blue","Eucalipto Baby Blue","level3","Eucalipto Baby Blue","Eucalipto Baby Blue",56.0 +60,"fitosporum","Fitosporum","level3","Fitosporum","Fitosporum",56.0 +61,"helecho","Helecho","level3","Helecho","Helecho",56.0 +62,"helecho cuero","Helecho Cuero","level3","Helecho Cuero","Helecho Cuero",56.0 +63,"palma robelina","Palma Robelina","level3","Palma Robelina","Palma Robelina",56.0 +64,"tree fern","Tree Fern","level3","Tree Fern","Tree Fern",56.0 +65,"forestales","Forestry","level1","Forestry","Forestales",0.0 +66,"caucho","Caucho","level2","Caucho","Caucho",65.0 +67,"caucho","Caucho","level3","Caucho","Caucho",66.0 +68,"plantulas","Plantulas","level3","Plantulas","Plantulas",66.0 +69,"frutales","Fruits","level1","Fruits","Frutales",0.0 +70,"aguacate","Aguacate","level2","Aguacate","Aguacate",69.0 +71,"aguacate","Aguacate","level3","Aguacate","Aguacate",70.0 +72,"algarrobo","Algarrobo","level2","Algarrobo","Algarrobo",69.0 +73,"algarrobo","Algarrobo","level3","Algarrobo","Algarrobo",72.0 +74,"anon","Anon","level2","Anon","Anon",69.0 +75,"anon","Anon","level3","Anon","Anon",74.0 +76,"arandano","Arandano","level2","Arandano","Arandano",69.0 +77,"arandano","Arandano","level3","Arandano","Arandano",76.0 +78,"banano","Banano","level2","Banano","Banano",69.0 +79,"bananito","Bananito","level3","Bananito","Bananito",78.0 +80,"banano","Banano","level3","Banano","Banano",78.0 +81,"banano exportacion","Banano Exportacion","level3","Banano Exportacion","Banano Exportacion",78.0 +82,"banano manzano","Banano Manzano","level3","Banano Manzano","Banano Manzano",78.0 +83,"chiro","Chiro","level3","Chiro","Chiro",78.0 +84,"murrapo","Murrapo","level3","Murrapo","Murrapo",78.0 +85,"caducifolios","Caducifolios","level2","Caducifolios","Caducifolios",69.0 +86,"brevo","Brevo","level3","Brevo","Brevo",85.0 +87,"caducifolios","Caducifolios","level3","Caducifolios","Caducifolios",85.0 +88,"ciruela","Ciruela","level3","Ciruela","Ciruela",85.0 +89,"durazno","Durazno","level3","Durazno","Durazno",85.0 +90,"manzana","Manzana","level3","Manzana","Manzana",85.0 +91,"nispero","Nispero","level3","Nispero","Nispero",85.0 +92,"pera","Pera","level3","Pera","Pera",85.0 +93,"citricos","Citricos","level2","Citricos","Citricos",69.0 +94,"citricos","Citricos","level3","Citricos","Citricos",93.0 +95,"lima","Lima","level3","Lima","Lima",93.0 +96,"lima tahiti","Lima Tahiti","level3","Lima Tahiti","Lima Tahiti",93.0 +97,"limon","Limon","level3","Limon","Limon",93.0 +98,"limon mandarino","Limon Mandarino","level3","Limon Mandarino","Limon Mandarino",93.0 +99,"limon pajarito","Limon Pajarito","level3","Limon Pajarito","Limon Pajarito",93.0 +100,"limon tahiti","Limon Tahiti","level3","Limon Tahiti","Limon Tahiti",93.0 +101,"mandarina","Mandarina","level3","Mandarina","Mandarina",93.0 +102,"mandarina clementina","Mandarina Clementina","level3","Mandarina Clementina","Mandarina Clementina",93.0 +103,"mandarina oneco","Mandarina Oneco","level3","Mandarina Oneco","Mandarina Oneco",93.0 +104,"naranja","Naranja","level3","Naranja","Naranja",93.0 +105,"naranja jaffa","Naranja Jaffa","level3","Naranja Jaffa","Naranja Jaffa",93.0 +106,"naranja salustiana","Naranja Salustiana","level3","Naranja Salustiana","Naranja Salustiana",93.0 +107,"naranja valencia","Naranja Valencia","level3","Naranja Valencia","Naranja Valencia",93.0 +108,"naranja washington navel","Naranja Washington Navel","level3","Naranja Washington Navel","Naranja Washington Navel",93.0 +109,"pomelo","Pomelo","level3","Pomelo","Pomelo",93.0 +110,"tangelo mineola","Tangelo Mineola","level3","Tangelo Mineola","Tangelo Mineola",93.0 +111,"tangelo orlando","Tangelo Orlando","level3","Tangelo Orlando","Tangelo Orlando",93.0 +112,"toronja","Toronja","level3","Toronja","Toronja",93.0 +113,"coco","Coco","level2","Coco","Coco",69.0 +114,"coco","Coco","level3","Coco","Coco",113.0 +115,"curuba","Curuba","level2","Curuba","Curuba",69.0 +116,"curuba","Curuba","level3","Curuba","Curuba",115.0 +117,"feijoa","Feijoa","level2","Feijoa","Feijoa",69.0 +118,"feijoa","Feijoa","level3","Feijoa","Feijoa",117.0 +119,"frambuesa","Frambuesa","level2","Frambuesa","Frambuesa",69.0 +120,"frambuesa","Frambuesa","level3","Frambuesa","Frambuesa",119.0 +121,"fresa","Fresa","level2","Fresa","Fresa",69.0 +122,"fresa","Fresa","level3","Fresa","Fresa",121.0 +123,"frutales exoticos","Frutales Exoticos","level2","Frutales Exoticos","Frutales Exoticos",69.0 +124,"agraz","Agraz","level3","Agraz","Agraz",123.0 +125,"aguaje","Aguaje","level3","Aguaje","Aguaje",123.0 +126,"araza","Araza","level3","Araza","Araza",123.0 +127,"asai","Asai","level3","Asai","Asai",123.0 +128,"bacuri","Bacuri","level3","Bacuri","Bacuri",123.0 +129,"badea","Badea","level3","Badea","Badea",123.0 +130,"borojo","Borojo","level3","Borojo","Borojo",123.0 +131,"caimo","Caimo","level3","Caimo","Caimo",123.0 +132,"chamba","Chamba","level3","Chamba","Chamba",123.0 +133,"chirimoya","Chirimoya","level3","Chirimoya","Chirimoya",123.0 +134,"cholupa","Cholupa","level3","Cholupa","Cholupa",123.0 +135,"chontaduro","Chontaduro","level3","Chontaduro","Chontaduro",123.0 +136,"cocona","Cocona","level3","Cocona","Cocona",123.0 +137,"copoazu","Copoazu","level3","Copoazu","Copoazu",123.0 +138,"corozo","Corozo","level3","Corozo","Corozo",123.0 +139,"datil","Datil","level3","Datil","Datil",123.0 +140,"guama","Guama","level3","Guama","Guama",123.0 +141,"gulupa","Gulupa","level3","Gulupa","Gulupa",123.0 +142,"higo","Higo","level3","Higo","Higo",123.0 +143,"mamoncillo","Mamoncillo","level3","Mamoncillo","Mamoncillo",123.0 +144,"mangostino","Mangostino","level3","Mangostino","Mangostino",123.0 +145,"pepa de pan","Pepa De Pan","level3","Pepa De Pan","Pepa De Pan",123.0 +146,"pitahaya","Pitahaya","level3","Pitahaya","Pitahaya",123.0 +147,"pomarrosa","Pomarrosa","level3","Pomarrosa","Pomarrosa",123.0 +148,"tamarindo","Tamarindo","level3","Tamarindo","Tamarindo",123.0 +149,"uchuva","Uchuva","level3","Uchuva","Uchuva",123.0 +150,"umari","Umari","level3","Umari","Umari",123.0 +151,"uva caimarona","Uva Caimarona","level3","Uva Caimarona","Uva Caimarona",123.0 +152,"frutales varios","Frutales Varios","level2","Frutales Varios","Frutales Varios",69.0 +153,"frutales varios","Frutales Varios","level3","Frutales Varios","Frutales Varios",152.0 +154,"granadilla","Granadilla","level2","Granadilla","Granadilla",69.0 +155,"granadilla","Granadilla","level3","Granadilla","Granadilla",154.0 +156,"guanabana","Guanabana","level2","Guanabana","Guanabana",69.0 +157,"guanabana","Guanabana","level3","Guanabana","Guanabana",156.0 +158,"guayaba","Guayaba","level2","Guayaba","Guayaba",69.0 +159,"guayaba","Guayaba","level3","Guayaba","Guayaba",158.0 +160,"guayaba manzana","Guayaba Manzana","level3","Guayaba Manzana","Guayaba Manzana",158.0 +161,"guayaba pera","Guayaba Pera","level3","Guayaba Pera","Guayaba Pera",158.0 +162,"lulo","Lulo","level2","Lulo","Lulo",69.0 +163,"lulo","Lulo","level3","Lulo","Lulo",162.0 +164,"mamey","Mamey","level2","Mamey","Mamey",69.0 +165,"mamey","Mamey","level3","Mamey","Mamey",164.0 +166,"mango","Mango","level2","Mango","Mango",69.0 +167,"mango","Mango","level3","Mango","Mango",166.0 +168,"mango injerto","Mango Injerto","level3","Mango Injerto","Mango Injerto",166.0 +169,"maracuya","Maracuya","level2","Maracuya","Maracuya",69.0 +170,"maracuya","Maracuya","level3","Maracuya","Maracuya",169.0 +171,"melon","Melon","level2","Melon","Melon",69.0 +172,"melon","Melon","level3","Melon","Melon",171.0 +173,"mora","Mora","level2","Mora","Mora",69.0 +174,"mora","Mora","level3","Mora","Mora",173.0 +175,"noni","Noni","level2","Noni","Noni",69.0 +176,"noni","Noni","level3","Noni","Noni",175.0 +177,"nueces","Nueces","level2","Nueces","Nueces",69.0 +178,"macadamia","Macadamia","level3","Macadamia","Macadamia",177.0 +179,"maraãon","Maraãon","level3","Maraãon","Maraãon",177.0 +180,"papaya","Papaya","level2","Papaya","Papaya",69.0 +181,"papaya","Papaya","level3","Papaya","Papaya",180.0 +182,"papaya hawaiana","Papaya Hawaiana","level3","Papaya Hawaiana","Papaya Hawaiana",180.0 +183,"papayuela","Papayuela","level3","Papayuela","Papayuela",180.0 +184,"patilla","Patilla","level2","Patilla","Patilla",69.0 +185,"patilla","Patilla","level3","Patilla","Patilla",184.0 +186,"piãa","Piãa","level2","Piãa","Piãa",69.0 +187,"piãa","Piãa","level3","Piãa","Piãa",186.0 +188,"rambutan","Rambutan","level2","Rambutan","Rambutan",69.0 +189,"rambutan","Rambutan","level3","Rambutan","Rambutan",188.0 +190,"tomate de arbol","Tomate De Arbol","level2","Tomate De Arbol","Tomate De Arbol",69.0 +191,"tomate de arbol","Tomate De Arbol","level3","Tomate De Arbol","Tomate De Arbol",190.0 +192,"uva","Uva","level2","Uva","Uva",69.0 +193,"uva","Uva","level3","Uva","Uva",192.0 diff --git a/product/Datlas/Rural/out/agricultural_products.dta b/product/Datlas/Rural/out/agricultural_products.dta index f63c5309aebd5ed0d5d7a81d790a38019d5ce4fe..d397b90b56bd6e10032ae39fcd9ac2a425ee72ea 100644 GIT binary patch literal 43828 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 A8~^|S literal 7292 zcmeI0&u`N(6o3s9H-v=LBZpkdIh{Zg+(tz~T&SP|?KHXWOBczDBggI7f6t4ZAC8r- zZ$d^rG*zSa^Q-;k_1SK!pFd+S*&7z&NN346UL>;*muZrwAJde*o=hgM@c9A{p*C1=j!|a&DV*#zhSj@m-ETDHtk2yRR&^nC83>?M+#s{wH zbaq)CZXIcvUZf}Yf!Vv0Q+jfi-aqXU*!1*1Fj6gNbk4vz1Lq8!Gw`n&5K1WScQOwF zHc}biYLyq88>0-DY*n9=E5~+~(K%F9W_z%~{Yj`S1MpnuA+V}J&;b@()fiO_R0CkO zXe_R(GPj_UW{leSy9L9qjmqMxmR#O>Ic01a0&JzS*s29co(Ntv1-ryo2<9EIsx%f? zRqxho&|Y4DgaF&9EUs#`+j8wCmHo6}kW?~@t7_Dm3!(b7u0nuKR2Em&tpEZvaB1%r z+-#rs09C21>89BNhJCnXP}$fPpmX7G09cnHz%i&SuIl}5ZXgj#x7)yP3+6pQRVs_C z`T$a@d(ZXSfq^TP#Z~2dCHTghR#zdwtWsH~ce$yWQe_MK&edpprn0eGUGoAT3H&J= z-A@jD?f{NLW&cIhE(G?{-E4PqZ7!%RuByoKcck$C)R>0=eW@(2s!eC&#_+Pb7}S}| z>TwoVwd5s#@NWZ_A;1fuvdF4=Q2;Mxw+}2sP^%JIT-6L$RnS%PHp!IC`4$!(SU7;H zRJPRsMYmXevF~hEbtfttTdXprp)yG+d1372S~#%mK&?t-aaHklW$n#>#=eFCRjDkl z>K?XW_*z2i`zr*fN@a0X-C|{Scq`y!-NLl$0jg42DP2cyYaRB1-QYoGW3_6Fl;`d5 tDxB?gk@^4!pt8uS_!o##-Pey=A*fY}EUxOqP6&SoVAml)RVs_C`WMtEw7LKQ diff --git a/product/Datlas/Rural/out/agricultural_products_census.csv b/product/Datlas/Rural/out/agricultural_products_census.csv new file mode 100644 index 0000000..b549dab --- /dev/null +++ b/product/Datlas/Rural/out/agricultural_products_census.csv @@ -0,0 +1,35 @@ +"","code","name","level","name_en","name_es","parent_id" +0,"total","Total","level0","Total","Total","" +1,"agroind_total","Total Agroindustries","level1","Total Agroindustries","Total Agroindustries",0.0 +2,"cocoa","Cocoa","level2","Cocoa","Cocoa",1.0 +3,"coffee","Coffee","level2","Coffee","Coffee",1.0 +4,"cotton","Cotton","level2","Cotton","Cotton",1.0 +5,"other agroind","Other Agroindustries","level2","Other Agroindustries","Other Agroindustries",1.0 +6,"palm","Palm","level2","Palm","Palm",1.0 +7,"panela cane","Panela Cane","level2","Panela Cane","Panela Cane",1.0 +8,"rubber","Rubber","level2","Rubber","Rubber",1.0 +9,"sugar cane","Sugar Cane","level2","Sugar Cane","Sugar Cane",1.0 +10,"tobacco","Tobacco","level2","Tobacco","Tobacco",1.0 +11,"cereals_total","Cereals","level1","Cereals","Cereals",0.0 +12,"other cereals","Other Cereals","level2","Other Cereals","Other Cereals",11.0 +13,"rice","Rice","level2","Rice","Rice",11.0 +14,"white corn","White Corn","level2","White Corn","White Corn",11.0 +15,"yellow corn","Yellow Corn","level2","Yellow Corn","Yellow Corn",11.0 +16,"fruits_total","Fruits","level1","Fruits","Fruits",0.0 +17,"avocado","Avocado","level2","Avocado","Avocado",16.0 +18,"banana expo","Banana Expo","level2","Banana Expo","Banana Expo",16.0 +19,"banana other","Other Banana","level2","Other Banana","Other Banana",16.0 +20,"citrics","Citrics","level2","Citrics","Citrics",16.0 +21,"other fruits","Other Fruits","level2","Other Fruits","Other Fruits",16.0 +22,"papaya","Papaya","level2","Papaya","Papaya",16.0 +23,"pinneaple","Pinneaple","level2","Pinneaple","Pinneaple",16.0 +24,"greens_total","Greens","level1","Greens","Greens",0.0 +25,"flowers & foliage","Flowers & Foliage","level2","Flowers & Foliage","Flowers & Foliage",24.0 +26,"forest plants","Forest Plants","level2","Forest Plants","Forest Plants",24.0 +27,"herbs","Herbs","level2","Herbs","Herbs",24.0 +28,"vegetables","Vegetables","level2","Vegetables","Vegetables",24.0 +29,"pltubers_total","Tubers","level1","Tubers","Tubers",0.0 +30,"other tubers","Other Tubers","level2","Other Tubers","Other Tubers",29.0 +31,"plantain","Plantain","level2","Plantain","Plantain",29.0 +32,"potatoes","Potatoes","level2","Potatoes","Potatoes",29.0 +33,"yucca","Yucca","level2","Yucca","Yucca",29.0 diff --git a/product/Datlas/Rural/out/agricultural_products_census.dta b/product/Datlas/Rural/out/agricultural_products_census.dta new file mode 100644 index 0000000000000000000000000000000000000000..f63c5309aebd5ed0d5d7a81d790a38019d5ce4fe GIT binary patch literal 7292 zcmeI0&u`N(6o3s9H-v=LBZpkdIh{Zg+(tz~T&SP|?KHXWOBczDBggI7f6t4ZAC8r- zZ$d^rG*zSa^Q-;k_1SK!pFd+S*&7z&NN346UL>;*muZrwAJde*o=hgM@c9A{p*C1=j!|a&DV*#zhSj@m-ETDHtk2yRR&^nC83>?M+#s{wH zbaq)CZXIcvUZf}Yf!Vv0Q+jfi-aqXU*!1*1Fj6gNbk4vz1Lq8!Gw`n&5K1WScQOwF zHc}biYLyq88>0-DY*n9=E5~+~(K%F9W_z%~{Yj`S1MpnuA+V}J&;b@()fiO_R0CkO zXe_R(GPj_UW{leSy9L9qjmqMxmR#O>Ic01a0&JzS*s29co(Ntv1-ryo2<9EIsx%f? zRqxho&|Y4DgaF&9EUs#`+j8wCmHo6}kW?~@t7_Dm3!(b7u0nuKR2Em&tpEZvaB1%r z+-#rs09C21>89BNhJCnXP}$fPpmX7G09cnHz%i&SuIl}5ZXgj#x7)yP3+6pQRVs_C z`T$a@d(ZXSfq^TP#Z~2dCHTghR#zdwtWsH~ce$yWQe_MK&edpprn0eGUGoAT3H&J= z-A@jD?f{NLW&cIhE(G?{-E4PqZ7!%RuByoKcck$C)R>0=eW@(2s!eC&#_+Pb7}S}| z>TwoVwd5s#@NWZ_A;1fuvdF4=Q2;Mxw+}2sP^%JIT-6L$RnS%PHp!IC`4$!(SU7;H zRJPRsMYmXevF~hEbtfttTdXprp)yG+d1372S~#%mK&?t-aaHklW$n#>#=eFCRjDkl z>K?XW_*z2i`zr*fN@a0X-C|{Scq`y!-NLl$0jg42DP2cyYaRB1-QYoGW3_6Fl;`d5 tDxB?gk@^4!pt8uS_!o##-Pey=A*fY}EUxOqP6&SoVAml)RVs_C`WMtEw7LKQ literal 0 HcmV?d00001