Skip to main content

HESTIA's utils library

Project description

HESTIA Utils

Install

  1. Install the module:
pip install hestia_earth.utils
  1. Add this to your environment variables:
API_URL=https://api.hestia.earth
WEB_URL=https://www.hestia.earth

Usage

  1. To download a file from the HESTIA API:
from hestia_earth.schema import SchemaType
from hestia_earth.utils.api import download_hestia

cycle = download_hestia('cycleId', SchemaType.CYCLE)
sandContent = download_hestia('sandContent', SchemaType.TERM)
  1. To search for a specific Node on HESTIA:
from hestia_earth.schema import SchemaType
from hestia_earth.utils.api import find_node_exact

source = find_node_exact(SchemaType.SOURCE, {'bibliography.title': 'My Bibliography'})
  1. To get a lookup table from local file system:
from hestia_earth.schema import SchemaType
from hestia_earth.utils.lookup import load_lookup

df = load_lookup('path/to/my/lookup.csv')
  1. To get a lookup table from HESTIA:
from hestia_earth.schema import SchemaType
from hestia_earth.utils.lookup import download_lookup

df = download_lookup('crop.csv')

LSRS Format

You can use this library to convert HESTIA data into the LSRS format.

convert() accepts Impact Assessment, Cycle, Site and Source nodes and returns one simplified dict per node:

  • Impact Assessment → the 88 LSRS indicator columns plus metadata (including land transformation and deforestation read from its indicators).
  • Cycle → yield, EVS, seed, pesticide, diesel, electricity, crop residues, and (using the nutrient/unit helpers in lsrs/models_utils.py) fertiliser kg N / kg P2O5 / kg K2O, lime kg CaCO3 and irrigation m3.
  • Site → site type, country, region and current land cover.
  • Source → bibliography title and year.

These JSON outputs can be rendered to Excel or stored elsewhere. lsrs/models_utils.py holds nutrient/unit/land-cover helpers copied from hestia-earth-models so this library has no dependency on it.

For example, this will let you download all verified aggregation on HESTIA:

  1. Add the env variable API_ACCESS_TOKEN and use the API Key from your account.
  2. Create a file to store the search query:
{
  "bool": {
    "must": [
      { "match": { "@type": "ImpactAssessment" } },
      { "match": { "aggregatedDataValidated": true } }
    ]
  }
}
  1. Run python3 convert_to_lsrs.py --query-path test.json --data-state recalculated

This will create 2 files:

  • query-results-lsrs.json: contains the raw JSON data needed to generate the Excel file
  • query-results-lsrs.xlsx: cotains the LSRS data in Excel format.

Note: if you make some changes to the Excel generation, you can run this to use the json data and re-generate the Excel file quicker: python3 render_lsrs.py --filepath query-results-lsrs.json

Converting multiple files and rendering into a single Excel

You can use the convert script to create all the JSON files containing the raw data, then render everything together at once:

  1. Run all your conversion, using --skip-rendering parameter:
python3 convert_to_lsrs.py --query-path test1.json --data-state recalculated --skip-rendering
python3 convert_to_lsrs.py --query-path test1.json --data-state recalculated --skip-rendering
  1. This will write multiple JSON files in the samples folder. Once done, render all together: python3 render_lsrs.py --folder samples. This will create the final samples.xlsx file.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hestia_earth_utils-0.17.24.tar.gz (93.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hestia_earth_utils-0.17.24-py3-none-any.whl (89.1 kB view details)

Uploaded Python 3

File details

Details for the file hestia_earth_utils-0.17.24.tar.gz.

File metadata

  • Download URL: hestia_earth_utils-0.17.24.tar.gz
  • Upload date:
  • Size: 93.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for hestia_earth_utils-0.17.24.tar.gz
Algorithm Hash digest
SHA256 334273da2623c8d9f5813a9777ecb78fd7b01bb6d0ac8978f9684ac25708c118
MD5 32a7da5581b2b2082295239613d4e7ca
BLAKE2b-256 084ccb2bc6b490f073551c6f8832855a899f4538bdae54b72b2b798b0509c201

See more details on using hashes here.

File details

Details for the file hestia_earth_utils-0.17.24-py3-none-any.whl.

File metadata

File hashes

Hashes for hestia_earth_utils-0.17.24-py3-none-any.whl
Algorithm Hash digest
SHA256 2532abdaf638d308bd4aafc5eef32a0a3f64d975afb7002e4ad633655e3082f3
MD5 f548e49b08a312ef13a7f7f58267a8c6
BLAKE2b-256 22fe2f56f33ab6c640af87f2ba8b2356166a0dc61beca605c4d589cca86a1756

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page