From c0e546661d648dff74d8103a385d7f1a32d96a68 Mon Sep 17 00:00:00 2001 From: Didier BARRET Date: Wed, 30 Oct 2019 11:59:52 +0100 Subject: [PATCH] Just update the ICAO laws computed properly (without RF) --- content.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+), 0 deletions(-) diff --git a/content.yml b/content.yml index 831b907..85cb9a7 100644 --- a/content.yml +++ b/content.yml @@ -82,6 +82,38 @@ models: - [ 2500.0, 438.31863895 ] - [ 20000.0, 3335.62849772 ] + - name: ICAO + # Slugged version of the display name above + # Only lowercase alphanumeric, starting with a letter, using - as liaison + # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi + # MUST be unique, two models MUST NOT have the same slug. + slug: icao + # There MUST exist a python file named like this in `flaskr/laws` + # And it MUST contain a class named EmissionModel + # Please keep this lowercased, letters-only (or I will breathe fire) + file: travel_emission_lerp_fit + # Color MUST be in the hex form, without alpha + color: "#ff9934" + # The configuration that will be fed to the model. + # May be anything, really. Go bonkers! + config: + plane_emission_linear_fit: + # A coefficient applied to the distance + connecting_flights_scale: 1.05 + # Radiative Forcing Index + # Multiplier after scaling + rfi: 1.0 + # Flat scalar to add before scaling with laws + offset_before: 0 + # Flat scalar to multiply before scaling with laws + scale_before: 1 + # The travel_emission_lerp_fit uses points instead of intervals + # List of (distance in km, footprint in ??) + points: + - [0.0, 4.5735209613707415 ] + - [500.0, 84.22292312970939 ] + - [3000.0, 223.78236761444174 ] + - [ 25000.0, 1033.0117495994948 ] # The content is Markdown. HTML is also allowed. # If you also want Markdown in the titles, just ask. -- libgit2 0.21.2