Vicenç Ros Municipal Museum

The Vicenç Ros Municipal Museum, in Martorell (Baix Llobregat), occupies one of the sections of an old Capuchin convent dating back to the 17th century and is part of Barcelona Provincial Council Local Museum Network. Opened in 1945, the museum came to be thanks to Vicenç Ros i Batllevell (1883–1970), who donated his large ceramics collection. Over the years, the museum has organised its collection into different categories, which it has expanded: ethnology, art, archaeology, architecture and archives.[1]

The collection

The museum collection is made up of different smaller collections, of which ceramics, architectural and sculptural elements, ethnology and art are of particular note. The ceramics collection is the most extensive, with 350 pieces of ceramics of varying origins and styles and almost 15,000 tiles.[2]

gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
gollark: Then your application is wrong.
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!

See also

  • L'Enrajolada, Santacana House-Museum. Martorell

References

  1. Guia de la Xarxa de Museus Locals (in Catalan). Enciclopèdia Catalana Revistes i Col•leccionables / Oficina de Patrimoni Cultural, Diputació de Barcelona. 2002. pp. 46–47.
  2. Guia del Museu més gran de Catalunya (in Catalan). Centre d'Estudis i Divulgació del Patrimoni. 1999. pp. 129–136.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.