Identifier les délégations ayant de faibles ratios d'électeurs activement enregistrés par rapport aux électeurs potentiels, est une étape clé pour un processus rigoureux de développement des stratégies de sensibilisation électorale et des efforts d’inscription avant les prochaines élections. Cette visualisation met en évidence les domaines où le ciblage des ressources et des efforts par l’Instance Supérieure Indépendante pour les élections (ISIE), les partis politiques et les organisations de la société civile auraient le plus grand impact.
Ce fichier CSV contient le nombre d’électeurs potentiels et inscrits par délégation. Il a été obtenu à partir du Rapport de l'Assemblée Nationale Constituante sur les élections (PDF), , publié par l’Instance Supérieure Indépendante pour les élections (ISIE) en Février 2012 et converti au format CSV par OpenGovTN.
wwwTunisia is made up of 24 governorates, which are subdivided into 264 delegations. This map visualizes the disparity between actively registered voters and eligible voters by delegation. Actively registered voters meet the age and citizenship requirements for voting and have registered to vote. Eligible voters meet the requirements to vote, but have not actively registered to vote.
Make sure you have read the documentation regarding installing and setting up a PostGIS-enabled database.
This map is comprised of two datasets - delegation shapefiles and tabular eligibility + registration data. To import the shapefiles see the setup.md for instructions on importing geographic data.
To import the tabular registration + eligibility data, first set up the table in the tunisia database. Run the following SQL to set up your table.
create table regis ( district_id int, district text, delegation text, actively_registred numeric, eligible_voters numeric, ratio numeric );
To populate the table, run the following from your command line (not the command shell)
cat path-to/2011data/RegistrationDistributionPerDelegation/RegistDistibutionperDelegation.csv | psql -d tunisia -c "COPY regis FROM STDIN WITH DELIMITER ',' CSV HEADER"
Now that both datasets are in your postgres database, you need join the spatial data (the delegation shapefile) to the tabular data (the RegistDistibutionperDelegation.csv). To do this, run the following SQL.
create table eligibility as ( select a.*, coalesce(cast(b.actively_registred as text), 'n/a') as actively_registred, coalesce(cast(b.eligible_voters as text), 'n/a') as eligible_voters, ratio, coalesce(cast(round(b.ratio) as text)||'%', 'n/a') as ratio_c from delegations a left join regis b on replace(replace(lower(cast(circo_id as text)||name_deleg), ' ', ''), '-', '') = replace(replace(replace(lower(cast(district_id as text)||delegation), ' ', ''), '-', ''), '\r', '') order by ratio desc );
In addition to performing a left join
on the geometry to preserve geometry where records from the tabular data do not match, this query reformats the actively_registered
, eligible_voters
, and ratio
columns for cartographic purposes.
%
sign.Note that only about 215 of the 270 or so records (rows) match. To get the rest of the records to match, run manual updates changing the names in only one table.
update regis set delegation = 'Médina' where delegation = 'Medina';
You’re now ready to style your map in TileMill. Create a new project. In TileMill create a PostGIS layer following the online documentation, specifying the eligibility
table.
Paste in the appropriate html for the and tooltip (labeled ‘eligibility’) See the Eligibility TileMill project for CartoCss styles.