Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=246&weekday=6%2C7
{ "meta": { "count": 6586, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=247&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=245&weekday=6%2C7" }, "data": [ { "id": "kulke:63065", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 10849, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-14T14:13:01.911867Z", "last_modified_time": "2024-02-14T14:13:01.911888Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/10849/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2024-02-14T14:13:01.883314Z", "last_modified_time": "2024-04-05T17:13:54.805495Z", "date_published": null, "start_time": "2024-03-20T06:00:00Z", "end_time": "2024-03-27T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A2BAFD0FE49D681002748FD889D3356A/Stoan_tulevaisuuslaboratorio_II", "sv": "http://www.stoa.fi/sv/evenemang/event/A2BAFD0FE49D681002748FD889D3356A/Stoas_framtidslaboratorium_II", "en": "http://www.stoa.fi/en/events/event/A2BAFD0FE49D681002748FD889D3356A/Stoa_Futures_Lab_II" }, "provider": null, "description": { "fi": "<p>Tulevaisuuden Stoa luodaan yhdessä – osallistu suunnitteluun ja tee Stoasta elämäsi keskus!</p><p>Kulttuurikeskus Stoa uudistuu ja laajenee 2030-luvulla. Tavoitteemme on tehdä tila, joka on koko Itä-Helsingin ikioma ylpeyden aihe ja itähelsinkiläisen kulttuurin ja arjen keskus. Tulevaisuuden Stoassa voit luoda, kokea, harrastaa, leikkiä, työskennellä, juhlia, oppia ja opiskella.</p><p>Koska kukaan ei tunne itää paremmin kuin sen asukkaat, kutsuimme viime syksynä kaupunkilaiset ideoimaan Tulevaisuuslaboratorioomme 2030-luvun Stoaa, jotta talo palvelisi käyttäjiään parhaimmalla mahdollisella tavalla myös tulevaisuudessa.</p><p>Syksyn tiedonkeruun tulokset on nyt koottu yhteen ja meille on muodostunut näkemys siitä, millainen palvelu Stoa 2030-luvulla voisi olla.</p><p>Kutsumme kaupunkilaiset katsomaan ja kommentoimaan suunnitelmia Stoan aulaan.</p><p>Voit tutustua suunnitelmiin ja osallistua Stoan aukioloaikoina eli ma–to klo 8–20, pe klo 8–18, la klo 10–16 ja su klo 12–18.</p><p>Lisäksi suunnitelmat ovat nähtävillä ja kommentoitavana myös kerrokantasi.hel.fi-verkkosivulla 20.3. – 3.4.2024.<br>https://kerrokantasi.hel.fi/stoankonseptit</p>", "sv": "<p>Framtiden för Stoa skapas tillsammans – delta i planeringen och gör Stoa till ditt livs centrum!</p><p>Kulturcentret Stoa förnyas och utvidgas under 2030-talet. Vårt mål är att skapa en plats som blir hela Östra Helsingfors stolthet och en central punkt för kultur och vardag i öst. I framtiden kommer du kunna skapa, uppleva, utöva hobbyer, leka, arbeta, fira, lära, och studera i Stoa.</p><p>Eftersom ingen känner Östra Helsingfors bättre än dess invånare, bjöd vi in stadsborna förra hösten att delta i vårt Framtidslaboratorium för att utveckla Stoas tjänster för framtiden på bästa möjliga sätt.</p><p>Resultaten från höstens datainsamling har nu sammanställts och vi har fått en vision om hur Stoas tjänster kunde se ut på 2030-talet.</p><p>Vi inbjuder stadsborna att komma och titta på och kommentera planerna i Stoas lobby. Du kan bekanta dig med planerna och delta under Stoas öppettider, mån–tor 8–20, fre 8–18, lör 10–16 och sön 12–18.</p><p>Dessutom är planerna tillgängliga och kan kommenteras på webbplatsen kerrokantasi.hel.fi från den 20 mars till den 3 april 2024. https://kerrokantasi.hel.fi/stoankonseptit</p>", "en": "<p>The future of Stoa is created together – participate in the planning and make Stoa the center of your life!</p><p>Cultural Centre Stoa will be renewing and expanding in the 2030s. Our aim is to create a space that will be a source of pride for all of East Helsinki and the hub for East Helsinki culture and daily life.</p><p>In the future Stoa, you can create, experience, play, work, celebrate, learn, and study.</p><p>Because no one knows East Helsinki better than its residents, we invited citizens last fall to brainstorm what our shared Stoa could be like in the 2030s. Our aim is to ensure that the building serves its users in the best possible way in the future.</p><p>The results of the fall data collection have now been compiled, and we have formed a vision of what Stoa's services could look like in the 2030s.</p><p>We invite citizens to come and view and comment on the plans in Stoa's lobby. You can view the plans and participate during Stoa's opening hours, Mon–Thu 8 am–8 pm, Fri 8 am–6 pm, Sat 10 am–4 pm, and Sun 12 pm–6 pm.</p><p>Additionally, the plans are available for viewing and commenting on the kerrokantasi.hel.fi website from March 20th to April 3rd, 2024.</p><p>https://kerrokantasi.hel.fi/stoankonseptit</p>" }, "short_description": { "fi": "Tulevaisuuden Stoa luodaan yhdessä – osallistu suunnitteluun ja tee Stoasta elämäsi keskus!", "sv": "Framtiden för Stoa skapas tillsammans – delta i planeringen och gör Stoa till ditt livs centrum!", "en": "The future of Stoa is created together – participate in the planning and make Stoa the center of your life!" }, "location_extra_info": null, "name": { "fi": "Stoan tulevaisuuslaboratorio II – Itä saa mitä tilaa - suunnitellaan yhdessä elämäsi keskus", "sv": "Stoas framtidslaboratorium II", "en": "Stoa Futures Lab II – Go East - Designing the Hub of Your Life" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63065/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61534", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/blind-gut-company/", "sv": "https://www.lippu.fi/artist/blind-gut-company/", "en": "https://www.lippu.fi/artist/blind-gut-company/" }, "price": { "fi": "10 / 6 €", "sv": "10 / 6 €", "en": "10 / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T12:13:06.362063Z", "last_modified_time": "2024-02-06T13:23:23.892430Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741125.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T12:13:06.349393Z", "last_modified_time": "2024-04-05T17:13:54.204324Z", "date_published": null, "start_time": "2024-03-17T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/66C31AF2AE3A0813145317578898CC19/LOPPUUNMYYTY_Blind_Gut_Company_Meritahden_lento", "sv": "http://www.annantalo.fi/sv/evenemang/event/66C31AF2AE3A0813145317578898CC19/SLUTSALD_Blind_Gut_Company_Sjostjarnfall_", "en": "http://www.annantalo.fi/en/events/event/66C31AF2AE3A0813145317578898CC19/SOLD_OUT_Blind_Gut_Company_Flight_of_the_starfish_" }, "provider": null, "description": { "fi": "<p>Esitys on valitettavasti loppuunmyyty! Vauvoille ja heidän läheisilleen suunnatussa sirkusesityksessä sukelletaan aisteja kutkuttavaan vedenalaiseen maailmaan.</p><p>Meritähdenlento on pehmeästi pyörteilevä sirkusmatka meren pohjalta kohti pintaa. Vedenalaisessa maailmassa seikkailevat kahden esiintyjän lisäksi muun muassa leikkisät kalat, mystiset meduusat ja värikkäät korallit. Vauva pääsee nauttimaan meren syleilystä katsellen, kuunnellen ja tunnustellen turvallisessa ympäristössä.<br> <br>Kohdeyleisö: 0–1-vuotiaat aikuisineen<br>Kesto: 30 min<br>Kieli: sanaton</p><p>Liput myynnissä osoitteessa lippu.fi.<br>Yksi 10 €:n lippu kattaa yhden lapsen ja yhden aikuisen. Yhden lisäaikuisen lippu hintaan 6 €.</p><p><b>Työryhmä</b><br>Esiintyjät: Inga Björn/Saana Peura ja Tuomas Vuorinen<br>Ohjaus, lavastus, puvustus: Blind Gut Company<br>Valo- ja äänisuunnittelu: Tuomas Vuorinen<br>Tuotanto: Cirko - Uuden sirkuksen keskus ja Blind Gut Company</p><p><b>Blind Gut Company</b><br>Blind Gut Company on vuonna 2015 perustettu kokeilunhaluinen nykysirkusryhmä. Esityksissään ryhmä tarkastelee ympäröivän maailman ilmiöitä leikkisällä ja kriittisellä otteella. Ryhmä pyrkii tarjoamaan koskettavia ja luovaan toimintaan innostavia esityksiä kaikenikäisille katsojille. Meritähdenlento on ryhmän kolmas lapsille suunnattu esitys.</p>", "sv": "<p>Slutsåld, vi beklagar!Sjöstjärnfall är en mjukt virvlande cirkusresa för bebisar från havsbottnen till ytan.</p><p>Med på äventyret i undervattensvärlden är de två uppträdarna och bland annat lekfulla fiskar, mystiska maneter och färggranna koraller. Bebisarna får njuta av havets omfamning genom att titta, lyssna och känna i en trygg miljö.</p>", "en": "<p>Sold out, we regret! Flight of the starfish is a softly swirling circus journey for babies from the bottom of the sea towards the surface.</p><p>In addition to two performers, the underwater world features playful fish, mystical jellyfish and colourful corals, among others. The babies get to enjoy the depths of the sea in a safe environment by watching, listening and feeling.</p>" }, "short_description": { "fi": "Esitys on valitettavasti loppuunmyyty! Vauvoille ja heidän läheisilleen suunnatussa sirkusesityksessä sukelletaan aisteja kutkuttavaan vedenalaiseen maailmaan.", "sv": "Slutsåld, vi beklagar!Sjöstjärnfall är en mjukt virvlande cirkusresa för bebisar från havsbottnen till ytan.", "en": "Sold out, we regret! Flight of the starfish is a softly swirling circus journey for babies from the bottom of the sea towards the surface." }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Blind Gut Company: Meritähden lento – Bravo!-festivaali: vauvojen päivä Annantalossa", "sv": "SLUTSÅLD Blind Gut Company: Sjöstjärnfall – Bravo! Festivalen", "en": "SOLD OUT Blind Gut Company: Flight of the starfish – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61901", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-15-24-3-2024-3567629/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-15-24-3-2024-3567629/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-15-24-3-2024-3567629/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7141, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T15:13:48.631852Z", "last_modified_time": "2024-02-06T13:23:23.796367Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739231.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7141/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-11T15:13:48.604145Z", "last_modified_time": "2024-04-05T17:13:54.139040Z", "date_published": null, "start_time": "2024-03-17T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/86BE2C82B0657662B26D7C861F4FFE93/LOPPUUNMYYTY_Opus_Company_ja_Hands_some_Feet_Babysphere_", "sv": "http://www.stoa.fi/sv/evenemang/event/86BE2C82B0657662B26D7C861F4FFE93/SLUTSALD_Opus_Company_och_Hands_some_Feet_Babysphere_", "en": "http://www.stoa.fi/en/events/event/86BE2C82B0657662B26D7C861F4FFE93/SOLD_OUT_Opus_Company_and_Hands_some_Feet_Babysphere_" }, "provider": null, "description": { "fi": "<p>Vuorovaikutuksellisessa maailmassa asustaa kaksi sirkustaiteilijaa! Tilassa leikitään esiintyjien avulla väreillä, liikkeillä ja erilaisilla esineillä sekä materiaaleilla.</p><p>Sekä lapsille että aikuisille kiinnostavaksi tehty rauhallinen ja stimuloiva ympäristö huomioi niin villeimmät kuin varovaisemmatkin lapset. Tervetuloa värien ja pallojen keskelle!</p><p>Sanaton (alussa ohjeistus suomeksi ja englanniksi)<br>Ikäsuositus: 0–3-vuotiaille<br>Kesto: 30 min</p><p>Tekijät: Opus Company ja Hands some Feet<br>Esiintyjät: Kerttu Opus & Adam Opus ja/tai Liisa Nuuk & Jeromy Nuuk<br>Suunnittelijat: Opus Company</p><p>HUOM! Ostathan lipun itsellesi ja vauvalle/taaperolle. Kaikki sisään tulijat tarvitsevat oman lipun.</p>", "sv": "<p>Två cirkuskonstnärer bor i en interaktiv värld! Med artisternas hjälp leker man med färger, rörelser och olika föremål samt material i utrymmet.</p><p>Miljön har gjorts lugnande, stimulerande och intressant för både barn och vuxna, och man har tagit hänsyn till både de vildaste och de mer försiktiga barnen. Välkommen med bland färgerna och bollarna!</p>", "en": "<p>Interactive colorful world for children and their adults! In the space, with the help of the performers, we play with colors, movements and various objects and textures.</p><p>The calm and stimulating environment takes into account the wildest as well as the more careful children. The duration of the experience is 30 minutes. We welcome you to experience the wondrous world of Babysphere!</p>" }, "short_description": { "fi": "Vuorovaikutuksellisessa maailmassa asustaa kaksi sirkustaiteilijaa! Tilassa leikitään esiintyjien avulla väreillä, liikkeillä ja erilaisilla esineillä sekä materiaaleilla.", "sv": "Två cirkuskonstnärer bor i en interaktiv värld! Med artisternas hjälp leker man med färger, rörelser och olika föremål samt material i utrymmet.", "en": "Interactive colorful world for children and their adults! In the space, with the help of the performers, we play with colors, movements and various objects and textures." }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Opus Company ja Hands some Feet: Babysphere – Bravo!-festivaali", "sv": "SLUTSÅLD Opus Company och Hands some Feet: Babysphere – Bravo! Festivalen", "en": "SOLD OUT Opus Company and Hands some Feet: Babysphere – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61901/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61902", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131815/", "sv": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131815/", "en": "https://www.lippu.fi/event/bravo-festivaali-15-24-3-2024-stoa-18131815/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7142, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T15:13:59.678820Z", "last_modified_time": "2024-02-06T13:23:23.589202Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739232.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7142/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-11T15:13:59.649259Z", "last_modified_time": "2024-04-05T17:13:54.047412Z", "date_published": null, "start_time": "2024-03-17T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/68D14D5989E2E00C80D6A7F5845625D8/LOPPUUNMYYTY_Kompany_Grensgeval_Murmur_", "sv": "http://www.stoa.fi/sv/evenemang/event/68D14D5989E2E00C80D6A7F5845625D8/SLUTSALD_Kompany_Grensgeval_Murmur_", "en": "http://www.stoa.fi/en/events/event/68D14D5989E2E00C80D6A7F5845625D8/SOLD_OUT_Kompany_Grensgeval_Murmur_" }, "provider": null, "description": { "fi": "<p>Akrobaattista ääniteatteria Belgiasta! Tarvitaan vain murisevat reput, kaiuttimien luomat maisemat ja yksi akrobaattinen säveltäjä.</p><p>Murmur on mielikuvituksellinen esitys jokaiselle, joka haluaisi joskus olla muutakin kuin ihminen.</p><p>Sirkustaiteilija rakentaa maailmaa, joka on täynnä ääniä: kehräävä kissa taskussa, ilmassa lentävä mehiläisparvi, käsistä syntyvä autojen ääni. Kaukana voi kuulla sormen vinkuvan ikkunan pintaa pitkin. Merestä tulee tuulta, tuulesta hengitystä. Sirkustaiteilija hyppää, kaatuu, rullaa ja lentää yrittäessään säveltää maailmaa.</p><p>Yhtäkkiä yleisön reputkin alkavat surista ja kaikki tulevat osaksi yhteistä äänipyörrettä. Lopputulos: kuhiseva uusi sirkusääniteatteri kaikille aisteille!</p><p>Belgialainen sirkusryhmä Grensgeval on ryhtynyt luomaan teoksia lapsiyleisölle, ja niistä on tullut yleisön suosikkeja kaikkialla, missä niitä on esitetty.</p><p>Konsepti: Hanne Vandersteene, Mahlu Mertens, Stijn Dickel<br>Akrobaatti: Camiel Corneille / Jef Kinds<br>Ohjaajat: Hanne Vandersteene ja Mahlu Mertens<br>Äänisävellys: Stijn Dickel (aifoon)<br>Dramaturgia: Mieke Versyp<br>Ohjelmisto-/softwarekehittäjä: Tim De Paepe<br>Laitteisto: Jeroen Vandesande<br>Valosuunnittelu: Geert Vanoorlé<br>Puvut: Dorine Demuynck<br>Teknikot: Rinus Samyn, Sil Verdickt<br>Yhteistuotanto: aifoon, Provinciaal domein Dommelhof/Theater op de Markt, C-Takt, MiraMiro, Sabam for Culture<br>Tukijat: De Vlaamse Overheid, Stad Gent, De Grote Post, Circuscentrum, Circusnext<br>Erityiset kiitokset: Sterre De Vresselle, Ward Mortierille ja Camille Paychalle</p><p>Sanaton<br>Ikäsuositus: 4+<br>Kesto: 50 min.</p>", "sv": "<p>Akrobatisk ljudteater från Belgien! Allt som behövs är morrande ryggsäckar, landskap skapade av högtalare och en akrobatisk kompositör.</p><p>Murmur är en fantasifull föreställning för alla som någon gång skulle vilja vara mer än en människa.</p>", "en": "<p>Murmur is acrobatic sound theatre that appeals to the senses - with murmuring backpacks, a landscape of speakers and an acrobatic composer!</p><p>An imaginative performance for everyone who sometimes longs to be more than just human.</p><p>A circus artist is building a world full of sounds. A purring cat comes from a pocket, a swarm of bees flies through the air, two arms create the sound of cars. Far away you hear a finger squeaking on a window. Sea becomes wind becomes breath. Surrounded by the audience, the performer jumps, falls, rolls, and flies in his attempt to compose the world.</p><p>Suddenly the audience’s backpacks start to buzz and everything and everyone becomes part of a swirl of sounds in a loudspeaker landscape.</p><p>After the successful family performance Plock! (2017) Grensgeval collaborated again with Camiel Corneille and Stijn Dickel. The result: fizzing new circus sound theatre for all the senses!</p><p>Concept: Hanne Vandersteene, Mahlu Mertens, Stijn Dickel<br>Acrobat: Camiel Corneille / Jef Kinds<br>Directors: Hanne Vandersteene and Mahlu Mertens<br>Sound composition: Stijn Dickel (aifoon)<br>Dramaturgy: Mieke Versyp<br>Software: Tim De Paepe<br>Hardware: Jeroen Vandesande<br>Light design: Geert Vanoorlé<br>Costumes: Dorine Demuynck<br>Technicians: Rinus Samyn, Sil Verdickt<br>Co-producers: aifoon, Provinciaal domein Dommelhof/Theater op de Markt, C-Takt, MiraMiro, Sabam for Culture<br>With support of: De Vlaamse Overheid, Stad Gent, De Grote Post, Circuscentrum, Circusnext <br>Special thanks to: Sterre De Vresse, Ward Mortier, Camille Paycha<br> <br>Shortlisted circusnext 2018-2019, European programme coordinated by circusnext and supported by the European Union.</p><p>Non-verbal<br>Age recommendation: 4+<br>Duration: 50 min.</p>" }, "short_description": { "fi": "Akrobaattista ääniteatteria Belgiasta! Tarvitaan vain murisevat reput, kaiuttimien luomat maisemat ja yksi akrobaattinen säveltäjä.", "sv": "Akrobatisk ljudteater från Belgien! Allt som behövs är morrande ryggsäckar, landskap skapade av högtalare och en akrobatisk kompositör.", "en": "Murmur is acrobatic sound theatre that appeals to the senses - with murmuring backpacks, a landscape of speakers and an acrobatic composer!" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Kompany Grensgeval: Murmur – Bravo!-festivaali", "sv": "SLUTSÅLD Kompany Grensgeval: Murmur – Bravo! Festivalen", "en": "SOLD OUT Kompany Grensgeval: Murmur – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61902/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61271", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-15-24-3-2024-3567629/", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-15-24-3-2024-3567629/", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-15-24-3-2024-3567629/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7140, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-11T15:13:48.415677Z", "last_modified_time": "2024-02-06T13:23:23.403806Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739230.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7140/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-11T15:13:48.382830Z", "last_modified_time": "2024-04-05T17:13:53.989951Z", "date_published": null, "start_time": "2024-03-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3E456832CB12682BDFB2A0F54A4AAC83/LOPPUUNMYYTY_Opus_Company_ja_Hands_some_Feet_Babysphere_", "sv": "http://www.stoa.fi/sv/evenemang/event/3E456832CB12682BDFB2A0F54A4AAC83/SLUTSALD_Opus_Company_och_Hands_some_Feet_Babysphere_", "en": "http://www.stoa.fi/en/events/event/3E456832CB12682BDFB2A0F54A4AAC83/SOLD_OUT_Opus_Company_and_Hands_some_Feet_Babysphere_" }, "provider": null, "description": { "fi": "<p>Vuorovaikutuksellisessa maailmassa asustaa kaksi sirkustaiteilijaa! Tilassa leikitään esiintyjien avulla väreillä, liikkeillä ja erilaisilla esineillä sekä materiaaleilla.</p><p>Sekä lapsille että aikuisille kiinnostavaksi tehty rauhallinen ja stimuloiva ympäristö huomioi niin villeimmät kuin varovaisemmatkin lapset. Tervetuloa värien ja pallojen keskelle!</p><p>Sanaton (alussa ohjeistus suomeksi ja englanniksi)<br>Ikäsuositus: 0–3-vuotiaille<br>Kesto: 30 min</p><p>Tekijät: Opus Company ja Hands some Feet<br>Esiintyjät: Kerttu Opus & Adam Opus ja/tai Liisa Nuuk & Jeromy Nuuk<br>Suunnittelijat: Opus Company</p><p>HUOM! Ostathan lipun itsellesi ja vauvalle/taaperolle. Kaikki sisään tulijat tarvitsevat oman lipun.</p>", "sv": "<p>Två cirkuskonstnärer bor i en interaktiv värld! Med artisternas hjälp leker man med färger, rörelser och olika föremål samt material i utrymmet.</p><p>Miljön har gjorts lugnande, stimulerande och intressant för både barn och vuxna, och man har tagit hänsyn till både de vildaste och de mer försiktiga barnen. Välkommen med bland färgerna och bollarna!</p>", "en": "<p>Interactive colorful world for children and their adults! In the space, with the help of the performers, we play with colors, movements and various objects and textures.</p><p>The calm and stimulating environment takes into account the wildest as well as the more careful children. The duration of the experience is 30 minutes. We welcome you to experience the wondrous world of Babysphere!</p>" }, "short_description": { "fi": "Vuorovaikutuksellisessa maailmassa asustaa kaksi sirkustaiteilijaa! Tilassa leikitään esiintyjien avulla väreillä, liikkeillä ja erilaisilla esineillä sekä materiaaleilla.", "sv": "Två cirkuskonstnärer bor i en interaktiv värld! Med artisternas hjälp leker man med färger, rörelser och olika föremål samt material i utrymmet.", "en": "Interactive colorful world for children and their adults! In the space, with the help of the performers, we play with colors, movements and various objects and textures." }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Opus Company ja Hands some Feet: Babysphere – Bravo!-festivaali", "sv": "SLUTSÅLD Opus Company och Hands some Feet: Babysphere – Bravo! Festivalen", "en": "SOLD OUT Opus Company and Hands some Feet: Babysphere – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61271/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61533", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/blind-gut-company/", "sv": "https://www.lippu.fi/artist/blind-gut-company/", "en": "https://www.lippu.fi/artist/blind-gut-company/" }, "price": { "fi": "10 / 6 €", "sv": "10 / 6 €", "en": "10 / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7073, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-10T12:13:06.262562Z", "last_modified_time": "2024-02-06T13:23:23.497037Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741124.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-01-10T12:13:06.239048Z", "last_modified_time": "2024-04-05T17:13:53.928011Z", "date_published": null, "start_time": "2024-03-17T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0BF2AF9425C7D76EC8126EB685E3F3EE/LOPPUUNMYYTY_Blind_Gut_Company_Meritahden_lento", "sv": "http://www.annantalo.fi/sv/evenemang/event/0BF2AF9425C7D76EC8126EB685E3F3EE/SLUTSALD_Blind_Gut_Company_Sjostjarnfall_", "en": "http://www.annantalo.fi/en/events/event/0BF2AF9425C7D76EC8126EB685E3F3EE/SOLD_OUT_Blind_Gut_Company_Flight_of_the_starfish_" }, "provider": null, "description": { "fi": "<p>Esitys on valitettavasti loppuunmyyty! Vauvoille ja heidän läheisilleen suunnatussa sirkusesityksessä sukelletaan aisteja kutkuttavaan vedenalaiseen maailmaan.</p><p>Meritähdenlento on pehmeästi pyörteilevä sirkusmatka meren pohjalta kohti pintaa. Vedenalaisessa maailmassa seikkailevat kahden esiintyjän lisäksi muun muassa leikkisät kalat, mystiset meduusat ja värikkäät korallit. Vauva pääsee nauttimaan meren syleilystä katsellen, kuunnellen ja tunnustellen turvallisessa ympäristössä.<br> <br>Kohdeyleisö: 0–1-vuotiaat aikuisineen<br>Kesto: 30 min<br>Kieli: sanaton</p><p>Liput myynnissä osoitteessa lippu.fi.<br>Yksi 10 €:n lippu kattaa yhden lapsen ja yhden aikuisen. Yhden lisäaikuisen lippu hintaan 6 €.</p><p><b>Työryhmä</b><br>Esiintyjät: Inga Björn/Saana Peura ja Tuomas Vuorinen<br>Ohjaus, lavastus, puvustus: Blind Gut Company<br>Valo- ja äänisuunnittelu: Tuomas Vuorinen<br>Tuotanto: Cirko - Uuden sirkuksen keskus ja Blind Gut Company</p><p><b>Blind Gut Company</b><br>Blind Gut Company on vuonna 2015 perustettu kokeilunhaluinen nykysirkusryhmä. Esityksissään ryhmä tarkastelee ympäröivän maailman ilmiöitä leikkisällä ja kriittisellä otteella. Ryhmä pyrkii tarjoamaan koskettavia ja luovaan toimintaan innostavia esityksiä kaikenikäisille katsojille. Meritähdenlento on ryhmän kolmas lapsille suunnattu esitys.</p>", "sv": "<p>Slutsåld, vi beklagar!Sjöstjärnfall är en mjukt virvlande cirkusresa för bebisar från havsbottnen till ytan.</p><p>Med på äventyret i undervattensvärlden är de två uppträdarna och bland annat lekfulla fiskar, mystiska maneter och färggranna koraller. Bebisarna får njuta av havets omfamning genom att titta, lyssna och känna i en trygg miljö.</p>", "en": "<p>Sold out, we regret! Flight of the starfish is a softly swirling circus journey for babies from the bottom of the sea towards the surface.</p><p>In addition to two performers, the underwater world features playful fish, mystical jellyfish and colourful corals, among others. The babies get to enjoy the depths of the sea in a safe environment by watching, listening and feeling.</p>" }, "short_description": { "fi": "Esitys on valitettavasti loppuunmyyty! Vauvoille ja heidän läheisilleen suunnatussa sirkusesityksessä sukelletaan aisteja kutkuttavaan vedenalaiseen maailmaan.", "sv": "Slutsåld, vi beklagar!Sjöstjärnfall är en mjukt virvlande cirkusresa för bebisar från havsbottnen till ytan.", "en": "Sold out, we regret! Flight of the starfish is a softly swirling circus journey for babies from the bottom of the sea towards the surface." }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Blind Gut Company: Meritähden lento – Bravo!-festivaali: vauvojen päivä Annantalossa", "sv": "SLUTSÅLD Blind Gut Company: Sjöstjärnfall – Bravo! Festivalen", "en": "SOLD OUT Blind Gut Company: Flight of the starfish – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61533/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61965", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-shes-leaving-home-3559100/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-shes-leaving-home-3559100/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-shes-leaving-home-3559100/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7492, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-01T15:14:08.176283Z", "last_modified_time": "2024-02-06T13:23:23.214572Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_743726.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7492/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-02-01T15:14:08.135692Z", "last_modified_time": "2024-04-05T17:13:53.838725Z", "date_published": null, "start_time": "2024-03-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AA9351E47B91671A7D3907E54DAAED08/She_s_Leaving_Home", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AA9351E47B91671A7D3907E54DAAED08/She_s_Leaving_Home", "en": "http://www.vuotalo.fi/en/events/event/AA9351E47B91671A7D3907E54DAAED08/She_s_Leaving_Home" }, "provider": null, "description": { "fi": "<p>She´s Leaving Home esittää Beatlesia uudella, raikkaalla tavalla.</p><p>Yhtye soittaa pelkästään The Beatles-bändin kappaleita, mutta uusin sovituksin, naissolistilla sekä ilman kitaraa.</p><p>Kokoonpano:<br>Myyri Ruokolahti, laulu<br>Riddo Ridberg, koskettimet<br>Anton Elmvik, basso<br>Oliver Tschernij, rummut</p><p>Bändi on esiintynyt Suomen lisäksi myös Beatles-festareilla USA:ssa, Englannissa, Brasiliassa ja Venäjällä.<br>Julkaisut: MARMALADE SKIES-albumi (2022) ja BECAUSE-single (2023).</p><p>Klubi-ilta, A-oikeudet, tarjoilun hoitaa Kahvila Pokkari. <br>Liput à 20/15 € @ Lippu.fi tai ovelta 1,5 h ennen tapahtumaa.</p>", "sv": "<p>Beatles på ett nytt och fräscht sätt.</p><p>Bandet spelar endast låtar av The Beatles, men i nya arrangemang med en kvinnlig sångare. Bandet har heller ingen gitarrist. Myyri Ruokolahti (sång), Riddo Ridberg (keyboards), Anton Elmvik (bas) och Oliver Tschernij (trummor).</p><p>Bandet gav ut albumet MARMALADE SKIES 2022 och singeln BECAUSE 2023. Bandet har uppträtt, förutom i Finland, även på Beatlesfestivaler i USA, England, Brasilien och Ryssland.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari. Biljetter à 20/15 € via Lippu.fi eller vid dörren 1,5 h före.</p>", "en": "<p>She's Leaving Home presents the Beatles in a new, fresh way.</p><p>Club-Night, A-rights, serviced by Café Pokkari. Tickets à 15 € / 10 € at Lippu.fi or at the door 1,5 h before.</p>" }, "short_description": { "fi": "She´s Leaving Home esittää Beatlesia uudella, raikkaalla tavalla.", "sv": "Beatles på ett nytt och fräscht sätt.", "en": "She's Leaving Home presents the Beatles in a new, fresh way." }, "location_extra_info": null, "name": { "fi": "She´s Leaving Home – Klubb Ankdamm", "sv": "She´s Leaving Home – Klubb Ankdamm", "en": "She´s Leaving Home – Klubb Ankdamm" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61965/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63144", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-dyyni-3601646/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11190, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-04T13:13:57.127795Z", "last_modified_time": "2024-03-04T13:13:57.127814Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745114.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11190/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-04T13:13:57.081990Z", "last_modified_time": "2024-04-05T17:13:53.783351Z", "date_published": null, "start_time": "2024-03-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0DFBDB07C56487B74EDD1B20D14FAB28/Dyyni_II_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0DFBDB07C56487B74EDD1B20D14FAB28/Dyyni_II_12_", "en": "http://www.malmitalo.fi/en/events/event/0DFBDB07C56487B74EDD1B20D14FAB28/_Dyyni_II_12_" }, "provider": null, "description": { "fi": "<p>Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa.</p><p>Tästä alkaa kostoretki salaliittolaisia vastaan, jotka tuhosivat hänen perheensä.</p><p>Kohdatessaan valinnan elämänsä rakkauden ja tunnetun universumin kohtalon välillä hän ponnistelee ehkäistäkseen hirvittävän tulevaisuuden, jonka vain hän voi nähdä ennalta.</p><p>Saaga jatkuu palkitun elokuvantekijä Denis Villeneuven aloittaessa seuraavan luvun Frank Herbertin maineikkaasta romaanista Dyyni, tähtiluokan kansainvälisen näyttelijäkaartin kanssa. Warner Bros. Picturesin ja Legendary Picturesin Dyyni: Osa kaksi on kovasti odotettu jatko-osa vuoden 2021 kuusi Oscaria voittaneelle Dyynille.</p><p>Ikäraja: 12</p><p>Pituus 166 min</p><p>Elokuva on tekstitetty suomeksi ja ruotsiksi</p><p>Ensi-ilta 28.2.2024</p><p><b>Malmin oma elokuvateatteri Kino Helios uudistui!</b></p><p>Malmitalossa sijaitseva Kino Helios tarjoaa ensi-iltaleffoja edullisesti aikuisille ja lapsiperheille. 92-paikkainen elokuvateatteri tuo Malmille uusimpien elokuvien lisäksi leffafestareiden suosikkeja sekä eriteemaisia elokuvasarjoja.</p><p>Elokuvasaliin on hankittu nyt mukavat tuolit, jotka kannattaa tulla testaamaan! Näe ensi-iltaelokuvat edullisesti ja mukavasti Kino Helioksessa!</p>" }, "short_description": { "fi": "Dyyni: Osa kaksi seuraa Paul Atreidesin myyttistä matkaa hänen liittoutuessaan Chanin ja fremenien kanssa." }, "location_extra_info": null, "name": { "fi": "Dyyni II (12) – Kino Helios", "sv": "Dyyni II (12) – Kino Helios", "en": "Dyyni II (12) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63144/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61733", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6722, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-19T12:13:02.550836Z", "last_modified_time": "2024-02-06T13:23:23.122709Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6722/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-19T12:13:02.537598Z", "last_modified_time": "2024-04-05T17:13:53.694427Z", "date_published": null, "start_time": "2024-03-16T12:00:00Z", "end_time": "2024-03-16T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4D0F5E517CC8286E0B5469D718CC4DC6/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/4D0F5E517CC8286E0B5469D718CC4DC6/Barnens_DanceAbility_dansworkshops", "en": "http://www.annantalo.fi/en/events/event/4D0F5E517CC8286E0B5469D718CC4DC6/Children_s_DanceAbility_workshops" }, "provider": null, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Muut inklusiiviset tanssitunnit: 3.2., 17.2., 2.3.,16.3., 30.3., 20.4., 11.5., 25.5. klo 14–15.</p><p>Ilmoittautuminen: daf@danceabilityfinland.com <br>max.18 osallistujaa</p>", "sv": "<p>DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.</p><p>Klasserna är öppna för alla barn och deras närstående vuxna oavsett funktionsnedsättning eller inte.</p><p>Lokalerna är tillgängliga.</p><p>bokningar: daf@danceabilityfinland.com<br>max. 18 dansare</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com<br>max. 18 dancers</p>" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "DanceAbility-klasser erbjuder barn och deras närstående vuxna trevlig samvaro, rörelseglädje sig och möjligheten att lära känna nya människor av olika slag.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "location_extra_info": null, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Barnens DanceAbility dansworkshops", "en": "Children's DanceAbility workshops" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61733/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61924", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-company-portmanteau-piste-piste-piste-3562405/#calendar-start=2024-03", "sv": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-company-portmanteau-piste-piste-piste-3562405/#calendar-start=2024-03", "en": "https://www.lippu.fi/artist/bravo-festivaali/bravo-festivaali-company-portmanteau-piste-piste-piste-3562405/#calendar-start=2024-03" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 7201, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-01-16T14:14:09.461733Z", "last_modified_time": "2024-02-06T13:23:23.033476Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738301.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/7201/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-01-16T14:14:09.424090Z", "last_modified_time": "2024-04-05T17:13:53.641666Z", "date_published": null, "start_time": "2024-03-16T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/236F2A6BB31B5A5D5EE5EB8D8E5C8F38/Company_Portmanteau_Piste_piste_piste", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/236F2A6BB31B5A5D5EE5EB8D8E5C8F38/Company_Portmanteau_Piste_piste_piste", "en": "http://www.kanneltalo.fi/en/events/event/236F2A6BB31B5A5D5EE5EB8D8E5C8F38/Company_Portmanteau_Piste_piste_piste" }, "provider": null, "description": { "fi": "<p>“Eräänä päivänä lapsi istutti maahan kolme pientä pistettä, jotka kasvoivat kauniiksi viivoiksi.” Lapsille ja nuorelle yleisölle suunnattu esitys yhdistää nykysirkusta, tanssia ja elävää kuvataidetta.</p><p>Luis Sartori do Valen ja Mira Ravaldin teos Piste, piste, piste on kiehtova matka muotojen ja luovuuden maailmaan, joka syntyy, kun esityshetkessä tyhjästä valkoisesta näyttämöstä luodaan vanhoilla piirtoheittimillä mielikuvituksekas universumi.</p><p>Teos pohjautuu kirjailija-kuvittaja Mario Valen lastenkirjaan Três Pontinhos (Kolme pientä pistettä).</p><p>Esiintyjät: Mira Ravald ja Luis Sartori do Vale<br>Valosuunnittelu: Jere Mönkkönen<br>Musiikki/äänisuunnittelu: Petteri Rajanti<br>Tuotanto: WHS<br>Yhteistyössä: Taike, WHS Teatteri Union, Cirko, Annantalo, Subtopia, ITU Lastenteatterin ideahautomo<br>Kuvat: Mikko Pirinen & Luis Sartori do Vale<br>Esitys on vuoden 2020 ITU-palkinnon voittaja.<br>Kesto: 42 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p>", "sv": "<p>\"En dag planterade barnet tre små punkter i marken och de växte upp till vackra linjer.\"</p><p>Den mångkonstnärliga föreställningen för barn och ung publik förenar nutida cirkus, dans och levande bildkonst.</p>", "en": "<p>“One day a kid planted three little dots. And they grew into lines…”</p><p>Piste, piste, piste (Dot, dot, dot) is an interdisciplinary performance for children and young audiences, combining contemporary circus, dance and visual arts.<br>In a fascinating journey into the world of shapes and creativity, a blank white stage gets transformed into an imaginative universe with the use of old overhead projectors.</p><p>The work is based on the children’s book “Três pontinhos” (three little dots) by the author/illustrator Mario Vale.</p><p>Giving continuity to the research started with their previous performance Portmanteau, Luis and Mira explore the use of handmade visuals executed live on old overhead projectors, to build a dynamic and poetic visual environment.</p><p>Not underlining but rather suggesting, the performance sensitively builds up around the journey of two characters who discover three little dots… Through movement, illusion and circus skills, the performers play with the transformation of dots into lines, using the overhead projectors to create different situations and universes in which they travel through, leaving space for the children’s own imagination and interpretations.</p>" }, "short_description": { "fi": "“Eräänä päivänä lapsi istutti maahan kolme pientä pistettä, jotka kasvoivat kauniiksi viivoiksi.” Lapsille ja nuorelle yleisölle suunnattu esitys yhdistää nykysirkusta, tanssia ja elävää kuvataidetta.", "sv": "\"En dag planterade barnet tre små punkter i marken och de växte upp till vackra linjer.\"", "en": "“One day a kid planted three little dots. And they grew into lines…”" }, "location_extra_info": null, "name": { "fi": "Company Portmanteau: Piste, piste, piste – Bravo!-festivaalin Off-ohjelmistossa", "sv": "Company Portmanteau: Piste, piste, piste – Bravo! Festivalen", "en": "Company Portmanteau: Piste, piste, piste – Bravo! Festival" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61924/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63171", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11731, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-11T14:13:47.269623Z", "last_modified_time": "2024-03-11T14:13:47.269641Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745515.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11731/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-03-11T14:13:47.220754Z", "last_modified_time": "2024-04-05T17:13:53.551213Z", "date_published": null, "start_time": "2024-03-16T10:00:00Z", "end_time": "2024-03-16T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/03C72B9CE37A3FD1CFF4D13F6A4C1D1F/OmaStadi_pop-up_tapahtuma", "en": "http://www.kanneltalo.fi/en/events/event/03C72B9CE37A3FD1CFF4D13F6A4C1D1F/OmaStadi_pop-up_event" }, "provider": null, "description": { "fi": "<p>Tule mukaan Naapuriäitien pop-up tapahtumaan ja kuule lisää siitä, miten voit äänestää erilaisia Helsingin kaupungin asukkaiden ehdottamia hankkeita.</p><p>Nyt on meidän aikamme vaikuttaa asuinalueemme kehittämiseen!</p><p>Sinun äänelläsi on valtaa muokata lähiympäristöäsi eri osa-alueilla: kestävä kehitys, kulttuuri, urheilu ja ulkoilu, oppiminen ja osaaminen, puistot ja luonto, rakennettu ympäristö, hyvinvointi ja yhteishenki.</p><p>Älä missaa tätä tilaisuutta osallistua päätöksentekoon ja vaikuttaa yhteisömme elinvoimaisuuteen. Rakennetaan yhdessä valoisampaa tulevaisuutta! Äänestä OmaStadissa 28.2.–17.3.2024.</p><p>Puhumme englantia, romaniaa, espanjaa ja selkosuomea.</p><p>Naapuriäidit on Nicehearts ry:n toimintamalli, joka vahvistaa Suomeen muuttaneiden naisten hyvinvointa ja toimijuutta.</p>", "en": "<p>Join the OmaStadi pop-up events with NeighbourhoodMothers, and find out more about how to vote different projects proposed by the residents of the City of Helsinki.</p><p>Now is our time to influence the development of our neighbourhood in Helsinki. You will find us in Kanneltalo, on Saturday 16.3.2024, between 12.00-15.00.</p><p>Your vote has the power to shape your neighbourhood in different fields: Sustainability, Culture, Sports and outdoor recreation, Learning and competence, Parks and nature, Built environment, Well-being and Community spirit.</p><p>Don't miss this opportunity to be part of the decision-making process and contribute to the vibrancy and resilience of our community.<br>Let's come together and build a brighter future! Vote in OmaStadi 28.2-17.3.2024.</p><p>We speak English, Spanish, Romanian, and Easy Finnish.</p>" }, "short_description": { "fi": "Tule mukaan Naapuriäitien pop-up tapahtumaan ja kuule lisää siitä, miten voit äänestää erilaisia Helsingin kaupungin asukkaiden ehdottamia hankkeita.", "en": "Join the OmaStadi pop-up events with NeighbourhoodMothers, and find out more about how to vote different projects proposed by the residents of the City of Helsinki." }, "location_extra_info": null, "name": { "fi": "OmaStadi pop-up tapahtuma", "en": "OmaStadi pop-up event" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63171/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61174", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6887, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T13:14:25.488534Z", "last_modified_time": "2024-02-06T13:23:22.939878Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738296.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-28T13:14:25.459526Z", "last_modified_time": "2024-04-05T17:13:53.502486Z", "date_published": null, "start_time": "2024-03-16T10:00:00Z", "end_time": "2024-03-16T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/78E98E8CEB2709FE3C7D428641EA3F36/Lasten_lauantai_Unien_siiville_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/78E98E8CEB2709FE3C7D428641EA3F36/Barnens_lordag_Pa_drommarnas_vingar_", "en": "http://www.kanneltalo.fi/en/events/event/78E98E8CEB2709FE3C7D428641EA3F36/Children_s_Saturday_On_the_Wings_of_Dreams" }, "provider": null, "description": { "fi": "<p>Hyppää mukaan unien siiville ja liitele pehmoiseen pilvilinnaan! Työpajassa koko perhe pääsee askartelemaan omat kimaltavat siivet.</p><p><b>Pehmeässä Pilvilinnassa</b> voit nähdä tuikkivia tähtiä, kimaltavia planeettoja ja värikkäitä pilvenhattaroita. Kuuntele suloisia sointuja ja ihmettele suuria harsovuoria! Työpajan täyttää pörröinen pehmeys, säihkyvät askartelumateriaalit ja valojen loiste.</p><p>Osallistu myös kirjaston ihaniin <b>satutuokioihin</b>! Lauantaina tarjolla on satutuokioita kirjaston lukuliiketilassa suomeksi, englanniksi ja venäjäksi:<br>/also in English / na russkom:</p><p>klo 12.00 suomenkielinen satutuokio</p><p>klo 12.30 englanninkielinen satutuokio <br>/Story reading for children in English</p><p>klo 14.15 suomenkielinen satutuokio</p><p>Tule myös tutustumaan gallerian vasta avattuun <b>Unikudelmia-näyttelyyn</b>. Unikudelmia on elämyksellinen taidemaailma, joka kertoo yli kolmenkymmenen suomalaisen kirjan tarinoita unista ja unelmista.</p>", "sv": "<p>Hoppa med på drömmarnas vingar och sväva in en mjuk drömvärld! I workshoppen får hela familjen pyssla egna glittrande vingar.</p>", "en": "<p>Jump on the wings of dreams and fly to a soft castle in the clouds! In the workshop, the whole family will be able to make their own glittering wings.</p>", "ru": "<p>klo 13.15 venäjänkielinen satutuokio<br>В гостях у сказки. Чтение сказок на русском языке. В 13.15</p>" }, "short_description": { "fi": "Hyppää mukaan unien siiville ja liitele pehmoiseen pilvilinnaan! Työpajassa koko perhe pääsee askartelemaan omat kimaltavat siivet.", "sv": "Hoppa med på drömmarnas vingar och sväva in en mjuk drömvärld! I workshoppen får hela familjen pyssla egna glittrande vingar.", "en": "Jump on the wings of dreams and fly to a soft castle in the clouds! In the workshop, the whole family will be able to make their own glittering wings." }, "location_extra_info": null, "name": { "fi": "Lasten lauantai: Unien siiville!", "sv": "Barnens lördag: På drömmarnas vingar!", "en": "Children's Saturday: On the Wings of Dreams" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61174/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61805", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6888, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T14:14:04.267118Z", "last_modified_time": "2024-02-06T13:23:22.845038Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738311.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6888/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-28T14:14:04.231912Z", "last_modified_time": "2024-04-05T17:13:53.444492Z", "date_published": null, "start_time": "2024-03-16", "end_time": "2024-04-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B694BCA57A5AFFC18A2D7DD0385F053B/UNIKUDELMIA", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B694BCA57A5AFFC18A2D7DD0385F053B/DROMVAVAR", "en": "http://www.kanneltalo.fi/en/events/event/B694BCA57A5AFFC18A2D7DD0385F053B/DREAMWEAVING" }, "provider": null, "description": { "fi": "<p>Unikudelmia on elämyksellinen taidemaailma, joka kertoo yli kolmenkymmenen suomalaisen kirjan tarinoita.</p><p>Nukahtaisitko mieluummin huijarisänkykauppiaan antiikkisänkyyn vai Uppiksen talviunipesään? Onko unessasi turvallista, vai istuuko rintasi päällä painaja? Onneksi uniin ei tarvitse uskaltaa yksin, vaan sinne on monta saattelijaa: lämpöisiin talviuniin johdattaa Unenkuiskaaja hohtavine viittoineen, päivätorkkuja tarjoilee Nunnun haukotushuiska ja unien avaruuksiin voi kulkea nukkumatti Kerkkosen luutakopterilla tai Unikon syntymäpäiväreellä.</p><p>Näyttelyn kirjallinen kudelma kurkottelee liki 75 vuoden taakse. Mukana on teoksia ihan jokaiselle: kuvakirjoja, satuja, kuvakertomuksia, novelleja, romaaneja ja tietoa. Pääpaino on lasten- ja nuortenkirjallisuudessa, mutta mukana on myös unista aikuisten proosaa.</p><p>Unikudelmissa on esillä myös mielenkiintoinen kattaus suomalaisten nykytaiteilijoiden teoksia, joista osa on saanut inspiraationsa näyttelyn kirjoista. Kirjallisuuslähtöisen näyttelymaailman kaikilla pienillä ja suurilla esineillä ja yksityiskohdilla on omat tarinansa, jotka löytyvät näyttelykirjallisuudesta. Valveen sanataidekoulu on tuottanut jokaiseen näyttelyn kirjaan sanataideharjoitusmateriaalin, joka on vapaasti kaikkien käytettävissä Näyttelykirjallisuus-sivulla osoitteessa <u><a href=\"https://www-unikudelmia.fi/nayttelykirjallisuus\">unikudelmia.fi</u></a></p><p>Unikudelmia on Oulun lastenkulttuurikeskuksen näyttelytuotanto.</p>", "sv": "<p>Drömvävar är en upplevelserik konstvärld som berättar historien om över trettio finska böcker.</p><p>Utställningens litterära väv sträcker sig nästan 75 år tillbaka i tiden. Här finns verk för alla: bilderböcker, sagor, bildberättelser, noveller, romaner och information. Huvudfokus är på barn- och ungdomslitteratur, men också drömsk prosa för vuxna.</p>", "en": "<p>Dream Weave is an unforgettable art world that tells the stories of more than thirty Finnish books.</p><p>The exhibition’s literary weave reaches back nearly 75 years. There is something for everyone: picture books, fairy tales, pictorial accounts, short stories, novels and non-fiction books. The main focus is on children’s and young adult books, but dreamy adult prose is also included.</p>" }, "short_description": { "fi": "Unikudelmia on elämyksellinen taidemaailma, joka kertoo yli kolmenkymmenen suomalaisen kirjan tarinoita.", "sv": "Drömvävar är en upplevelserik konstvärld som berättar historien om över trettio finska böcker.", "en": "Dream Weave is an unforgettable art world that tells the stories of more than thirty Finnish books." }, "location_extra_info": null, "name": { "fi": "UNIKUDELMIA – Elämyksellinen näyttely suomalaisen kirjallisuuden unista ja unelmista", "sv": "DRÖMVÄVAR – En upplevelserik utställning om drömmar i den finländska litteraturen", "en": "DREAMWEAVING – An exhibition about dreams in Finnish literature" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61805/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61477", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kimmo-pohjonen/", "sv": "https://www.lippu.fi/artist/kimmo-pohjonen/", "en": "https://www.lippu.fi/artist/kimmo-pohjonen/" }, "price": { "fi": "31,5 € + tilausmaksut", "sv": "31,5 € + tilausmaksut", "en": "31,5 € + tilausmaksut" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6304, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-28T14:14:01.309708Z", "last_modified_time": "2024-02-06T13:23:22.743703Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738169.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6304/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-28T14:14:01.276171Z", "last_modified_time": "2024-04-05T17:13:53.393511Z", "date_published": null, "start_time": "2024-03-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/850070FFD8CB163067ED67F059E73663/Kimmo_Pohjonen_UZone", "sv": "http://www.vuotalo.fi/sv/evenemang/event/850070FFD8CB163067ED67F059E73663/Kimmo_Pohjonen_UZone", "en": "http://www.vuotalo.fi/en/events/event/850070FFD8CB163067ED67F059E73663/Kimmo_Pohjonen_UZone" }, "provider": null, "description": { "fi": "<p>Kimmo Pohjonen on yksi harvoista artisteista, joka on onnistunut luomaan sävellyksillään ja omaperäisillä projekteillaan oman genren.</p><p>Pohjosen kysytyin projekti ympäri maailmaa on ollut viimeiset 30 vuotta hänen soolonsa, joka on Pohjosen luovuuden ja löytämisen tärkein laboratorio. <b>UZone</b> on Pohjosen juhlavuonna 2024 esitettävä uusi pääteos, josta hän kertoo seuraavaa:</p><p>”Soolourani keskeisin ajatus on ollut harmonikan soittamisen ja itse soittimeen liittyvien vahvojen stereotypioiden rikkominen. UZone on teos, jossa soittimen äänimaailma ja sävellykset ovat vihdoin sitä mitä harmonikasta itse haluan kuulla.</p><p>”Tämänhetkinen elektro-akustinen harmonikkani on mielestäni monipuolisin soitin mitä osaan kuvitella soittavani. Uuden soittotekniikan avulla soitan useita harmonisia ja rytmisiä kerroksia harmonikalla ja ihmisäänellä samaan aikaan livenä. Oman soundimaailman luominen vaikuttaa yhä voimakkaammin sävellysten monimuotoisuuteen. Harmonikkani ohjaa ääntä, visuaalisia kuvia ja toimii koneena, joka välittää musiikillisia, poliittisia ja uskonnollisia tanssiin kutsuja. <br> <br>”UZone totetuttaa vision josta en osannut villeimmissä unelmissanikaan haaveilla kun aloitin soittamisen 40 vuotta sitten.”</p><p>Konsertin kesto: 70–80 min</p><p>Kimmo Pohjonen, elektro-akustinen harmonikka<br>Sami Tammela, äänisuunnittelu<br>VJ Hellstone, visuaalinen suunnittelu</p><p><i>“Kimmo Pohjonen extends the range of the accordion beyond anything I've previously heard.”</i> ( Songlines)</p><p><i>“The kind of freewheeling performer who could easily have slotted alongside John Zorn and Han Bennink. Inimitable.” </i>(The Guardian)</p><p><i>“Calling Kimmo Pohjonen an accordionist is a bit like describing the Encyclopedia Brittanica as a book.”</i> (The Herald, Scotland)</p><p><i>“The music is sheer physicality…”</i> (New York Times)</p>", "sv": "<p>Kimmo Pohjonen är en av de få artister som har lyckats skapa en egen genre med sina kompositioner och originalprojekt.</p><p>Pohjonens mest efterfrågade projekt över hela världen har under de senaste 30 åren varit hans solo, som är Pohjonens viktigaste laboratorium för kreativitet och upptäckter. UZone är det nya huvudverket för Pohjonens jubileumsår 2024.</p>", "en": "<p>Kimmo Pohjonen is one of the few artists who have managed to create their own genre with their compositions and original projects.</p><p>For the last 30 years, his solo project, which is the most important laboratory for Pohjonen’s creativity and discovery, has been his most in-demand project around the world. UZone is Pohjonen’s new major work to be presented in the jubilee year 2024.</p>" }, "short_description": { "fi": "Kimmo Pohjonen on yksi harvoista artisteista, joka on onnistunut luomaan sävellyksillään ja omaperäisillä projekteillaan oman genren.", "sv": "Kimmo Pohjonen är en av de få artister som har lyckats skapa en egen genre med sina kompositioner och originalprojekt.", "en": "Kimmo Pohjonen is one of the few artists who have managed to create their own genre with their compositions and original projects." }, "location_extra_info": null, "name": { "fi": "Kimmo Pohjonen UZone", "sv": "Kimmo Pohjonen UZone", "en": "Kimmo Pohjonen UZone" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61567", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6867, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T10:12:46.708003Z", "last_modified_time": "2024-02-06T13:23:22.646384Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741377.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6867/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-28T10:12:46.691710Z", "last_modified_time": "2024-04-05T17:13:53.300755Z", "date_published": null, "start_time": "2024-03-15", "end_time": "2024-04-21", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AE862FBCAE132C4F46074D15D6A77F1E/Soile_Kortesalmi_Katseen_kosketuksessa_", "sv": "http://www.stoa.fi/sv/evenemang/event/AE862FBCAE132C4F46074D15D6A77F1E/Soile_Kortesalmi_Katseen_kosketuksessa_", "en": "http://www.stoa.fi/en/events/event/AE862FBCAE132C4F46074D15D6A77F1E/Soile_Kortesalmi_Katseen_kosketuksessa_" }, "provider": null, "description": { "fi": "<p>Stoan parvigalleriassa on esillä kuvataiteilija Soile Kortesalmen maalaamia muotokuvia helsinkiläisistä ikäihmisistä.</p><p><i>”Syntyvä muotokuva ei ole vain kuva, vaan se on jotakin, minkä kautta peilata itseä ja elämää. Maalaustapahtuma on itsessään vaikuttava prosessi, ja kun muotokuva näyttelyn jälkeen ripustetaan kodin seinälle, sen kautta voi löytää uusia keskusteluja palvelutalon henkilökunnan, ystävien ja omaisten kanssa: näin identiteettityö jatkuu, vaikka projekti päättyy.”</i><br>- Soile Kortesalmi</p><p><b>Soile Kortesalmen</b> vahvoissa muotokuvissa yksilö pääsee katseen kautta esille. Katseen kosketuksessa on Kortesalmen rakentama näyttelykokonaisuus, jossa ikäihmisten identiteetti, toimijuus ja kokemusmaailma yhdistyvät katsomisen tarinaksi.</p><p>Kortesalmi on työskennellyt ikäihmisten kanssa muotokuvan keinoin jo vuodesta 2016 asti. Hän on maalannut yli 200 muotokuvaa ja ohjannut omakuvapajoja ikäihmisille. Näyttely on osa hanketta Mimekoto 2, Muotokuva ikäihmisen toimijuuden ja merkityksellisyyden kokemuksen vahvistajana. Vuoden kestävää hanketta rahoittaa Helsingin kaupunki. Mimekoto 2 jatkuu toukokuuhun 2024 asti ja muotokuvattavaksi voi ilmoittautua vielä mukaan.</p>", "sv": "<p>På Stoas balkonggalleri visas bildkonstnären Soile Kortesalmis porträtt målade av äldre människor i Helsingfors.</p><p>På Soile Kortesalmis starka porträtt framstår den avbildade individen via blicken.</p>", "en": "<p>Stoa Balcony Gallery showcases portraits of elderly people from Helsinki by Soile Kortesalmi.</p><p>In Soile Kortesalmi’s powerful portraits, an individual can be seen through eye contact.</p>" }, "short_description": { "fi": "Stoan parvigalleriassa on esillä kuvataiteilija Soile Kortesalmen maalaamia muotokuvia helsinkiläisistä ikäihmisistä.", "sv": "På Stoas balkonggalleri visas bildkonstnären Soile Kortesalmis porträtt målade av äldre människor i Helsingfors.", "en": "Stoa Balcony Gallery showcases portraits of elderly people from Helsinki by Soile Kortesalmi." }, "location_extra_info": null, "name": { "fi": "Soile Kortesalmi: Katseen kosketuksessa", "sv": "Soile Kortesalmi: Katseen kosketuksessa", "en": "Soile Kortesalmi: Katseen kosketuksessa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61567/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61146", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/savoyjazzfest/#calendar-start=2024-03", "sv": "https://www.lippu.fi/artist/savoyjazzfest/#calendar-start=2024-03", "en": "https://www.lippu.fi/artist/savoyjazzfest/#calendar-start=2024-03" }, "price": { "fi": "67/47/37/15 €", "sv": "67/47/37/15 €", "en": "67/47/37/15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 5466, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-13T12:24:34.148204Z", "last_modified_time": "2024-02-06T13:23:20.492124Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738060.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5466/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-13T12:24:33.159152Z", "last_modified_time": "2024-04-05T17:13:52.096340Z", "date_published": null, "start_time": "2024-03-09T18:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4E7471E9ED8244A864F4D21C8222BCA2/Kenny_Garrett_and_Sounds_From_The_Ancestors_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/4E7471E9ED8244A864F4D21C8222BCA2/Kenny_Garrett_and_Sounds_From_The_Ancestors_", "en": "http://www.savoyteatteri.fi/en/events/event/4E7471E9ED8244A864F4D21C8222BCA2/Kenny_Garrett_and_Sounds_From_The_Ancestors_" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "description": { "fi": "<p>Legendaarinen saksofonisti Kenny Garrett Savoy JAZZFestiin</p><p>Maailman arvostetuimpiin alttosaksofonisteihin lukeutuva Kenny Garrett esiintyy Savoy JAZZFestissa lauantaina 9. maaliskuuta. Grammy-palkittu muusikko on urallaan työskennellyt mm. Miles Davisin ja Art Blakeyn kanssa sekä julkaissut yli 20 sooloalbumia.</p><p>Savoy JAZZFestin konsertissa kuullaan kappaleita Garrettin uusimmalta albumilta Sounds from the Ancestors (2021), joka kumartaa Garrettin kotikaupungin Detroitin rikkaalle r&b-, jazz- ja gospel-perinteelle. Samalla levy on kunnianosoitus hänen muusikkoesikuvilleen laulaja Aretha Franklinista pianisti-säveltäjä Chucho Valdésiin. Ylistävät arviot saanut albumi nimettiin yhdeksi vuoden 2021 parhaista jazzlevyistä.</p><p>Garrettin sävellykset sisältävät elementtejä post-bopista, bluesista ja R&B:stä. Hänen soitossaan yhdistyvät virtuoosisuus, melodisuus ja vahva ilmaisuvoima. Savoy-teatterissa hänen kanssaan esiintyvät Corcoran Holt, basso, Rudy Bird, perkussiot, Keith Brown, piano, Ronald Bruner, rummut sekä Melvis Santa, laulu ja koskettimet.</p><p>Kesto n. 1,5 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "sv": "<p>Legendariska saxofonisten Kenny Garrett till Savoy JAZZFest</p><p>Kenny Garrett, en av världens mest uppskattade altsaxofonister, uppträder på Savoy JAZZFest lördagen den 9 mars. Den Grammy-belönade musikern har under sin karriär jobbat med bland annat Miles Davis och Art Blakey och släppt över 20 soloalbum.</p><p>Under konserten på Savoy JAZZFest får vi höra låtar från Garretts senaste album, Sounds from the Ancestors (2021), som bugar sig för den rika R&B-, jazz- och gospeltraditionen i Garretts hemstad Detroit. Albumet är på samma gång en hyllning till Garretts musikaliska förebilder, från sångerskan Aretha Franklin till pianisten och kompositören Chucho Valdés. Det hyllade albumet utsågs till ett av de bästa jazzalbumen 2021.</p><p>I Garretts kompositioner hörs inslag av post-bop, blues och R&B. Hans spelande är en mix av virtuositet, melodiskhet och uttrycksfullhet. På Savoyteatern uppträder han tillsammans med Corcoran Holt, bas, Rudy Bird, perkussioner, Keith Brown, piano, Ronald Bruner, trummor samt Melvis Santa, sång och keyboard.</p><p>Längd ca 1,5 h, utan paus.</p><p>Parkett utskänkningsområde, åldersgräns 18 år. Läktare T, ingen utskänkning.</p>", "en": "<p>Legendary saxophonist Kenny Garrett to Savoy JAZZFest</p><p>Kenny Garrett, one of the world’s most renowned alto saxophonists, to perform at Savoy JAZZFest on Saturday 9 March. The Grammy Award-winning musician has worked, for example, with Miles Davis and Art Blakey, and released more than 20 solo albums.</p><p>Savoy JAZZFest will feature tracks from Garrett’s latest album Sounds from the Ancestors (2021), which pays homage to the rich R&B, jazz and gospel tradition of Garrett’s hometown Detroit. The album is also a tribute to his musical role models, from singer Aretha Franklin to pianist-composer Chucho Valdés. The album, which received rave reviews, was named one of the best jazz albums of 2021.</p><p>Garrett’s compositions include elements of post bop, blues and R&B. His playing combines virtuosity, melodicism and strong expressiveness. At Savoy Theatre, he will perform with Corcoran Holt on bass, Rudy Bird on percussions, Keith Brown on piano, Ronald Bruner on drums and Melvis Santa on vocals and keyboards.</p><p>Duration is about 1.5 h, no interval.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>" }, "short_description": { "fi": "Legendaarinen saksofonisti Kenny Garrett Savoy JAZZFestiin", "sv": "Legendariska saxofonisten Kenny Garrett till Savoy JAZZFest", "en": "Legendary saxophonist Kenny Garrett to Savoy JAZZFest" }, "location_extra_info": null, "name": { "fi": "Kenny Garrett and Sounds From The Ancestors – Savoy JAZZFest 6.-9.3.2024", "sv": "Kenny Garrett and Sounds From The Ancestors – Savoy JAZZFest 6.-9.3.2024", "en": "Kenny Garrett and Sounds From The Ancestors – Savoy JAZZFest 6.-9.3.2024" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61146/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61804", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3560835", "sv": "https://www.lippu.fi/eventseries/name-3560835", "en": "https://www.lippu.fi/eventseries/name-3560835" }, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-28T13:14:24.005312Z", "last_modified_time": "2024-02-06T13:23:20.096059Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739578.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-28T13:14:23.966080Z", "last_modified_time": "2024-04-05T17:13:52.033747Z", "date_published": null, "start_time": "2024-03-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/2AB3E15016E6BBF8FD4D2077A2983322/Unreality-kuoro", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/2AB3E15016E6BBF8FD4D2077A2983322/Unreality-koren", "en": "http://www.kanneltalo.fi/en/events/event/2AB3E15016E6BBF8FD4D2077A2983322/Unreality-choir" }, "provider": null, "description": { "fi": "<p>Unreality on Suomen ensimmäinen elokuva-, televisiosarja- ja videopelimusiikkiin erikoistunut sekakuoro.</p><p>Päivät pitenevät taas, ja lisääntyvä valo herättää tunteet eloon. Astu sydämen poluille ja poimi ruusu rakkaallesi, osta se kauan haaveilemasi jahti tai nauti vain kynttilän lailla lämmittävästä arjesta.</p><p>Suomen ensimmäinen soundtrack-musiikkiin erikoistunut sekakuoro Unreality esittää monimuotoisen tarjoilun suurten tunteiden sävelmiä, joiden lähteinä ovat mm. Shingeki no Kyojin, Poldark sekä Aggretsuko. Kuoroa johtaa Jari Koivistoinen.</p><p>Kesto: 1 t<br>Ikäsuositus: kaikenikäisille</p>", "sv": "<p>Unreality är Finlands första blandade kör som specialiserar sig på musik från filmer, TV-serier och videospel.</p><p>Unreality-kören har dirigerats av Jari Koivistonen sedan år 2017.</p>", "en": "<p>Unreality is Finland's first mixed choir that specialises in film, TV and game music.</p><p>Unreality choir has been led by Jari Koivistoinen since 2017.</p>" }, "short_description": { "fi": "Unreality on Suomen ensimmäinen elokuva-, televisiosarja- ja videopelimusiikkiin erikoistunut sekakuoro.", "sv": "Unreality är Finlands första blandade kör som specialiserar sig på musik från filmer, TV-serier och videospel.", "en": "Unreality is Finland's first mixed choir that specialises in film, TV and game music." }, "location_extra_info": null, "name": { "fi": "Unreality-kuoro – Heart Avenue – sydämen polut", "sv": "Unreality-kören", "en": "Unreality-choir" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61804/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61748", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/vuotalo/narinkka-klezmerkuvia-itae-helsingistae-3558152/", "sv": "https://www.lippu.fi/artist/vuotalo/narinkka-klezmerkuvia-itae-helsingistae-3558152/", "en": "https://www.lippu.fi/artist/vuotalo/narinkka-klezmerkuvia-itae-helsingistae-3558152/" }, "price": { "fi": "20 € / 15 € + tilausmaksut", "sv": "20 € / 15 € + tilausmaksut", "en": "20 € / 15 € + tilausmaksut" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6820, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-12-27T07:13:55.121317Z", "last_modified_time": "2024-02-06T13:23:20.186553Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_742797.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6820/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-12-27T07:13:55.097121Z", "last_modified_time": "2024-04-05T17:13:51.926906Z", "date_published": null, "start_time": "2024-03-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/75B6956BA2EBF369623B82B2FB1F6A4E/Narinkka_Klezmerkuvia_Ita-Helsingista_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/75B6956BA2EBF369623B82B2FB1F6A4E/Narinkka_Klezmermotiv_fran_Ostra_Helsingfors_", "en": "http://www.vuotalo.fi/en/events/event/75B6956BA2EBF369623B82B2FB1F6A4E/Narinkka_Klezmer_photos_of_eastern_Helsinki_" }, "provider": null, "description": { "fi": "<p>Miltä Uutela kuullostaa suomalaisen klezmermusiikin sävyin?</p><p>Kolmannen albuminsa julkaisukiertueen konsertissa kansainvälisesti menestynyt itähelsinkiläinen suomiklezmeryhtye Narinkka kuvittaa Itä-Helsinkimme tuttuja ja rakkaita seutuja klezmermusiikin keinoin – omaan rempseään tyylinsä<br> <br>Omat raikkaat kuvansa saavat mm. Vartsika (Tango de Vartsika), Puotilan ostari, Uutela (Uutela Tanz) ja Roihis (A Lovescene in Roihuvuori Shopping Center). Melodiset, tunnelmaa täynnä olevat ja välillä riehakkaatkin perinteiset klezmerkappaleet sitovat illan kokonaisuuden.<br> <br>Tämä on itähelsinkiläisyyden ja klezmerin juhlailta Vuotalossa!<br> <br>Sampo Lassila, kontrabasso ja sävellykset<br>Aleksi Trygg, viola pomposa<br>Markku Lepistö, harmonikka<br>Janne Tuomi, matkalaukut ja lyömäsoittimet</p><p>Ikäsuositus: K-18 – Klubi-ilta, A-oikeudet. Kahvila Pokkari vastaa tarjoiluista.</p><p>Alle 18-vuotiaat sisään vain huoltajan tai vanhemman seurassa.</p><p>Kesto: 1 t 50 min, sis. väliajan 20 min</p>", "sv": "<p>Hur låter Uutela som finländsk klezmermusik?</p><p>Det internationellt framgångsrika finländska klezmerbandet Narinkka från Östra Helsingfors turnerar i samband med sitt tredje albumsläpp. På konserten målar de upp välbekanta och kära trakter i Östra Helsingfors med hjälp av klezmermusik – i sin egen lättsamma stil.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari.</p>", "en": "<p>What does Uutela sound like with a touch of Finnish klezmer music?</p><p>In this concert, during its third album release tour, the internationally successful eastern Helsinki-based Finnish klezmer band Narinkka will depict familiar and beloved neighbourhoods in eastern Helsinki through klezmer music in its own distinctive style.</p><p>Club-Night, A-rights, servicde by Café Pokkari.</p>" }, "short_description": { "fi": "Miltä Uutela kuullostaa suomalaisen klezmermusiikin sävyin?", "sv": "Hur låter Uutela som finländsk klezmermusik?", "en": "What does Uutela sound like with a touch of Finnish klezmer music?" }, "location_extra_info": null, "name": { "fi": "Narinkka: Klezmerkuvia Itä-Helsingistä! – Klubi-ilta", "sv": "Narinkka: Klezmermotiv från Östra Helsingfors! – Klubbkväll", "en": "Narinkka: Klezmer photos of eastern Helsinki! – Club Night" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61748/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61268", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "sv": "https://www.lippu.fi/artist/stoa/satakieli-3542913/", "en": "https://www.lippu.fi/artist/stoa/satakieli-3542913/" }, "price": { "fi": "24 € / 15 € / 10 €", "sv": "24 € / 15 € / 10 €", "en": "24 € / 15 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6184, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-23T12:13:18.492618Z", "last_modified_time": "2024-02-06T13:23:20.006675Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739156.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6184/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-23T12:13:18.474522Z", "last_modified_time": "2024-04-05T17:13:51.868022Z", "date_published": null, "start_time": "2024-03-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/99D0F3504A2EC9DF5512A77C6DDC3204/Susanna_Leinonen_Company_Satakieli_", "sv": "http://www.stoa.fi/sv/evenemang/event/99D0F3504A2EC9DF5512A77C6DDC3204/Susanna_Leinonen_Company_Naktergal_", "en": "http://www.stoa.fi/en/events/event/99D0F3504A2EC9DF5512A77C6DDC3204/Susanna_Leinonen_Company_Nightingale" }, "provider": null, "description": { "fi": "<p>Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.</p><p>Iän tuomasta viisaudesta ja elämänkokemuksesta kumpuava voima yhdistyy koreografi <b>Susanna Leinosen</b> vahvaan ja ilmaisuvoimaiseen liikkeeseen. Teos avaa ikkunan sielun maisemiin, jossa liike ja ääni käyvät vuoropuhelua elämän ja kuoleman välillä. Tanssijoiden ääniohjauksesta on vastannut näyttelijä-laulaja <b>Eija Ahvo</b> ja teoksen musiikin on säveltänyt <b>Kasperi Laine</b>.</p><p>Stoassa kantaesityksensä 2.3. saava Satakieli muistuttaa meitä siitä, että elämän arvokkaimmat hetket voivat tapahtua luopumisen keskellä. Satakieli on kunnianosoitus elämälle ja muistutus siitä, että jokainen hetki on merkityksellinen.</p><p>Susanna Leinonen Companyn aiemmat Tanssitaidetta ikäihmisille -hankkeen teokset Juuret (2022) Ja Arvo (2023) ovat osa Helsingin kaupungin iäkkäiden ihmisten kulttuuritoiminnan edistämishanketta.</p><p>Koreografia: Susanna Leinonen<br>Ääniohjaus: Eija Ahvo<br>Musiikki: Kasperi Laine</p><p>Kesto n. 50 min.</p><p>Esitysten jälkeen järjestetään yleisökeskustelu, moderaattorina toimii Susanna Leinonen, kesto max 30 min.</p>", "sv": "<p>Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.</p><p>Kraften från den vishet och livserfarenhet som ålderdomen för med sig förenas med koreografen Susanna Leinonens starka och uttrycksfulla rörelse.</p>", "en": "<p>Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories.</p><p>The power that comes from the wisdom and life experiences brought on by age is combined with the strong and expressive movement of Choreographer Susanna Leinonen.</p>" }, "short_description": { "fi": "Susanna Leinonen Companyn uusi ikäihmisten ja ammattitanssijoiden yhteisteos Satakieli kietoo eri sukupolvien tanssijoiden koskettavat tarinat yhteen.", "sv": "Susanna Leinonen Companys nya gemensamma verk \"Näktergal\" av äldre människor och proffsdansare tar åskådaren med på en resa som förenar olika generationer genom att knyta ihop deras gripande berättelser.", "en": "Susanna Leinonen Company’s new piece Satakieli is performed by seniors and professional dancers. It takes the viewer on a journey that unites different generations by intertwining their touching stories." }, "location_extra_info": null, "name": { "fi": "Susanna Leinonen Company: Satakieli", "sv": "Susanna Leinonen Company: Näktergal", "en": "Susanna Leinonen Company: Nightingale" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61268/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61465", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/naekymaettoemyyksiae-3550882/" }, "price": { "fi": "10 € / 7 €", "sv": "10 € / 7 €", "en": "10 € / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 6299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-28T13:13:00.946672Z", "last_modified_time": "2024-02-06T13:23:19.912240Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_740467.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/6299/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-11-28T13:13:00.926343Z", "last_modified_time": "2024-04-05T17:13:51.802635Z", "date_published": null, "start_time": "2024-03-09T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/998F02C2115579D73FEFF9F14DEE522F/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_tyoryhma_Kinesfaareja_", "sv": "http://www.caisa.fi/sv/evenemang/event/998F02C2115579D73FEFF9F14DEE522F/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_arbetsgruppen_Kinesfaareja", "en": "http://www.caisa.fi/en/events/event/998F02C2115579D73FEFF9F14DEE522F/Fri_Nilas_Lindell_Tutkimusasema_Nunatak_Jasmiina_Sipila_working_group_Kinesfaareja" }, "provider": null, "description": { "fi": "<p>Tanssitaiteen tapahtuman Näkymättömyyksiä teosten teemoja ovat kosketukseen liittyvät oletukset, ihmisten välinen kommunikaatio sekä tilan käyttö.</p><p>Huom! Kahden teoksen yhteislipun lisäksi myynnissä on lippuja pelkkään ensimmäisenä esitettävään Kinesfäärejä -teokseen.</p><p>Lauantain 9.3. esitykset kuvailutulkataan näkörajoitteisille suomeksi ja niiden jälkeen järjestetään lipun hintaan kuuluva taiteilijatapaaminen ja kahvihetki tarjoiluineen.</p><p><b>Kinesfäärejä</b><br>Kinesfäärejä on syntynyt tanssin ja äänen tuottamisen kehollisen kokemuksen tutkimisesta. Kinesfääri on kolmiulotteinen tila, jossa liikkeen ja äänen voi aistia oman itsen ympärillä.</p><p>Teoksen työryhmä on tutkinut kosketusta ja sen laatuja sekä kysymystä, miten lähestyä kosketuksen kanssa työskentelyä turvallisemman tilan periaatteiden kautta. Teoksessa kosketus on myös kehon soittamisen ja äänen tuottamisen keino.</p><p>Teoksessa tanssijoilla on jaettu ymmärrys yhteisestä matkasta teoksen läpi. Kuitenkin yksilöllinen liike- ja äänitutkimus ja omat improvisatoriset ratkaisut säilyvät matkan aikana.</p><p>Teos on toteutettu osana Ammattiopisto Liven tanssialan koulutusohjelman opintoja. Tutkinto on Suomen ainoa erityisopetuksena tarjottu tanssialan ammatillinen tutkinto. Kinesfäärejä on taidepedagoginen tanssiteos, jossa lavalla nähdään tanssialan koulutusohjelman opiskelijoita.</p><p>Koreografia: Jasmiina Sipilä<br>Äänisuunnittelu sekä kehorytmit ja -musiikit: Hannaleena Markkanen<br>Tanssin ammatillinen ohjaaja: Hanna Heino<br>Tanssijat: Jaakko Kuikka, Miika Luukko, Emmi Mäkelä, Helmi Niemi, Ana Khalili, Kadar Khristan, Tette Karila ja Hanna Heino</p><p>Kesto: 35 min</p><p><b>Tutkimusasema Nunatak</b><br>Tutkimusasema Nunatak on kokemuksellinen ja osallistuva installaatio.</p><p>Sana ’nunatak’ tarkoittaa jäätiköstä esiin työntyvää kivikkoharjannetta tai vuorenhuippua. Nunatak on kuin saari jäätyneessä valtameressä, eristynyt mutta myös paikka, jossa on mahdollista elää. Tila, jossa on omanlaisensa eläimistö ja kasvisto. Turvasatama, jossa voi hengittää ja josta voi lähteä tutkimaan ympäröivää maailmaa.<br> <br>Installaatiossa pääset tutkimaan tilan käsitettä; miten tilat syntyvät, millaisia tiloja voimme itse luoda, miten voimme vaikuttaa tilan luomiseen, millaisissa tiloissa on hyvä olla, kuinka tilat voivat laajentaa normeja. Tila voi olla esimerkiksi fyysinen tila, mielentila, muisto, jotain mitä syntyy, kun kaksi olentoa kohtaavat. <br> <br>Installaatioon voi osallistua haluamallaan tavalla. Kaikki tavat tehdä omaa tutkimusmatkaa ovat oikeita. Installaation ja loppukeskustelun aikana ei tarvitse puhua tai ottaa kontaktia muihin osallistujiin. Myös pelkkä rauhallinen oleskelu omassa tilassa on mahdollista.</p><p>Tutkimusasema Nunatak pohjautuu Fri Nilas Lindellin tanssisooloon ”Nunatak - Liikkeellinen Runo Tiloista” (2022).</p><p>Ota halutessasi mukaan omat muistiinpanovälineet. Paperia ja kyniä löytyy myös tilasta.<br> <br>Työryhmä: Fri Nilas Lindell, Hanna Heino, Topi Hurtig</p><p>Kesto: 35-45 min</p><p><b>Fri Nilas Lindell</b> valmistui tanssijaksi Ammattiopisto Liveltä joulukuusssa 2022. Ammattiopisto Live on Suomen ainoa erityisoppilaitos, jossa voi opiskella tanssialan perustutkinnon. Syyskuussa 2023 Lindell oli mukana Janina Rajakangas Projektin Tanssija -teoksessa Kiasma teatterilla neurokirjon kokemusasiantuntijana.</p><p><i>”Minua kiinnostaa tanssissa, miten taiteen ja liikkeen avulla voi saada kosketusta johonkin syvään kerrokseen mihin ei muuten pääse. Haluan edesauttaa tanssin inklusiivisuutta ja kaikkien mahdollisuutta saada sekä kokea, että tehdä tanssia.”</i></p><p>Teosten yhteiskesto: n. 1 t 35 min (sis. 20 min väliajan) + taiteilijatapaaminen (lauantai 9.3. klo 16:45)</p>", "sv": "<p>Teman i danskonstevenemanget Osynligheter är antagandena om beröring, kommunikation mellan människor och användning av utrymme.</p><p><b>Fri Nilas Lindells </b>soloverk <i>Nunatak</i> undersöker vilka utrymmen vi skapar, vad vi bygger utrymmena av och om man kan utvidga normerna med olika utrymmen. Föreställningen uppmuntrar upplevaren att fundera över hurdana utrymmen och av vilken kvalitet man har i sin vardag och hur de uppstår.</p><p><b>Jasmina Sipiläs</b> koreografi för studerandena inom Ammattiopisto Lives utbildningsprogram för dansbranschen <i>KINESFÄR</i> har uppkommit genom att koreografen undersökt den fysiska erfarenheten av dans och ljudproduktion. Det är ett tredimensionellt utrymme där man kan känna rörelsen och ljudet omkring sig.</p>", "en": "<p>Themes of the dance art event Näkymättömyyksiä include assumptions related to touch, communication between people and the use of space.</p><p>Note! In addition to the joint ticket for the two pieces, there are also tickets for only Kinesfäärejä, which will be performed first.</p><p><b>Fri Nilas Lindell’s</b> solo piece <i>Nunatak</i> explores the kind of spaces we create, what we create spaces from, and whether different types of spaces can extend the norms. The performance encourages the experiencer to consider what kind and quality of spaces their everyday life has and how the spaces are created.</p><p><i>KINESFÄÄREJÄ</i>, choreographed by <b>Jasmiina Sipilä</b> for students of Live Vocational College’s dance programme, emerged from the study of the bodily experience of dance and sound production. It is a three-dimensional space where you can sense movement and sound around you.</p>" }, "short_description": { "fi": "Tanssitaiteen tapahtuman Näkymättömyyksiä teosten teemoja ovat kosketukseen liittyvät oletukset, ihmisten välinen kommunikaatio sekä tilan käyttö.", "sv": "Teman i danskonstevenemanget Osynligheter är antagandena om beröring, kommunikation mellan människor och användning av utrymme.", "en": "Themes of the dance art event Näkymättömyyksiä include assumptions related to touch, communication between people and the use of space." }, "location_extra_info": null, "name": { "fi": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & työryhmä: Kinesfäärejä – Osana Näkymättömyyksiä -tanssitaiteen tapahtumaa", "sv": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & arbetsgruppen: Kinesfäärejä – Osynligheter | Danskonstevenemang", "en": "Fri Nilas Lindell: Tutkimusasema Nunatak | Jasmiina Sipilä & working group: Kinesfäärejä – Invisibilities | Dance art event" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61465/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }