This shell script parses data from the Food and Agriculture Organization of the United Nations about the cultivated/planted plants/fruits on the world into a YAML file, which groups them per country to see the top 15.
It has been created for the OpenStreetMap mapping app StreetComplete, see this issue for details.
The script is mostly POSIX-compliant, so it should work on all systems, but a CLI tool called csvtool has to be installed as it is used as a CSV parser.
If this is done, you can just execute it:
$ ./parseCrops.sh source/FAOSTAT_data_2014.csv result/mostPlantedCrops_2014.yml
Prepare CSV…
Adjusting datasets…
Sum up duplicate elements…
Summed up 377 duplicates.
Calculate yearly average…
Sort data…
Evaluate data…
Finish processing…
This is an overview of what happens:
Prepare CSV…
– It strips the table header and extracts the columns of interest.Adjusting datasets…
– Adjusts each dataset. E.g. it strips commas for easier processing, applies the blacklist and coverts the crop names to OSM keys (optional).Sum up duplicate elements…
– Finds exact duplicates (considering the year too) and sums them up. Afterwards reports the sucess. (Usually items should only be summed up when converting OSM tags.)Calculate yearly average…
– Calculates the average tonnes in produc tion when multiple years are given.Sort data…
– It sorts the whole data according to the tonnes of produced crops, independent of the country.Evaluate data…
– It extracts all crops for each country and transforms the first fifteen crops listet into the YAML format. Additionally it replaces the country name with the 2-letter country code (ISO 3166).Finish processing…
– It adds the header and default crops and sorts the YAML another time, so the countries are sorted.
The results can be seen in the directory result. Both data from 2014 and from 2013/2014 are included.
The script can handle multiple data from multiple years quite well. After summing up equal items per year (and country) it later calculates the average of the production numbers from both years.
Additionally, there is a collection of square images of all "OSM fruits", which are included in the top-15. You can find it in the directory images
.