Categories
briefs ideas

Portraits for Wikipedia

Students have to create portraits for personalities in theirs city. The portraits are to be released under an open license on the Wikipedia Commons platform, so they can be used to illustrate Wikipedia articles.

In order to find suitable persons, a search can be done on Wikidata. For instance, this query searches for living persons born in the city of Lausanne, aged less than 85 years, that have a Wikipedia page but do not have a picture.

SELECT ?personne ?personneLabel ?dateNaissance ?age
WHERE {
  ?personne wdt:P31 wd:Q5;         # être humain
            wdt:P19 wd:Q807;       # né à Lausanne
            wdt:P569 ?dateNaissance.  # date de naissance

  # Ne pas avoir d'image
  FILTER NOT EXISTS { ?personne wdt:P18 ?image }

  # Avoir au moins un article Wikipédia
  FILTER EXISTS {
    ?article schema:about ?personne;
             schema:isPartOf ?wiki.
    FILTER(CONTAINS(STR(?wiki), "wikipedia.org"))
  }

  # Exclure les personnes décédées
  FILTER NOT EXISTS { ?personne wdt:P570 ?dateDeces }

  # Exclure les personnes de plus de 85 ans
  BIND(YEAR(NOW()) - YEAR(?dateNaissance) AS ?age)
  FILTER(?age <= 85)

  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
}
ORDER BY ?personneLabel

PS: this idea is quite similar to the existing Wikiportraits Project.

PPS: there’s an article by the BBC about the project, that also made me discover @badwikiphotos on Instagram.

Categories
briefs

music and photographs

This brief is inspired by this line, by photographer Joséphine Michel, on her collaboration with Mika Vainio:

Écouter tous les matins un de ses albums, puis aller photographier des lieux en correspondance avec sa musique. Dans la nature, ou dans les musées de sciences

Source: Fisheye Magazine

Categories
ideas

Participate in Wiki Loves Monuments

Students produce photos in order to participate in “Wiki Loves Monuments“, an annual international photographic competition held during the month of September.

Students will have to identify historical monuments and heritage sites in their surroundings, take photographs, and upload them to Wikimedia Commons.

The list of sites is specific to each participating country. A list of participating countries can be found on this page.

For Switzerland, the participants have to take photos among this list of cultural properties.

Categories
ideas

Movie poster group photo

Students have the task to create an archetypical “Movie poster group photo”. They form groups, and select a movie genre they will be working in (comedy, sci-fi, thriller, super heroes…). They will chose a setting, costumes, accessoires…

They may need to use effects such as green-screen backgrounds, projected background, artificial smoke.

They will need to apply postproduction to match the tone and atmosphere of the chosen genre.

Finally, the photograph needs to be combined with typography and movie poster credits.

Some examples of different group photo styles:

Categories
ideas

Stock Photography

The students are requested to create “stock photography” of some topic – for instance, their city. They will create lots of photographs (maybe also video) of different key locations, and publish them online, on stock photography platforms.

The produced content can serve as base material for further briefs, becoming part of the schools photography database. This will raise questions of how to manage, to share and to classify such a database.