« Mairie de Blaine County » : différence entre les versions

De 21Wiki
Aucun résumé des modifications
Aucun résumé des modifications
Balise : Éditeur de wikicode 2017
Ligne 42 : Ligne 42 :


==Chronologie==
==Chronologie==
 
<graph>{
  "width": 1000,
  "height": 2400,
  "data": [
    {
      "name": "events",
      "format": {
        "type": "json",
        "parse": {"date": "date:\"%Y-%m-%d\""}
      },
      "values": [
        {
          "name": "01/03 - Création des mairies",
          "date": "2022-03-01",
          "y": -20
        },
        {
          "name": "24/05 - élection",
          "date": "2021-05-24",
          "y": -20
        }
      ]
    },
    {
      "name": "membres",
      "transform": [
        {
          "type": "formula",
          "field": "fin",
          "expr": "datum.fin ? datum.fin : datetime(year(now()) + '/' + (month(now())+1) + '/' + date(now()))"
        }
      ],
      "format": {
        "type": "json",
        "parse": {
          "debut": "date:\"%Y-%m-%d\"",
          "fin": "date:\"%Y-%m-%d\""
        }
      },
      "values": [
        {
          "label": "higuera",
          "nom": "Ashwiin Higuera",
          "color": "#822",
          "debut": "2022-03-01",
          "fin": "2021-05-24",
          "status": "🚪"
        },
        {
          "label": "zilman",
          "nom": "Niko Zilman",
          "color": "#822",
          "debut": "2022-03-01",
          "fin": "2021-05-16",
          "status": "🚪"
        },
        {
          "label": "jackal",
          "nom": "Koda Jackal",
          "color": "#0867B0",
          "debut": "2022-03-08",
          "fin": "2022-05-03",
          "status": "🚪"
        },
        {
          "label": "magrize",
          "nom": "John Magrize",
          "color": "#822"",
          "debut": "2022-04-26",
          "fin": "2021-05-24",
          "status": "🚪"
        },
        {
          "label": "vuerta",
          "nom": "Diego De la Vuerta",
          "color": "#0867B0",
          "debut": "2022-05-03",
          "fin": null
          "status": null
        },
        {
          "label": "harrington",
          "nom": "Marcus Harrington",
          "color": "#0867B0",
          "debut": "2022-05-03",
          "fin": null
          "status": null
        },
        {
          "label": "seagull",
          "nom": "Douglas Seagull",
          "color": "#822",
          "debut": "2022-05-24",
          "fin": null
          "status": null
        },
        {
          "label": "daniels",
          "nom": "Tyler Daniels",
          "color": "#822",
          "debut": "2022-05-24",
          "fin": null
          "status": null
        },
        {
          "label": "magrize",
          "nom": "John Magrize",
          "color": "#0867B0"",
          "debut": "2022-05-24",
          "fin": null
          "status": null
        }
      ]
    },
    {
      "name": "maire",
      "transform": [
        {
          "type": "formula",
          "field": "fin",
          "expr": "datum.fin ? datum.fin : datetime(year(now()) + '/' + (month(now())+1) + '/' + date(now()))"
        }
      ],
      "format": {
        "type": "json",
        "parse": {
          "debut": "date:\"%Y-%m-%d\"",
          "fin": "date:\"%Y-%m-%d\""
        }
      },
      "values": [
        {
          "label": "higuera",
          "debut": "2022-03-01",
          "fin": "2022-05-24"
        },
        {
          "label": "parnas",
          "debut": "2022-05-24",
          "fin": null
        }
      ]
    }
  ],
  "scales": [
    {
      "name": "y",
      "type": "ordinal",
      "range": "height",
      "domain": {"data": "membres","field": "label"}
    },
    {
      "name": "x",
      "type": "time",
      "range": "width",
      "nice": "month",
      "domain": {"data": "membres","field": ["debut","fin"]}
    }
  ],
  "axes": [
    {
      "type": "x",
      "scale": "x",
      "grid": true,
      "format": "%m/%y",
      "title": "✈️ Départ de l'île / ⚰️Décès / 🚪 fin de mandat ou démission / 👮 Destitution / 📢 Renvoi "
    }
  ],
  "marks": [
    {
      "type": "text",
      "from": {"data": "membres"},
      "properties": {
        "enter": {
          "x": {"scale": "x","field": "debut"},
          "y": {"scale": "y","field": "label","offset": -7},
          "fill": {"value": "#000"},
          "text": {"field": "nom"},
          "fontSize": {"value": 14}
        }
      }
    },
    {
      "type": "text",
      "from": {"data": "membres"},
      "properties": {
        "enter": {
          "x": {"scale": "x","field": "fin","offset": -2},
          "y": {"scale": "y","field": "label","offset": 6},
          "fill": {"value": "#000"},
          "text": {"field": "status"},
          "fontSize": {"value": 14}
        }
      }
    },
    {
      "type": "rect",
      "from": {"data": "maire"},
      "properties": {
        "enter": {
          "x": {"scale": "x","field": "debut"},
          "x2": {"scale": "x","field": "fin"},
          "y": {"scale": "y","field": "label","offset": -4},
          "height": {"value": 12},
          "fill": {"value": "#C66"}
        }
      }
    },
    {
      "type": "rect",
      "from": {"data": "membres"},
      "properties": {
        "enter": {
          "x": {"scale": "x","field": "debut"},
          "x2": {"scale": "x","field": "fin"},
          "y": {"scale": "y","field": "label"},
          "height": {"value": 4},
          "fill": {"field": "color"}
        }
      }
    },
    {
      "type": "text",
      "from": {"data": "events"},
      "properties": {
        "enter": {
          "x": {"scale": "x","field": "date"},
          "y": {"field": "y"},
          "angle": {"value": -30},
          "fill": {"value": "#000"},
          "text": {"field": "name"},
          "fontSize": {"value": 14}
        }
      }
    },
    {
      "type": "rect",
      "from": {"data": "events"},
      "properties": {
        "enter": {
          "x": {"scale": "x","field": "date"},
          "y": {"field": "y"},
          "width": {"value": 0.5},
          "height": {"field": {"group": "height"},"offset": 20},
          "fill": {"value": "#0090FF"}
        }
      }
    }
  ]
}</graph>
[[Catégorie:Service publique]]
[[Catégorie:Service publique]]
[[Catégorie:Mairie de Blaine County]]
[[Catégorie:Mairie de Blaine County]]

Version du 26 mai 2022 à 13:52


Organisation

Maire

Maire adjoint

Autres membres de la mairie

Historique

Dates Maire Maire adjoint Autres membres de la mairie
24/05/2022 - ??? Douglas Seagull Tyler Daniels John Magrize
01/03/2022 - 24/05/2022 Ashwiin Higuera Niko Zilman (d)

John Magrize

Koda Jackal (d)

Diego De La Vuerta

Marcus Harrington

Légende : (d) = Démission | (r) = Renvoi

Chronologie

Erreur de caractères de contrôle, peut-être mal encodé