diff --git a/.opencode/DATA_PRESERVATION_RULES.md b/.opencode/DATA_PRESERVATION_RULES.md new file mode 100644 index 0000000000..d18b7290d9 --- /dev/null +++ b/.opencode/DATA_PRESERVATION_RULES.md @@ -0,0 +1,349 @@ +# Data Preservation Rules for AI Agents + +**Version**: 1.0 +**Created**: 2025-11-28 +**Status**: MANDATORY + +--- + +## đ¨ CRITICAL RULE: NEVER DELETE ENRICHED DATA + +**Data enrichment is ADDITIVE ONLY.** + +When AI agents restructure, update, or refactor enriched institution records, they MUST preserve ALL existing enriched content. This rule has NO exceptions. + +--- + +## Protected Data Sources + +The following data sources contain enriched content that MUST NEVER be deleted: + +### 1. Google Maps Enrichment + +**Protected Fields**: +```yaml +google_maps_enrichment: + place_id: "ChIJ..." # NEVER DELETE + rating: 4.5 # NEVER DELETE + total_ratings: 127 # NEVER DELETE + reviews: [...] # NEVER DELETE + photo_count: 45 # NEVER DELETE + popular_times: {...} # NEVER DELETE + business_status: "OPERATIONAL" # NEVER DELETE + address_components: [...] # NEVER DELETE + opening_hours: {...} # NEVER DELETE + website: "https://..." # NEVER DELETE + phone: "+31..." # NEVER DELETE +``` + +**Why This Data Is Valuable**: +- Reviews contain visitor experiences and heritage descriptions +- Ratings indicate public engagement with heritage sites +- Photo counts show visual documentation availability +- Popular times reveal visitor patterns for heritage planning +- Historical snapshots capture changing institutional data + +### 2. OpenStreetMap Enrichment + +**Protected Fields**: +```yaml +osm_enrichment: + osm_id: 12345678 # NEVER DELETE + osm_type: "way" # NEVER DELETE + osm_tags: # NEVER DELETE + heritage: "2" + building: "museum" + amenity: "museum" + name: "..." + operator: "..." + geometry: {...} # NEVER DELETE + centroid: [lat, lon] # NEVER DELETE +``` + +**Why This Data Is Valuable**: +- OSM tags contain community-verified heritage classifications +- Geometry enables spatial analysis and mapping +- Heritage tags indicate official heritage status + +### 3. Wikidata Enrichment + +**Protected Fields**: +```yaml +wikidata_enrichment: + wikidata_id: "Q12345" # NEVER DELETE + claims: {...} # NEVER DELETE + sitelinks: {...} # NEVER DELETE + aliases: [...] # NEVER DELETE + descriptions: {...} # NEVER DELETE + labels: {...} # NEVER DELETE + instance_of: [...] # NEVER DELETE + part_of: [...] # NEVER DELETE + coordinate_location: {...} # NEVER DELETE +``` + +**Why This Data Is Valuable**: +- Wikidata IDs are persistent identifiers in the Linked Open Data ecosystem +- Claims contain structured facts about institutions +- Sitelinks connect to Wikipedia articles in multiple languages + +### 4. Website Scrape Data + +**Protected Fields**: +```yaml +website_enrichment: + fetch_timestamp: "..." # NEVER DELETE + fetch_status: "SUCCESS" # NEVER DELETE + source_url: "https://..." # NEVER DELETE + + organization_details: # NEVER DELETE + full_name: "..." + short_name: "..." + legal_form: "..." + founded: "..." + kvk_number: "..." + anbi_status: true + + collections: [...] # NEVER DELETE + exhibitions: [...] # NEVER DELETE + opening_hours: {...} # NEVER DELETE + contact: {...} # NEVER DELETE + social_media: {...} # NEVER DELETE + accessibility: {...} # NEVER DELETE + staff: [...] # NEVER DELETE + publications: [...] # NEVER DELETE +``` + +**Why This Data Is Valuable**: +- Website scrapes capture institutional self-descriptions +- Collection information enables heritage discovery +- Contact details enable institutional verification +- Historical scrapes show how institutions evolve + +### 5. ISIL Registry Data + +**Protected Fields**: +```yaml +isil_enrichment: + isil_code: "NL-..." # NEVER DELETE + assigned_date: "2020-01-15" # NEVER DELETE + remarks: "..." # NEVER DELETE + registry_entry: {...} # NEVER DELETE +``` + +--- + +## Allowed Operations + +### â RESTRUCTURING (Preserving All Content) + +You MAY reorganize data structure while keeping all values: + +```yaml +# BEFORE (flat) +google_rating: 4.5 +google_reviews: 127 +osm_heritage_tag: "2" + +# AFTER (nested) - ALLOWED if ALL values preserved +enrichment: + google_maps: + rating: 4.5 # â Same value + reviews: 127 # â Same value + osm: + heritage: "2" # â Same value +``` + +### â ADDING NEW DATA + +You MAY add new fields or enrichment sources: + +```yaml +# BEFORE +website_enrichment: + organization_details: {...} + +# AFTER - ALLOWED (added new section) +website_enrichment: + organization_details: {...} # â Original preserved + new_section: # â New addition + additional_data: "..." +``` + +### â FILE RENAMING + +You MAY rename files to be more descriptive: + +```bash +# ALLOWED +mv 0139_unknown.yaml 0139_de_hollandse_cirkel.yaml +``` + +### â MERGING SOURCES + +You MAY merge data from multiple sources while preserving all: + +```yaml +# Source A +website_enrichment: + organization_details: {...} + +# Source B +google_maps_enrichment: + rating: 4.5 + +# MERGED - ALLOWED (both preserved) +enrichment: + website: + organization_details: {...} # â From Source A + google_maps: + rating: 4.5 # â From Source B +``` + +--- + +## Forbidden Operations + +### â DELETION + +**NEVER delete enriched content:** + +```yaml +# BEFORE +google_maps_enrichment: + rating: 4.5 + reviews: 127 + popular_times: {...} + +# AFTER - FORBIDDEN! +enrichment_status: enriched +# Where did rating, reviews, popular_times go?! +``` + +### â SUMMARIZATION + +**NEVER replace detailed data with summaries:** + +```yaml +# BEFORE +reviews: + - text: "Amazing collection of historical documents..." + rating: 5 + author: "Jan de Vries" + date: "2024-03-15" + - text: "Small but well-curated museum..." + rating: 4 + author: "Marie Jansen" + date: "2024-02-20" + +# AFTER - FORBIDDEN! +reviews_summary: "Generally positive reviews (avg 4.5)" +# Original review text is LOST! +``` + +### â TRUNCATION + +**NEVER truncate long content:** + +```yaml +# BEFORE +description: | + The museum was founded in 1892 by Count Willem van der Berg, + who donated his extensive collection of medieval manuscripts... + [500 more words of historical detail] + +# AFTER - FORBIDDEN! +description: "The museum was founded in 1892..." +# Historical detail is LOST! +``` + +### â OVERWRITING + +**NEVER overwrite existing enrichment with new data:** + +```yaml +# BEFORE (scraped 2024-06-01) +website_enrichment: + fetch_timestamp: "2024-06-01T..." + organization_details: + staff_count: 45 + +# AFTER (scraped 2024-11-28) - FORBIDDEN! +website_enrichment: + fetch_timestamp: "2024-11-28T..." + organization_details: + staff_count: 52 +# June scrape data is LOST! + +# CORRECT approach - preserve history: +website_enrichment_history: + - fetch_timestamp: "2024-06-01T..." + organization_details: + staff_count: 45 + - fetch_timestamp: "2024-11-28T..." + organization_details: + staff_count: 52 +``` + +--- + +## Verification Checklist + +Before writing ANY enriched file, agents MUST verify: + +- [ ] **Read First**: Did I read the entire file before editing? +- [ ] **Field Count**: Does the new file have >= the same number of fields? +- [ ] **Data Preservation**: Is every piece of enriched data from the original still present? +- [ ] **No Summaries**: Did I avoid summarizing or truncating any content? +- [ ] **Timestamps Preserved**: Are all fetch/scrape timestamps still present? +- [ ] **Reviews Intact**: If reviews existed, are ALL reviews still present? +- [ ] **Metadata Intact**: Are all IDs (place_id, osm_id, wikidata_id) preserved? + +--- + +## Recovery Procedures + +If data loss is detected: + +1. **Check Git History**: `git log --oneline -- path/to/file.yaml` +2. **Restore Previous Version**: `git checkout HEAD~1 -- path/to/file.yaml` +3. **Document Incident**: Note which agent/session caused the data loss +4. **Merge Correctly**: Manually merge the lost data with any valid new additions + +--- + +## Rationale + +**Why is this rule so strict?** + +1. **Cost of Collection**: + - Google Maps API calls cost money and have rate limits + - Website scraping takes time and may be blocked + - Wikidata queries have usage quotas + - Re-collecting data wastes resources + +2. **Historical Value**: + - Heritage institutions change over time + - Historical snapshots enable temporal analysis + - Old reviews may reference events no longer on websites + +3. **Data Provenance**: + - Linked Data principles require traceability + - Deleting source data breaks the provenance chain + - Academic citations may reference specific versions + +4. **Community Trust**: + - Users expect stable, growing datasets + - Data loss undermines confidence in the project + - Heritage professionals depend on comprehensive records + +--- + +## References + +- **AGENTS.md**: Rule 5 - NEVER Delete Enriched Data +- **W3C PROV-O**: https://www.w3.org/TR/prov-o/ +- **FAIR Principles**: https://www.go-fair.org/fair-principles/ + +--- + +**Remember**: When in doubt, PRESERVE everything. It's always possible to add data later, but deleted data may be gone forever. diff --git a/AGENTS.md b/AGENTS.md index 98c9c966b0..a11134fa7d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -222,6 +222,80 @@ Mansion: **Each aspect changes independently over time!** +### Rule 5: NEVER Delete Enriched Data - Additive Only + +**đ¨ CRITICAL: Data enrichment is ADDITIVE ONLY. Never delete or overwrite existing enriched content.** + +When restructuring or updating enriched institution records: + +**â ALLOWED (Additive Operations)**: +- Add new fields or sections +- Restructure YAML/JSON layout while preserving all content +- Rename files (e.g., `_unknown.yaml` â `_museum_name.yaml`) +- Add provenance metadata +- Merge data from multiple sources (preserving all) + +**â FORBIDDEN (Destructive Operations)**: +- Delete Google Maps data (reviews, ratings, photo counts, popular times) +- Remove OpenStreetMap metadata +- Overwrite website scrape results +- Delete Wikidata enrichment data +- Remove any `*_enrichment` sections +- Truncate or summarize detailed content + +**Data Types That Must NEVER Be Deleted**: + +| Data Source | Protected Fields | +|-------------|------------------| +| **Google Maps** | `reviews`, `rating`, `total_ratings`, `photo_count`, `popular_times`, `place_id`, `business_status` | +| **OpenStreetMap** | `osm_id`, `osm_type`, `osm_tags`, `amenity`, `building`, `heritage` | +| **Wikidata** | `wikidata_id`, `claims`, `sitelinks`, `aliases`, `descriptions` | +| **Website Scrape** | `organization_details`, `collections`, `exhibitions`, `contact`, `social_media`, `accessibility` | +| **ISIL Registry** | `isil_code`, `assigned_date`, `remarks` | + +**Example - CORRECT Restructuring**: + +```yaml +# BEFORE (flat structure) +google_maps_rating: 4.5 +google_maps_reviews: 127 +website_description: "Historic museum..." + +# AFTER (nested structure) - ALL DATA PRESERVED +enrichment_sources: + google_maps: + rating: 4.5 # â PRESERVED + reviews: 127 # â PRESERVED + website: + description: "Historic museum..." # â PRESERVED +``` + +**Example - WRONG (Data Loss)**: + +```yaml +# BEFORE +google_maps_enrichment: + rating: 4.5 + reviews: 127 + popular_times: {...} + photos: [...] + +# AFTER - WRONG! Data deleted! +enrichment_status: enriched +# Where did the rating, reviews, popular_times go?! +``` + +**Rationale**: +- Enriched data is expensive to collect (API calls, rate limits, web scraping) +- Google Maps data changes over time - historical snapshots are valuable +- Reviews and ratings provide quality signals for heritage institutions +- Photo metadata enables visual discovery and verification +- Deleting data violates data provenance principles + +**If Unsure**: When restructuring files, first READ the entire file, then WRITE a new version that includes ALL original content in the new structure. + +--- + ### Rule 4: Technical Classes Are Excluded from Visualizations **Some LinkML classes exist solely for validation purposes and have NO semantic significance.** diff --git a/data/nde/enriched/entries/0017_unknown.yaml b/data/nde/enriched/entries/0017_harmonium_museum_nederland.yaml similarity index 100% rename from data/nde/enriched/entries/0017_unknown.yaml rename to data/nde/enriched/entries/0017_harmonium_museum_nederland.yaml diff --git a/data/nde/enriched/entries/0018_unknown.yaml b/data/nde/enriched/entries/0018_historische_vereniging_carspel_oderen.yaml similarity index 100% rename from data/nde/enriched/entries/0018_unknown.yaml rename to data/nde/enriched/entries/0018_historische_vereniging_carspel_oderen.yaml diff --git a/data/nde/enriched/entries/0019_unknown.yaml b/data/nde/enriched/entries/0019_de_wieker_meule.yaml similarity index 100% rename from data/nde/enriched/entries/0019_unknown.yaml rename to data/nde/enriched/entries/0019_de_wieker_meule.yaml diff --git a/data/nde/enriched/entries/0020_unknown.yaml b/data/nde/enriched/entries/0020_roel_van_der_sleen.yaml similarity index 100% rename from data/nde/enriched/entries/0020_unknown.yaml rename to data/nde/enriched/entries/0020_roel_van_der_sleen.yaml diff --git a/data/nde/enriched/entries/0021_unknown.yaml b/data/nde/enriched/entries/0021_historische_vereniging_nijeveen.yaml similarity index 100% rename from data/nde/enriched/entries/0021_unknown.yaml rename to data/nde/enriched/entries/0021_historische_vereniging_nijeveen.yaml diff --git a/data/nde/enriched/entries/0028_unknown.yaml b/data/nde/enriched/entries/0028_aold_daoln.yaml similarity index 100% rename from data/nde/enriched/entries/0028_unknown.yaml rename to data/nde/enriched/entries/0028_aold_daoln.yaml diff --git a/data/nde/enriched/entries/0031_unknown.yaml b/data/nde/enriched/entries/0031_onderduikersmuseum_de_duikelaar.yaml similarity index 100% rename from data/nde/enriched/entries/0031_unknown.yaml rename to data/nde/enriched/entries/0031_onderduikersmuseum_de_duikelaar.yaml diff --git a/data/nde/enriched/entries/0032_unknown.yaml b/data/nde/enriched/entries/0032_oudheidkamer_zuidwolde.yaml similarity index 100% rename from data/nde/enriched/entries/0032_unknown.yaml rename to data/nde/enriched/entries/0032_oudheidkamer_zuidwolde.yaml diff --git a/data/nde/enriched/entries/0034_unknown.yaml b/data/nde/enriched/entries/0034_rolder_historisch_gezelschap.yaml similarity index 100% rename from data/nde/enriched/entries/0034_unknown.yaml rename to data/nde/enriched/entries/0034_rolder_historisch_gezelschap.yaml diff --git a/data/nde/enriched/entries/0035_unknown.yaml b/data/nde/enriched/entries/0035_ruinen_1865.yaml similarity index 100% rename from data/nde/enriched/entries/0035_unknown.yaml rename to data/nde/enriched/entries/0035_ruinen_1865.yaml diff --git a/data/nde/enriched/entries/0036_unknown.yaml b/data/nde/enriched/entries/0036_historie_van_ruinerwold.yaml similarity index 100% rename from data/nde/enriched/entries/0036_unknown.yaml rename to data/nde/enriched/entries/0036_historie_van_ruinerwold.yaml diff --git a/data/nde/enriched/entries/0040_unknown.yaml b/data/nde/enriched/entries/0040_museum_contemporary_tibetan_art.yaml similarity index 100% rename from data/nde/enriched/entries/0040_unknown.yaml rename to data/nde/enriched/entries/0040_museum_contemporary_tibetan_art.yaml diff --git a/data/nde/enriched/entries/0041_unknown.yaml b/data/nde/enriched/entries/0041_asser_historische_vereniging.yaml similarity index 100% rename from data/nde/enriched/entries/0041_unknown.yaml rename to data/nde/enriched/entries/0041_asser_historische_vereniging.yaml diff --git a/data/nde/enriched/entries/0042_unknown.yaml b/data/nde/enriched/entries/0042_asser_historische_vereniging_2.yaml similarity index 100% rename from data/nde/enriched/entries/0042_unknown.yaml rename to data/nde/enriched/entries/0042_asser_historische_vereniging_2.yaml diff --git a/data/nde/enriched/entries/0043_unknown.yaml b/data/nde/enriched/entries/0043_historische_vereniging_gasselte.yaml similarity index 100% rename from data/nde/enriched/entries/0043_unknown.yaml rename to data/nde/enriched/entries/0043_historische_vereniging_gasselte.yaml diff --git a/data/nde/enriched/entries/0046_unknown.yaml b/data/nde/enriched/entries/0046_cultuur_eus_tromp_de_vries.yaml similarity index 100% rename from data/nde/enriched/entries/0046_unknown.yaml rename to data/nde/enriched/entries/0046_cultuur_eus_tromp_de_vries.yaml diff --git a/data/nde/enriched/entries/0053_unknown.yaml b/data/nde/enriched/entries/0053_huis_van_hilde.yaml similarity index 100% rename from data/nde/enriched/entries/0053_unknown.yaml rename to data/nde/enriched/entries/0053_huis_van_hilde.yaml diff --git a/data/nde/enriched/entries/0057_unknown.yaml b/data/nde/enriched/entries/0057_geschiedschrijving_dronten.yaml similarity index 100% rename from data/nde/enriched/entries/0057_unknown.yaml rename to data/nde/enriched/entries/0057_geschiedschrijving_dronten.yaml diff --git a/data/nde/enriched/entries/0058_unknown.yaml b/data/nde/enriched/entries/0058_vrienden_van_urk.yaml similarity index 100% rename from data/nde/enriched/entries/0058_unknown.yaml rename to data/nde/enriched/entries/0058_vrienden_van_urk.yaml diff --git a/data/nde/enriched/entries/0067_unknown.yaml b/data/nde/enriched/entries/0067_museum_t_fiskershuske.yaml similarity index 100% rename from data/nde/enriched/entries/0067_unknown.yaml rename to data/nde/enriched/entries/0067_museum_t_fiskershuske.yaml diff --git a/data/nde/enriched/entries/0068_unknown.yaml b/data/nde/enriched/entries/0068_museum_t_fiskershuske_2.yaml similarity index 100% rename from data/nde/enriched/entries/0068_unknown.yaml rename to data/nde/enriched/entries/0068_museum_t_fiskershuske_2.yaml diff --git a/data/nde/enriched/entries/0081_unknown.yaml b/data/nde/enriched/entries/0081_erfgoed_en_publiek.yaml similarity index 64% rename from data/nde/enriched/entries/0081_unknown.yaml rename to data/nde/enriched/entries/0081_erfgoed_en_publiek.yaml index 69904795d2..d6daf47cd8 100644 --- a/data/nde/enriched/entries/0081_unknown.yaml +++ b/data/nde/enriched/entries/0081_erfgoed_en_publiek.yaml @@ -14,8 +14,85 @@ original_entry: - D entry_index: 81 processing_timestamp: '2025-11-27T15:12:04.431316+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id +enrichment_status: enriched +enrichment_source: web_research +enrichment_timestamp: '2025-11-28T12:00:00+00:00' +enriched_data: + name_nl: Noorderstruun + name_en: Noorderstruun - Northern Heritage Platform + alternative_names: + - Platform Digitaal Erfgoed Friesland + - Ons Erfgoed Noord-Nederland + institution_type: DIGITAL_PLATFORM + institution_subtype: erfgoed aggregator / discovery portal + description_nl: >- + Noorderstruun is een digitaal platform waar je door het erfgoed van Noord-Nederland + kunt 'struunen' (rondkijken). Het platform toont museumstukken, kunstcollecties + en items in particulier bezit, maar ook bijdragen als verhalen, reacties en foto's. + Erfgoedinstellingen, gemeenten, verenigingen ĂŠn particulieren kunnen collecties + en content delen. Het platform biedt thema's zoals de Friese Wadden, Fryske Kanon, + Watersnood 1825 en Terpen. + description_en: >- + Noorderstruun is a digital heritage platform for browsing heritage collections + from Northern Netherlands. The platform displays museum pieces, art collections, + and privately-owned items, plus user contributions like stories, comments, and + photos. Heritage institutions, municipalities, associations, and individuals can + share collections and content. Featured themes include the Frisian Wadden, Frisian + Canon, 1825 Flood, and Terpen (mounds). + parent_organization: + name: Stichting Erfgoed & Publiek + address: Druifstreek 63, 8911 LH Leeuwarden + legal_form: stichting + locations: + - type: office + city: Leeuwarden + street_address: Druifstreek 63 + postal_code: '8911 LH' + province: Friesland + municipality: Leeuwarden + country: NL + coordinates: + latitude: 53.2004179 + longitude: 5.7999259 + contact: + website: https://www.noorderstruun.nl/ + website_secondary: https://erfgoedpubliek.nl/ + phone: '058-8700130' + opening_hours: + office: + hours: maandag t/m vrijdag 09:00-17:00 + services: + - type: discovery_portal + name: Ons Erfgoed + url: https://onserfgoed.noorderstruun.nl/ + description: Zoeken in objecten en verhalen + - type: open_data + name: Open Data + url: https://www.noorderstruun.nl/open-data/ + - type: user_accounts + description: Gratis accounts voor verhalen, reacties en thema's + thematic_collections: + - name: De Friese Wadden + description: Erfgoed van de Waddeneilanden + - name: Fryske Kanon + description: Canon van Friesland + - name: Watersnood 1825 + description: Erfgoed over de watersnoodramp van 1825 + - name: Terpen in Friesland + description: Friese terpen en hun geschiedenis + digital_presence: + platform_name: Noorderstruun + collection_system: Atlantis + linked_data: true + dc4eu_scope: new + open_data: true + geographic_scope: + - Noord-Nederland + - Friesland + - Groningen + - Drenthe + participating_organizations: + description: Musea, verenigingen, gemeenten en particulieren uit Noord-Nederland google_maps_enrichment: place_id: ChIJwQOg0oX-yEcRe4jDYfIATe8 name: Stichting Erfgoed & Publiek @@ -141,5 +218,4 @@ google_maps_enrichment: icon_background_color: '#7B9EB0' utc_offset_minutes: 60 google_maps_status: SUCCESS -google_maps_search_query: Platform Digitaal Erfgoed Friesland (alle collecties), Leeuwarden, - Netherlands +google_maps_search_query: Platform Digitaal Erfgoed Friesland (alle collecties), Leeuwarden, Netherlands diff --git a/data/nde/enriched/entries/0083_cultuur_historisch_centrum_de_tiid.yaml b/data/nde/enriched/entries/0083_cultuur_historisch_centrum_de_tiid.yaml new file mode 100644 index 0000000000..2bad55c877 --- /dev/null +++ b/data/nde/enriched/entries/0083_cultuur_historisch_centrum_de_tiid.yaml @@ -0,0 +1,278 @@ +original_entry: + plaatsnaam_bezoekadres: Bolsward + straat_en_huisnummer_bezoekadres: Jongemastraat 2 + organisatie: Stichting Museum De Tiid + webadres_organisatie: https://www.detiid.nl/ + type_organisatie: cultuurhistorisch centrum + opmerkingen_inez: Deel van Museumfederatie Fryslân. + type: + - M +entry_index: 83 +processing_timestamp: '2025-11-27T15:12:06.590335+00:00' +enrichment_status: enriched +enrichment_source: web_research +enrichment_timestamp: '2025-11-28T12:00:00+00:00' +enriched_data: + name_nl: Museum De Tiid - Huis van Verhalen + name_en: Museum De Tiid - House of Stories + alternative_names: + - Cultuur Historisch Centrum De Tiid + - De Tiid + - CHC De Tiid + institution_type: MUSEUM + institution_subtype: cultuurhistorisch centrum / streekmuseum + description_nl: >- + Museum De Tiid is een eigentijds museum in het voormalig stadhuis van Bolsward, + waar de geschiedenis van Zuidwest Fryslân en de handelsstad Bolsward tot leven + komt. In het monumentale stadhuis uit 1614-1617 ontdek je verhalen van iconen + zoals Titus Brandsma, Gysbert Japicx en Grutte Pier. Het centrum combineert + Museum De Tiid, het Gemeentearchief, de Bibliotheek, het Gemeenteloket voor + Burgerzaken, een VVV-informatiepunt, museumwinkel, trouwzaal, vergaderruimtes, + auditorium en restaurant Blend. + description_en: >- + Museum De Tiid is a contemporary museum in the former town hall of Bolsward, + bringing to life the history of Southwest Friesland and the trading town of + Bolsward. In this monumental 17th-century town hall (1614-1617), visitors discover + stories of icons like Titus Brandsma, Gysbert Japicx, and Grutte Pier. The center + combines the museum, Municipal Archive, Library, Civil Affairs office, VVV tourist + information, museum shop, wedding hall, meeting rooms, auditorium, and restaurant. + parent_organization: + name: Stichting Historisch Centrum WĂťnseradiel + legal_form: stichting + legal_status: + anbi: true + museum_federation: Museumfederatie Fryslân + locations: + - type: visitor_address + city: Bolsward + street_address: Jongemastraat 2 + postal_code: '8701 JD' + province: Friesland + municipality: SĂşdwest-Fryslân + country: NL + coordinates: + latitude: 53.061907899999994 + longitude: 5.5229203 + setting: Monumentaal stadhuis (1614-1617) + contact: + website: https://www.detiid.nl/ + email: info@detiid.nl + phone: '0515-534333' + social_media: + instagram: https://www.instagram.com/detiidbolsward/ + facebook: https://www.facebook.com/chcdetiid/ + linkedin: https://nl.linkedin.com/company/cultuur-historisch-centrum-de-tiid + opening_hours: + regular: + monday_friday: 10:00-17:00 + saturday: 10:00-17:00 + sunday: 12:00-17:00 + facilities: + - name: Museum De Tiid + type: museum + - name: Gemeentearchief + type: archive + description: 8 km archiefmateriaal + - name: de Bibliotheek + type: library + - name: Gemeenteloket Burgerzaken + type: government_service + - name: VVV-informatiepunt + type: tourist_information + - name: Blend | Eten & Drinken + type: restaurant + - name: Museumwinkel + type: shop + - name: Trouwzaal + type: event_venue + - name: Vergaderruimtes en Auditorium + type: meeting_rooms + exhibitions: + current: + - name: Ringrijden + type: temporary + - name: Magisch Licht - Bernard Zantman + type: temporary + - name: FEMICIDE | Orange the World + type: temporary + - name: Ode aan Aggie van der Meer + type: temporary + permanent: + - name: Verhalen van Bolsward en Zuidwest Fryslân + description: Titus Brandsma, Gysbert Japicx, Grutte Pier + collections: + - name: Geschiedenis Zuidwest Fryslân + type: local_history + - name: Handelsstad Bolsward + type: urban_history + services: + - type: guided_tours + name: Torenbeklimming + description: Rondleiding met zicht op torenplateau + - type: venue_rental + description: Zaalverhuur voor vergaderingen, symposia, lezingen + - type: wedding_venue + description: Trouwen in monumentale raadszaal + thematic_focus: + - Titus Brandsma + - Gysbert Japicx + - Grutte Pier + - Geschiedenis Zuidwest Fryslân + - Handelsstad Bolsward + geographic_scope: + - Bolsward + - Zuidwest-Fryslân + - Friesland + google_maps_rating: 4.4 + google_maps_reviews: 16 +google_maps_enrichment: + place_id: ChIJwRGkycXoyEcR2nUy9YVqDks + name: Cultuur Historisch Centrum De Tiid + fetch_timestamp: '2025-11-28T09:49:23.590489+00:00' + api_status: OK + coordinates: + latitude: 53.061907899999994 + longitude: 5.5229203 + formatted_address: Jongemastraat 2, 8701 HZ Bolsward + short_address: Jongemastraat 2, Bolsward + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Jongemastraat + short_name: Jongemastraat + types: + - route + - long_name: Bolsward + short_name: Bolsward + types: + - locality + - political + - long_name: SĂşdwest-Fryslân + short_name: SĂşdwest-Fryslân + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8701 HZ + short_name: 8701 HZ + types: + - postal_code + phone_local: 0515 534 333 + phone_international: +31 515 534 333 + website: https://detiid.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + open_now: true + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 12:00â17:00' + rating: 4.4 + total_ratings: 16 + reviews: + - author_name: Inge Kbm + author_uri: https://www.google.com/maps/contrib/106355188596162073257/reviews + rating: 3 + relative_time_description: 5 maanden geleden + text: Bij binnenkomst blijkt museumjaarjaart niet geldig. Mooi gebouw van buitenkant, + binnen is eigenlijk alleen de raadszaal mooi. Verder is er van alles te zien, + maar geen echte rode draad in de voorwerpen of verhalen. + publish_time: '2025-06-10T15:20:18.545102Z' + - author_name: Frank De bodt + author_uri: https://www.google.com/maps/contrib/112639231126435271527/reviews + rating: 3 + relative_time_description: een maand geleden + text: Museum dat veel probeert te vertellen wat niet lukt. Mooie raadzaal. Expositie + van licht kunstenaar maakte veel goed + publish_time: '2025-10-08T17:29:42.360091044Z' + - author_name: Bert + author_uri: https://www.google.com/maps/contrib/110329903516058055542/reviews + rating: 4 + relative_time_description: een jaar geleden + text: Hier heb ik bezoek gebracht aan museum de tijd. Een mix van historie, tentoonstelling + en het gebouw zelf. Indrukwekkend hoe de toren in het gebouw staat. + publish_time: '2024-08-12T11:52:15.473085Z' + photo_urls: + - https://places.googleapis.com/v1/places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU6_1uHZACHB0OvDPYSOc8bGlXtd9VUbNJqACq1M9w0xE1krrm_8rRbGEiMGH7bu7g0IR08OflyN1U9L4ikIMjkmchEDDSFezxXDf_bCoE4_KEgKhZs_FzXfxPJc_N32tdbjtVfCYmojE1--4AqaxFZD3F4q7lSwaETiSqOOv5ewjYyC4duJqS0iNBZXWbc-8T85pM2oXZ8pHgR7IuhVOnTjVcAYA0ZgBn-Br_gHBSGwWYIqIr8rUrEf-yO62BdQV3tdNkl5QlAHYmd9tz9EhvJnxER01l2bdqL4dC0sM-JFWRi5AvZbgaAuH2WmGVVyHv5qOEzH5iIPZPs-SUc6Qi4iZWIH4KEVxyspNEB9oGJP1ywlzIXjG2jBBstqDGDjZqracQ8K92eIEULOhXuGsWL-pQdnSH5VT0rVrpwVvMRSxttW/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + google_maps_url: https://maps.google.com/?cid=5408377326095463898&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.061907899999994,5.5229203&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Stichting Museum De Tiid, Jongemastraat 2, Bolsward, Netherlands diff --git a/data/nde/enriched/entries/0083_unknown.yaml b/data/nde/enriched/entries/0083_unknown.yaml deleted file mode 100644 index 1695d66195..0000000000 --- a/data/nde/enriched/entries/0083_unknown.yaml +++ /dev/null @@ -1,224 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Bolsward - straat_en_huisnummer_bezoekadres: Jongemastraat 2 - organisatie: Stichting Museum De Tiid - webadres_organisatie: https://www.detiid.nl/ - type_organisatie: cultuurhistorisch centrum - opmerkingen_inez: Deel van Museumfederatie Fryslân. - type: - - M -entry_index: 83 -processing_timestamp: '2025-11-27T15:12:06.590335+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJwRGkycXoyEcR2nUy9YVqDks - name: Cultuur Historisch Centrum De Tiid - fetch_timestamp: '2025-11-28T09:49:23.590489+00:00' - api_status: OK - coordinates: - latitude: 53.061907899999994 - longitude: 5.5229203 - formatted_address: Jongemastraat 2, 8701 HZ Bolsward - short_address: Jongemastraat 2, Bolsward - address_components: - - long_name: '2' - short_name: '2' - types: - - street_number - - long_name: Jongemastraat - short_name: Jongemastraat - types: - - route - - long_name: Bolsward - short_name: Bolsward - types: - - locality - - political - - long_name: SĂşdwest-Fryslân - short_name: SĂşdwest-Fryslân - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8701 HZ - short_name: 8701 HZ - types: - - postal_code - phone_local: 0515 534 333 - phone_international: +31 515 534 333 - website: https://detiid.nl/ - google_place_types: - - point_of_interest - - establishment - business_status: OPERATIONAL - opening_hours: - open_now: true - periods: - - open: - day: 0 - hour: 12 - minute: 0 - close: - day: 0 - hour: 17 - minute: 0 - - open: - day: 1 - hour: 10 - minute: 0 - close: - day: 1 - hour: 17 - minute: 0 - - open: - day: 2 - hour: 10 - minute: 0 - close: - day: 2 - hour: 17 - minute: 0 - - open: - day: 3 - hour: 10 - minute: 0 - close: - day: 3 - hour: 17 - minute: 0 - - open: - day: 4 - hour: 10 - minute: 0 - close: - day: 4 - hour: 17 - minute: 0 - - open: - day: 5 - hour: 10 - minute: 0 - close: - day: 5 - hour: 17 - minute: 0 - - open: - day: 6 - hour: 10 - minute: 0 - close: - day: 6 - hour: 17 - minute: 0 - weekday_text: - - 'maandag: 10:00â17:00' - - 'dinsdag: 10:00â17:00' - - 'woensdag: 10:00â17:00' - - 'donderdag: 10:00â17:00' - - 'vrijdag: 10:00â17:00' - - 'zaterdag: 10:00â17:00' - - 'zondag: 12:00â17:00' - rating: 4.4 - total_ratings: 16 - reviews: - - author_name: Inge Kbm - author_uri: https://www.google.com/maps/contrib/106355188596162073257/reviews - rating: 3 - relative_time_description: 5 maanden geleden - text: Bij binnenkomst blijkt museumjaarjaart niet geldig. Mooi gebouw van buitenkant, - binnen is eigenlijk alleen de raadszaal mooi. Verder is er van alles te zien, - maar geen echte rode draad in de voorwerpen of verhalen. Bij allerlei schermen - kun je vragen beantwoorden, maar dit leidt niet echt ergens naartoe. De uitleg - over Titus Brandsma is nog wel interessant. Dan naar de toren, daar blijk je - niet in te mogen. Dit extra te betalen en vooraf een tour betalen alleen. - publish_time: '2025-06-10T15:20:18.545102Z' - - author_name: Frank De bodt - author_uri: https://www.google.com/maps/contrib/112639231126435271527/reviews - rating: 3 - relative_time_description: een maand geleden - text: Museum dat veel probeert te vertellen wat niet lukt. Mooie raadzaal. Expositie - van licht kunstenaar maakte veel goed - publish_time: '2025-10-08T17:29:42.360091044Z' - - author_name: Bert - author_uri: https://www.google.com/maps/contrib/110329903516058055542/reviews - rating: 4 - relative_time_description: een jaar geleden - text: Hier heb ik bezoek gebracht aan museum de tijd. Een mix van historie, tentoonstelling - en het gebouw zelf. Voor het gebouw had mijn belangstelling. Hoe de toren in - het gebouw staat zonder dat de buitenmuren van de toren rusten op andere muren - is indrukwekkend. Het metselwerk rust geheel op een houten constructie. Na de - renovatie is dit gedeeltelijk vervangen door staal. Vooral leuk is dat je dit - deel van de toren kan bezoeken. Met een gids kan je zelfs de toren in. - publish_time: '2024-08-12T11:52:15.473085Z' - - author_name: Martijn Bouwman - author_uri: https://www.google.com/maps/contrib/100719251237138820510/reviews - rating: 4 - relative_time_description: 6 maanden geleden - text: Leuk lokaal museum in het oude historische stadhuis, over de geschiedenis - van Bolsward en Friesland. - publish_time: '2025-05-18T15:42:37.583699Z' - - author_name: Chris de Bakker - author_uri: https://www.google.com/maps/contrib/112256338586150171326/reviews - rating: 4 - relative_time_description: 3 maanden geleden - text: Mooi museum over de geschiedenis van Bolsward. Prachtige raadskamer. - publish_time: '2025-08-04T19:22:43.446618756Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU6_1uHZACHB0OvDPYSOc8bGlXtd9VUbNJqACq1M9w0xE1krrm_8rRbGEiMGH7bu7g0IR08OflyN1U9L4ikIMjkmchEDDSFezxXDf_bCoE4_KEgKhZs_FzXfxPJc_N32tdbjtVfCYmojE1--4AqaxFZD3F4q7lSwaETiSqOOv5ewjYyC4duJqS0iNBZXWbc-8T85pM2oXZ8pHgR7IuhVOnTjVcAYA0ZgBn-Br_gHBSGwWYIqIr8rUrEf-yO62BdQV3tdNkl5QlAHYmd9tz9EhvJnxER01l2bdqL4dC0sM-JFWRi5AvZbgaAuH2WmGVVyHv5qOEzH5iIPZPs-SUc6Qi4iZWIH4KEVxyspNEB9oGJP1ywlzIXjG2jBBstqDGDjZqracQ8K92eIEULOhXuGsWL-pQdnSH5VT0rVrpwVvMRSxttW/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU5qpgxAEu9cSmPHsJh_16H5nGWtHm7Ca4pJK--7s-7E-Hj5qXHMx2MLA6iiifBYPB4oldV2aWbtj-rv58psO4GciDbA4DwPmJSGayN1eeAbm6-2j9AC6qRfwSR49BxCpGVGSDpEgeJEgtS9rRnHzWdEBU_HCpUGorYCpq477TE1J55XBYyKwUIP83uM3rcEpWIQWNH4RBJmmu-2RSR3TjclDbRXG1cdKbX_qvjk2E6E5MZrrmVUecPlW1GjKth3JkugPx9hE0YYH1Atos1EiYMtqObVdZBS6h-J-Ex6dkzut84yTSVzsqHb8paIc6BHZhEoVMRUjuA-aJ5qgk5MtL4rJk5fYWJm0bcjcISO1EaBmp4GfnpLXR3tV5gWuSRV4yJERnM2i-1vglQkgJPtJPPeOUyq3Wj08Kj-2k1TBFQ/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU5sQpM_4x1JReTCHH9-iVpRlVOuGbEIm3B6WDEvwr1XJhS1KqrFRrhv9xcfdCNHlBZVoCqy0Nr_-4XddNDLwD7Dt3VYpmgZP40QIA0JQThBsZXOcBtYYZRRA2-aunBqtM_SY8Mleuvk158l15V7qq5-YMkIa_DttG46QqDxf_R3weD5-XL7nVLp8PlRy223SfGexJe0OwWMSOJk9vFBF7DcIvKYMPkwajl3CgOTj_JjvBGyorpna_goGUy5KKoBWdPF55z9AW8Qbpu_ySgMbJVS-jOQWgbr5sqEa_xZPVrggXHZ9BiYE4QH3e_Wh7xyGdrh2XGDYCVYnGqqX9OjvfmZjSwz-Mb-A_HvanPcLj_R_6upZl4gkLI9MbaB9szUxqceZ4LohMV06wVg7UswVEOAmXFBtxbz-Y2haAAKEdkZSA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU6TV9OzYYdyVssha4jcxlR4mX0LQcB6AzI64Qa79OsR2fIkQ_ICIQQrd91k1a78qWhSYgAUlH7UusBXqQZUVTBMeBbC3Y8ZU8oY9CuuJKBNhqFlvxs_bONRvA57li7pOeZ-mky-Asc601KWruQjv3wfn_rxHYLb2eOrN1G3pCIPuYmZyxvPyxPGZk1N1zMrMmOxIWSa7BRSHGETOa_hLywb18VGl2GVc2vYfrnfV18ueasW81Ym3T7zs8iauttr38n0blHVPvmMXSeuz3wGTl4jgSPLYc87DwPq-Eq5f4fdIkMIVlwzSt1BPfy3TNhBq7JP98YnBWtYmOwIs2y4lHIr7pTartWQZ_2kMCd66ge26Iv0qQOswEkFUFOQegLmW-Wy4W1d-92awFQ1sn9cMwftLQAYj2Imdk1D0zcRqCTu-w/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU4ZDuksZuZUaolhmtD8_3R5hC1OGIoQjJxfVGDJRhc8GYfsG-d1cd33RlI1GrwsSxAJQ9qOFUMgbxOyzImqa4ThzBIufdfkFX41nN_wRqIaLWTJwPAA9ePeV5J_igkSu1rJTJkmv2bg1O-Nfpm8F07dqL2qs-8Sy_lqrJKh9tgbO0B4TgUhMDIynb7Y_EqQnuQwRGih5BblUK97weivOuFBlhE5ZBzqMyQHFu2Wjdh38aRO7MSO6N3OvY1Aecj4tYHXI9V2QGLL-ZK2_t9wZYIiyTe7AQsnVxz9AAr6nD8KdcOMsD59hwOedJD0OvM6MwRNYZRdrKqAvWRzJ-LrGrLCNJW7QNdFcXAVCpPD_MppGt9DiWxkiM3GsCiA1ckX4qeCFCRhaByWrW7zQQ7l0yOHLh7plaNVEffildZ9ExpLxg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU6_1uHZACHB0OvDPYSOc8bGlXtd9VUbNJqACq1M9w0xE1krrm_8rRbGEiMGH7bu7g0IR08OflyN1U9L4ikIMjkmchEDDSFezxXDf_bCoE4_KEgKhZs_FzXfxPJc_N32tdbjtVfCYmojE1--4AqaxFZD3F4q7lSwaETiSqOOv5ewjYyC4duJqS0iNBZXWbc-8T85pM2oXZ8pHgR7IuhVOnTjVcAYA0ZgBn-Br_gHBSGwWYIqIr8rUrEf-yO62BdQV3tdNkl5QlAHYmd9tz9EhvJnxER01l2bdqL4dC0sM-JFWRi5AvZbgaAuH2WmGVVyHv5qOEzH5iIPZPs-SUc6Qi4iZWIH4KEVxyspNEB9oGJP1ywlzIXjG2jBBstqDGDjZqracQ8K92eIEULOhXuGsWL-pQdnSH5VT0rVrpwVvMRSxttW - height: 3000 - width: 4000 - author_attributions: - - displayName: Ria Van Duijn - uri: https://maps.google.com/maps/contrib/102347016934717779908 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocJc9trdWyguz0GfWJdsRDvit_qUdFL2hZMiTFloamooDt_RAxc=s100-p-k-no-mo - - name: places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU5qpgxAEu9cSmPHsJh_16H5nGWtHm7Ca4pJK--7s-7E-Hj5qXHMx2MLA6iiifBYPB4oldV2aWbtj-rv58psO4GciDbA4DwPmJSGayN1eeAbm6-2j9AC6qRfwSR49BxCpGVGSDpEgeJEgtS9rRnHzWdEBU_HCpUGorYCpq477TE1J55XBYyKwUIP83uM3rcEpWIQWNH4RBJmmu-2RSR3TjclDbRXG1cdKbX_qvjk2E6E5MZrrmVUecPlW1GjKth3JkugPx9hE0YYH1Atos1EiYMtqObVdZBS6h-J-Ex6dkzut84yTSVzsqHb8paIc6BHZhEoVMRUjuA-aJ5qgk5MtL4rJk5fYWJm0bcjcISO1EaBmp4GfnpLXR3tV5gWuSRV4yJERnM2i-1vglQkgJPtJPPeOUyq3Wj08Kj-2k1TBFQ - height: 3024 - width: 4032 - author_attributions: - - displayName: Durk Bouma - uri: https://maps.google.com/maps/contrib/101078021732433953944 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUkz9XucOdpZZqbUoQ-V4LdUXdsE1HTIqrxjI7vVyLYz1YBPA8_sA=s100-p-k-no-mo - - name: places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU5sQpM_4x1JReTCHH9-iVpRlVOuGbEIm3B6WDEvwr1XJhS1KqrFRrhv9xcfdCNHlBZVoCqy0Nr_-4XddNDLwD7Dt3VYpmgZP40QIA0JQThBsZXOcBtYYZRRA2-aunBqtM_SY8Mleuvk158l15V7qq5-YMkIa_DttG46QqDxf_R3weD5-XL7nVLp8PlRy223SfGexJe0OwWMSOJk9vFBF7DcIvKYMPkwajl3CgOTj_JjvBGyorpna_goGUy5KKoBWdPF55z9AW8Qbpu_ySgMbJVS-jOQWgbr5sqEa_xZPVrggXHZ9BiYE4QH3e_Wh7xyGdrh2XGDYCVYnGqqX9OjvfmZjSwz-Mb-A_HvanPcLj_R_6upZl4gkLI9MbaB9szUxqceZ4LohMV06wVg7UswVEOAmXFBtxbz-Y2haAAKEdkZSA - height: 4032 - width: 3024 - author_attributions: - - displayName: Durk Bouma - uri: https://maps.google.com/maps/contrib/101078021732433953944 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUkz9XucOdpZZqbUoQ-V4LdUXdsE1HTIqrxjI7vVyLYz1YBPA8_sA=s100-p-k-no-mo - - name: places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU6TV9OzYYdyVssha4jcxlR4mX0LQcB6AzI64Qa79OsR2fIkQ_ICIQQrd91k1a78qWhSYgAUlH7UusBXqQZUVTBMeBbC3Y8ZU8oY9CuuJKBNhqFlvxs_bONRvA57li7pOeZ-mky-Asc601KWruQjv3wfn_rxHYLb2eOrN1G3pCIPuYmZyxvPyxPGZk1N1zMrMmOxIWSa7BRSHGETOa_hLywb18VGl2GVc2vYfrnfV18ueasW81Ym3T7zs8iauttr38n0blHVPvmMXSeuz3wGTl4jgSPLYc87DwPq-Eq5f4fdIkMIVlwzSt1BPfy3TNhBq7JP98YnBWtYmOwIs2y4lHIr7pTartWQZ_2kMCd66ge26Iv0qQOswEkFUFOQegLmW-Wy4W1d-92awFQ1sn9cMwftLQAYj2Imdk1D0zcRqCTu-w - height: 3024 - width: 4032 - author_attributions: - - displayName: Durk Bouma - uri: https://maps.google.com/maps/contrib/101078021732433953944 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUkz9XucOdpZZqbUoQ-V4LdUXdsE1HTIqrxjI7vVyLYz1YBPA8_sA=s100-p-k-no-mo - - name: places/ChIJwRGkycXoyEcR2nUy9YVqDks/photos/AWn5SU4ZDuksZuZUaolhmtD8_3R5hC1OGIoQjJxfVGDJRhc8GYfsG-d1cd33RlI1GrwsSxAJQ9qOFUMgbxOyzImqa4ThzBIufdfkFX41nN_wRqIaLWTJwPAA9ePeV5J_igkSu1rJTJkmv2bg1O-Nfpm8F07dqL2qs-8Sy_lqrJKh9tgbO0B4TgUhMDIynb7Y_EqQnuQwRGih5BblUK97weivOuFBlhE5ZBzqMyQHFu2Wjdh38aRO7MSO6N3OvY1Aecj4tYHXI9V2QGLL-ZK2_t9wZYIiyTe7AQsnVxz9AAr6nD8KdcOMsD59hwOedJD0OvM6MwRNYZRdrKqAvWRzJ-LrGrLCNJW7QNdFcXAVCpPD_MppGt9DiWxkiM3GsCiA1ckX4qeCFCRhaByWrW7zQQ7l0yOHLh7plaNVEffildZ9ExpLxg - height: 3024 - width: 4032 - author_attributions: - - displayName: Durk Bouma - uri: https://maps.google.com/maps/contrib/101078021732433953944 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUkz9XucOdpZZqbUoQ-V4LdUXdsE1HTIqrxjI7vVyLYz1YBPA8_sA=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=5408377326095463898&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.061907899999994,5.5229203&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Museum De Tiid, Jongemastraat 2, Bolsward, Netherlands diff --git a/data/nde/enriched/entries/0084_archief_documentatiecentrum_rk_friesland.yaml b/data/nde/enriched/entries/0084_archief_documentatiecentrum_rk_friesland.yaml new file mode 100644 index 0000000000..a3bbb43954 --- /dev/null +++ b/data/nde/enriched/entries/0084_archief_documentatiecentrum_rk_friesland.yaml @@ -0,0 +1,221 @@ +original_entry: + plaatsnaam_bezoekadres: Bolsward + straat_en_huisnummer_bezoekadres: Grote Dijlakker 12 + organisatie: Stichting Archief- en Documentatiecentrum voor Rooms-Katholiek Friesland + webadres_organisatie: https://archiefrkfriesland.nl/ + type_organisatie: archief + isil-code_na: NL-BwdADRKF + archives_portal_europe: ja + linked_data: nee + type: + - A +entry_index: 84 +processing_timestamp: '2025-11-27T15:12:06.591840+00:00' +enrichment_status: enriched +enrichment_source: web_research +enrichment_timestamp: '2025-11-28T12:00:00+00:00' +enriched_data: + name_nl: Archief- en Documentatiecentrum voor R.K. Friesland + name_en: Archive and Documentation Centre for Roman Catholic Friesland + alternative_names: + - Stichting Archief- en Documentatiecentrum voor Rooms-Katholiek Friesland + - Titus Brandsma Museum + - ADC RK Friesland + motto: "Waard om bewaard te blijven" + institution_type: ARCHIVE + institution_subtype: kerkelijk archief / documentatiecentrum + description_nl: >- + De Stichting Archief- en Documentatiecentrum voor R.K. Friesland stelt zich ten + doel het verzamelen, inventariseren en catalogiseren van alle mogelijke documentatie + en archieven welke betrekking hebben op het Rooms-Katholieke leven in Friesland. + Het centrum beheert uitgebreide collecties van bidprentjes, informatie over + religieuzen, een bibliotheek en fotoarchief. Daarnaast herbergt het pand het + Titus Brandsma Museum. In 2024 vierde het centrum haar jubileum. + description_en: >- + The Foundation Archive and Documentation Centre for Roman Catholic Friesland + aims to collect, inventory, and catalogue all documentation and archives relating + to Roman Catholic life in Friesland. The centre manages extensive collections + of prayer cards (bidprentjes), information about religious persons, a library, + and photo archive. The building also houses the Titus Brandsma Museum. The centre + celebrated its jubilee in 2024. + legal_form: stichting + legal_status: + anbi: true + identifiers: + - type: ISIL + value: NL-BwdADRKF + locations: + - type: visitor_address + city: Bolsward + street_address: Grote Dijlakker 12 + postal_code: '8701 KV' + province: Friesland + municipality: SĂşdwest-Fryslân + country: NL + coordinates: + latitude: 53.063272 + longitude: 5.5231015999999995 + contact: + website: https://archiefrkfriesland.nl/ + email: info@archiefrkfriesland.nl + phone: '0515-336804' + phone_mobile: '06-49602795' + bank_account: NL29 RABO 0143 1780 32 + social_media: + facebook: https://www.facebook.com/groups/archiefrkfriesland/ + opening_hours: + regular: + wednesday: 09:00-16:00 + note: Op afspraak ook andere dagen mogelijk + databases: + - name: Bidprentjes + type: memorial_cards + url: https://archiefrkfriesland.nl/app32/NL/index.php?dbs=pz + - name: Religieuzen + type: religious_persons + url: https://archiefrkfriesland.nl/app32/NL/index.php?dbs=rz + - name: Bibliotheek + type: library_catalogue + url: https://archiefrkfriesland.nl/app32/NL/index.php?dbs=bz + - name: Fotoarchief + type: photo_archive + url: https://archiefrkfriesland.nl/app32/NL/index.php?dbs=fz + - name: Zoekplaatje + type: identification + url: https://archiefrkfriesland.nl/app32/NL/index.php?dbs=zp + - name: Archieven + type: archival_holdings + url: https://archiefrkfriesland.nl/app/arcspace.php + collections: + - name: Bidprentjes collectie + type: memorial_cards + description: Verzameling van bidprentjes uit R.K. Friesland + - name: Religieuzen database + type: biographical + description: Informatie over religieuzen uit Friesland + - name: Bibliotheek + type: library + description: Boeken over R.K. geschiedenis in Friesland + - name: Fotoarchief + type: photographs + description: Historische foto's R.K. Friesland + publications: + - name: Bulletins + type: periodical + frequency: yearly + description: Jaarlijkse bulletins vanaf 2020 + services: + - type: donations + description: Donateur worden ondersteunt het werk + - type: book_sales + description: Boeken te bestellen via de website + museum: + name: Titus Brandsma Museum + description: Museum gewijd aan Titus Brandsma, heilig verklaard in 2022 + languages: + - nl + - de + - en + - fy + thematic_focus: + - Rooms-Katholiek erfgoed + - Titus Brandsma + - Religieuzen in Friesland + - Kerkelijke archieven + geographic_scope: + - Friesland + - Nederland + digital_presence: + archives_portal_europe: true + linked_data: false + google_maps_rating: 4.0 + google_maps_reviews: 1 +google_maps_enrichment: + place_id: ChIJESqyElrhyEcRWU7vMUXIUvk + name: Archief- en Documentatiecentrum voor RK Friesland + fetch_timestamp: '2025-11-28T09:49:24.331295+00:00' + api_status: OK + coordinates: + latitude: 53.063272 + longitude: 5.5231015999999995 + formatted_address: Grote Dijlakker 12, 8701 KV Bolsward + short_address: Grote Dijlakker 12, Bolsward + address_components: + - long_name: '12' + short_name: '12' + types: + - street_number + - long_name: Grote Dijlakker + short_name: Grote Dijlakker + types: + - route + - long_name: Bolsward + short_name: Bolsward + types: + - locality + - political + - long_name: SĂşdwest-Fryslân + short_name: SĂşdwest-Fryslân + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8701 KV + short_name: 8701 KV + types: + - postal_code + phone_local: 0515 336 804 + phone_international: +31 515 336 804 + website: http://www.archiefrkfriesland.nl/ + google_place_types: + - storage + - point_of_interest + - establishment + primary_type: storage + business_status: OPERATIONAL + opening_hours: + open_now: false + periods: + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: Gesloten' + - 'woensdag: 09:00â16:00' + - 'donderdag: Gesloten' + - 'vrijdag: Gesloten' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 1 + reviews: + - author_name: Piet Vogelzang + author_uri: https://www.google.com/maps/contrib/111016550948775290849/reviews + rating: 4 + relative_time_description: 5 jaar geleden + text: Onwerkelijk aardige mensen + publish_time: '2020-08-18T14:47:27.512340Z' + photo_urls: + - https://places.googleapis.com/v1/places/ChIJESqyElrhyEcRWU7vMUXIUvk/photos/AWn5SU4V8vAFUGDkDGBE3hqAJl4nLvt6AW_FK4Zy-rIefuJ7_r5BUiffex5yadZYchBNGF1rdnDLHiakaJ6waL1f79sBTAvmabkSgpQY8VJe1Ms5rK_NV15GcufwGy1w_keauzgsjj-6AMjIq9cRh52Peg1-SKf9_7MtrKR3DFySz-PPjg8cOUE4n1HhotLT3E2pjDDL5prgVkGiJERJ0Ohrxk0MyVIFkjx1S_yCXiw4vKy63rdXbAK0Rckw07xKVsENBG_TsZtX1GddELiy_W1KpluCDxpfVAD3EtkwyvhzB-mvRzzAol-HvbV2w0TSjsxhBEW8BRUM6YX4wBYK0HYQ2eRd4sdY53ANyEdzv-OYvU9DCaIXCERL_bDWjb0eOeQ4M67e0jvMdr11dgExqS-EAOkVR9FEmNaYxB16V6WQpNkQpw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + google_maps_url: https://maps.google.com/?cid=17965642063050395225&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.063272,5.5231015999999995&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Stichting Archief- en Documentatiecentrum voor Rooms-Katholiek Friesland, Grote Dijlakker 12, Bolsward, Netherlands diff --git a/data/nde/enriched/entries/0084_unknown.yaml b/data/nde/enriched/entries/0084_unknown.yaml deleted file mode 100644 index 1bf8c3d2a6..0000000000 --- a/data/nde/enriched/entries/0084_unknown.yaml +++ /dev/null @@ -1,121 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Bolsward - straat_en_huisnummer_bezoekadres: Grote Dijlakker 12 - organisatie: Stichting Archief- en Documentatiecentrum voor Rooms-Katholiek Friesland - webadres_organisatie: https://archiefrkfriesland.nl/ - type_organisatie: archief - isil-code_na: NL-BwdADRKF - archives_portal_europe: ja - linked_data: nee - type: - - A -entry_index: 84 -processing_timestamp: '2025-11-27T15:12:06.591840+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJESqyElrhyEcRWU7vMUXIUvk - name: Archief- en Documentatiecentrum voor RK Friesland - fetch_timestamp: '2025-11-28T09:49:24.331295+00:00' - api_status: OK - coordinates: - latitude: 53.063272 - longitude: 5.5231015999999995 - formatted_address: Grote Dijlakker 12, 8701 KV Bolsward - short_address: Grote Dijlakker 12, Bolsward - address_components: - - long_name: '12' - short_name: '12' - types: - - street_number - - long_name: Grote Dijlakker - short_name: Grote Dijlakker - types: - - route - - long_name: Bolsward - short_name: Bolsward - types: - - locality - - political - - long_name: SĂşdwest-Fryslân - short_name: SĂşdwest-Fryslân - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8701 KV - short_name: 8701 KV - types: - - postal_code - phone_local: 0515 336 804 - phone_international: +31 515 336 804 - website: http://www.archiefrkfriesland.nl/ - google_place_types: - - storage - - point_of_interest - - establishment - primary_type: storage - business_status: OPERATIONAL - opening_hours: - open_now: false - periods: - - open: - day: 3 - hour: 9 - minute: 0 - close: - day: 3 - hour: 16 - minute: 0 - weekday_text: - - 'maandag: Gesloten' - - 'dinsdag: Gesloten' - - 'woensdag: 09:00â16:00' - - 'donderdag: Gesloten' - - 'vrijdag: Gesloten' - - 'zaterdag: Gesloten' - - 'zondag: Gesloten' - rating: 4 - total_ratings: 1 - reviews: - - author_name: Piet Vogelzang - author_uri: https://www.google.com/maps/contrib/111016550948775290849/reviews - rating: 4 - relative_time_description: 5 jaar geleden - text: Onwerkelijk aardige mensen - publish_time: '2020-08-18T14:47:27.512340Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJESqyElrhyEcRWU7vMUXIUvk/photos/AWn5SU4V8vAFUGDkDGBE3hqAJl4nLvt6AW_FK4Zy-rIefuJ7_r5BUiffex5yadZYchBNGF1rdnDLHiakaJ6waL1f79sBTAvmabkSgpQY8VJe1Ms5rK_NV15GcufwGy1w_keauzgsjj-6AMjIq9cRh52Peg1-SKf9_7MtrKR3DFySz-PPjg8cOUE4n1HhotLT3E2pjDDL5prgVkGiJERJ0Ohrxk0MyVIFkjx1S_yCXiw4vKy63rdXbAK0Rckw07xKVsENBG_TsZtX1GddELiy_W1KpluCDxpfVAD3EtkwyvhzB-mvRzzAol-HvbV2w0TSjsxhBEW8BRUM6YX4wBYK0HYQ2eRd4sdY53ANyEdzv-OYvU9DCaIXCERL_bDWjb0eOeQ4M67e0jvMdr11dgExqS-EAOkVR9FEmNaYxB16V6WQpNkQpw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJESqyElrhyEcRWU7vMUXIUvk/photos/AWn5SU5zoRm8P8LIo3iFcyewS_xWTX5s9P-tuSZ483yUPLy-u3toew93aSOqF6Lfrl4w40D25u_pgfk9301tU_sK2fvF1i5_5LayUWlbhbB4kGU_dll3BDm7L50E2Pb1zeg4dEKZM16xak6cxuDupoYk-z5sC0qJD85zrof-fdT5Kl4CnnyhGDltp--DBovppL7uvrFqAhp_k1VlmWLy9pT2P8w-Y6qD3GB6b8dyYA_udeow6Tulm-MtOYBmgsg6z4p9mYGLptZngJZhNUta2pHRzxW1UqirFINPIjZ28LHTdylnTA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJESqyElrhyEcRWU7vMUXIUvk/photos/AWn5SU4V8vAFUGDkDGBE3hqAJl4nLvt6AW_FK4Zy-rIefuJ7_r5BUiffex5yadZYchBNGF1rdnDLHiakaJ6waL1f79sBTAvmabkSgpQY8VJe1Ms5rK_NV15GcufwGy1w_keauzgsjj-6AMjIq9cRh52Peg1-SKf9_7MtrKR3DFySz-PPjg8cOUE4n1HhotLT3E2pjDDL5prgVkGiJERJ0Ohrxk0MyVIFkjx1S_yCXiw4vKy63rdXbAK0Rckw07xKVsENBG_TsZtX1GddELiy_W1KpluCDxpfVAD3EtkwyvhzB-mvRzzAol-HvbV2w0TSjsxhBEW8BRUM6YX4wBYK0HYQ2eRd4sdY53ANyEdzv-OYvU9DCaIXCERL_bDWjb0eOeQ4M67e0jvMdr11dgExqS-EAOkVR9FEmNaYxB16V6WQpNkQpw - height: 3468 - width: 4624 - author_attributions: - - displayName: Ron Kogels - uri: https://maps.google.com/maps/contrib/108959310592230103294 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVweFMhurjQvwPF1BNByyBbhZL_tdjgSmVFxYuLeP1tGFKO7d4PdA=s100-p-k-no-mo - - name: places/ChIJESqyElrhyEcRWU7vMUXIUvk/photos/AWn5SU5zoRm8P8LIo3iFcyewS_xWTX5s9P-tuSZ483yUPLy-u3toew93aSOqF6Lfrl4w40D25u_pgfk9301tU_sK2fvF1i5_5LayUWlbhbB4kGU_dll3BDm7L50E2Pb1zeg4dEKZM16xak6cxuDupoYk-z5sC0qJD85zrof-fdT5Kl4CnnyhGDltp--DBovppL7uvrFqAhp_k1VlmWLy9pT2P8w-Y6qD3GB6b8dyYA_udeow6Tulm-MtOYBmgsg6z4p9mYGLptZngJZhNUta2pHRzxW1UqirFINPIjZ28LHTdylnTA - height: 300 - width: 300 - author_attributions: - - displayName: Archief- en Documentatiecentrum voor RK Friesland - uri: https://maps.google.com/maps/contrib/104066843316454556790 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUHsnG5FZ2zgaQq_0n13FoKj1QJP2Je-T5q0V11dh-phPmtAcA=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=17965642063050395225&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.063272,5.5231015999999995&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Archief- en Documentatiecentrum voor Rooms-Katholiek - Friesland, Grote Dijlakker 12, Bolsward, Netherlands diff --git a/data/nde/enriched/entries/0089_unknown.yaml b/data/nde/enriched/entries/0089_fries_museum.yaml similarity index 100% rename from data/nde/enriched/entries/0089_unknown.yaml rename to data/nde/enriched/entries/0089_fries_museum.yaml diff --git a/data/nde/enriched/entries/0112_it_fryske_fersepaad_gysbert_japicx.yaml b/data/nde/enriched/entries/0112_it_fryske_fersepaad_gysbert_japicx.yaml new file mode 100644 index 0000000000..2d09f95cf4 --- /dev/null +++ b/data/nde/enriched/entries/0112_it_fryske_fersepaad_gysbert_japicx.yaml @@ -0,0 +1,217 @@ +original_entry: + plaatsnaam_bezoekadres: Boalsert (Bolsward) + straat_en_huisnummer_bezoekadres: Wipstrjitte 6 + organisatie: Gijsbert Japicx (Holckema) Stichting + webadres_organisatie: https://www.gysbert.frl/ + type_organisatie: museum + collectie_nederland: ja + type: + - S +entry_index: 112 +processing_timestamp: '2025-11-27T15:13:03.019291+00:00' +enrichment_status: enriched +enrichment_source: web_research +enrichment_timestamp: '2025-11-28T12:00:00+00:00' +enriched_data: + name_nl: Gysbert Japicx Holckema Stichting + name_fy: Gysbert Japicx Holckema Stifting + name_en: Gysbert Japicx Holckema Foundation + alternative_names: + - Gijsbert Japicx Stichting + - Gysbert Japicx Stichting + institution_type: COLLECTING_SOCIETY + institution_subtype: literair-historische stichting / taalbehoud + description_nl: >- + De Gysbert Japicx Holckema Stichting heeft tot doel het werk, het verhaal en de + nagedachtenis aan de in 1603 in Bolsward geboren en in 1666 aldaar overleden + Friese dichter en schrijver Gysbert Japicx Holckema steeds levend en in ere te + houden. Gysbert Japicx wordt beschouwd als de grondlegger van de geschreven + Friese taal. Het geboortehuis 'It Gysbert JapicxhĂťs' staat aan de Wipstrjitte 6 + in Bolsward. + description_fy: >- + De Gysbert Japicx Holckema Stifting hat ta doel it wurk, it ferhaal en de neitins + oan de yn 1603 yn Boalsert berne en yn 1666 yn Boalsert ferstoarne Fryske dichter + en skriuwer Gysbert Japicx Holckema hieltyd libben en yn eare te hâlden. + description_en: >- + The Gysbert Japicx Holckema Foundation aims to keep alive and honor the work, + story, and legacy of the Frisian poet and writer Gysbert Japicx Holckema, born + in Bolsward in 1603 and died there in 1666. Gysbert Japicx is considered the + founder of the written Frisian language. His birthplace 'It Gysbert JapicxhĂťs' + is located at Wipstrjitte 6 in Bolsward. + legal_form: stichting + legal_status: + anbi: true + kvk: '41001328' + board: + - name: Liskje Flapper + role: foarsitter en skriuwster (chair and secretary) + - name: Hans Kort + role: ponghâlder (treasurer) + - name: Piter Boersma + role: lid (member) + - name: Peter Mulder + role: kolleksjebehear (collection management) + advisor: Rieneke Speerstra + locations: + - type: museum + name: It Gysbert JapicxhĂťs + city: Bolsward + city_fy: Boalsert + street_address: Wipstrjitte 6 + postal_code: '8701 HZ' + province: Friesland + municipality: SĂşdwest-Fryslân + country: NL + coordinates: + latitude: 53.0649448 + longitude: 5.5256767 + description: Geboortehuis van Gysbert Japicx + contact: + website: https://www.gysbert.frl/ + email: mail@gysbert.frl + prizes: + - name: Gysbert Japicxpriis + description: Belangrijkste literaire prijs voor Friese literatuur + url: https://www.gysbert.frl/japicxpriis + - name: Lytse Gysbert Japicxpriis + description: Jeugdprijs voor Friese literatuur + url: https://www.gysbert.frl/lytsegysbertjapicxpriis + projects: + - name: Musical Master Gysbert IV + type: theater + url: https://www.gysbert.frl/mastergysbert4 + - name: Teäterkonsert Tiidgenoaten + type: concert + subproject: CD Wurden + - name: Edukatyf programma + type: education + description: Digitale lesmetoade over Gysbert Japicx en de Friese taal + url: https://www.gysbert.frl/edukatyf + - name: Stedskuiers Boalsert + type: walking_tour + description: Stadswandelingen Bolsward + historical_projects: + - name: Rockopera Gysbert Gysbert + year: 2003 + description: 400ste geboortejaar Gysbert Japicx + - name: Musical Master Gysbert I - Inkele reis Sabeare + year: 2016 + - name: Musical Master Gysbert II - De PompeblĂŞdspion + year: 2018 + - name: Digitalisearring Kolleksjes Tichteby + year: 2019 + url: https://www.collectienederland.nl/search/?q=gysbert%20japicx + thematic_focus: + - Gysbert Japicx (1603-1666) + - Friese taal en literatuur + - 17e-eeuwse Friese cultuur + - Taalbehoud + subject_person: + name: Gysbert Japicx Holckema + birth_year: 1603 + death_year: 1666 + birth_place: Bolsward + death_place: Bolsward + profession: + - dichter + - schrijver + significance: Grondlegger van de geschreven Friese taal + geographic_scope: + - Bolsward + - Friesland + digital_presence: + collectie_nederland: true + funders: + - Provinsje Fryslân + - Gemeente SĂşdwest-Fryslân + - Prins Bernhard Cultuurfonds Fryslân + - Fonds Podiumkunsten + - Feitsma FĂťns + - Douwe Kalma Stifting + - Hendrick Nannes- en Catrijn Epes Stichting + - Stichting Sint Anthony Gasthuis + - Stichting Het Weeshuis + - Jan Roelof Geertsmafonds + - Fonds Bolsward Dronrijp 1993 + - Ritske Boelema Gasthuis + google_maps_rating: 5.0 + google_maps_reviews: 1 +google_maps_enrichment: + place_id: ChIJ5x8WLjLpyEcRJVNB-4BbZRU + name: "It Fryske Fersepaad: Gysbert Japicx" + fetch_timestamp: '2025-11-28T09:49:41.212836+00:00' + api_status: OK + coordinates: + latitude: 53.0649448 + longitude: 5.5256767 + formatted_address: Katterug, 8701 KX Bolsward + short_address: Katterug, Bolsward + address_components: + - long_name: Katterug + short_name: Katterug + types: + - route + - long_name: Bolsward + short_name: Bolsward + types: + - locality + - political + - long_name: SĂşdwest-Fryslân + short_name: SĂşdwest-Fryslân + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8701 KX + short_name: 8701 KX + types: + - postal_code + website: https://straatpoezie.nl/gedicht/by-t-opgean-fan-e-sinne/#single-container + google_place_types: + - hiking_area + - park + - sports_activity_location + - point_of_interest + - establishment + primary_type: hiking_area + business_status: OPERATIONAL + opening_hours: + open_now: true + periods: + - open: + day: 0 + hour: 0 + minute: 0 + weekday_text: + - 'maandag: 24 uur geopend' + - 'dinsdag: 24 uur geopend' + - 'woensdag: 24 uur geopend' + - 'donderdag: 24 uur geopend' + - 'vrijdag: 24 uur geopend' + - 'zaterdag: 24 uur geopend' + - 'zondag: 24 uur geopend' + rating: 5 + total_ratings: 1 + reviews: + - author_name: Belinda Glenn + author_uri: https://www.google.com/maps/contrib/103322824937773856043/reviews + rating: 5 + relative_time_description: 2 jaar geleden + text: Prachtig gebouw! Wauw! + publish_time: '2023-06-20T19:29:28.772948Z' + google_maps_url: https://maps.google.com/?cid=1541739056973566757&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.0649448,5.5256767&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/tree_pinlet + icon_background_color: '#4DB546' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Gijsbert Japicx (Holckema) Stichting, Wipstrjitte 6, Boalsert (Bolsward), Netherlands diff --git a/data/nde/enriched/entries/0112_unknown.yaml b/data/nde/enriched/entries/0112_unknown.yaml deleted file mode 100644 index 749dbff3c4..0000000000 --- a/data/nde/enriched/entries/0112_unknown.yaml +++ /dev/null @@ -1,135 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Boalsert (Bolsward) - straat_en_huisnummer_bezoekadres: Wipstrjitte 6 - organisatie: Gijsbert Japicx (Holckema) Stichting - webadres_organisatie: https://www.gysbert.frl/ - type_organisatie: museum - collectie_nederland: ja - type: - - S -entry_index: 112 -processing_timestamp: '2025-11-27T15:13:03.019291+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJ5x8WLjLpyEcRJVNB-4BbZRU - name: 'It Fryske Fersepaad: Gysbert Japicx' - fetch_timestamp: '2025-11-28T09:49:41.212836+00:00' - api_status: OK - coordinates: - latitude: 53.0649448 - longitude: 5.5256767 - formatted_address: Katterug, 8701 KX Bolsward - short_address: Katterug, Bolsward - address_components: - - long_name: Katterug - short_name: Katterug - types: - - route - - long_name: Bolsward - short_name: Bolsward - types: - - locality - - political - - long_name: SĂşdwest-Fryslân - short_name: SĂşdwest-Fryslân - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8701 KX - short_name: 8701 KX - types: - - postal_code - website: https://straatpoezie.nl/gedicht/by-t-opgean-fan-e-sinne/#single-container - google_place_types: - - hiking_area - - park - - sports_activity_location - - point_of_interest - - establishment - primary_type: hiking_area - business_status: OPERATIONAL - opening_hours: - open_now: true - periods: - - open: - day: 0 - hour: 0 - minute: 0 - weekday_text: - - 'maandag: 24 uur geopend' - - 'dinsdag: 24 uur geopend' - - 'woensdag: 24 uur geopend' - - 'donderdag: 24 uur geopend' - - 'vrijdag: 24 uur geopend' - - 'zaterdag: 24 uur geopend' - - 'zondag: 24 uur geopend' - rating: 5 - total_ratings: 1 - reviews: - - author_name: Belinda Glenn - author_uri: https://www.google.com/maps/contrib/103322824937773856043/reviews - rating: 5 - relative_time_description: 2 jaar geleden - text: Prachtig gebouw! Wauw! - publish_time: '2023-06-20T19:29:28.772948Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU77IF3s0JBlvdkYsF651EccID3-rg4cpGHXsfp_zur3FyOR2EeeSIO2D0Q8I4Xn9CMcoE8Wy0MlzhTDdwB1Js1s7T2iuPiGE0wRMaCQXbr-o1gNgRloV9gehIP-q43NS4cgj5gBP0wuftLU249qSwJ8Gw2oU0yGRYNqAYA1WZsXkiEeu0jH4GQzGNA-dhTNaxJoiGOesEI6vS3bS1nahBte0rsfa2ts5pI_1E547QmGujlgwZV-Hr03PvhntxnFb4twr2l1w23URg7s2O9tbVl5pbSP1coGTldOQqpn9031FsZvaGwnvSeE1G7j39H1AGok8u-c-RCrrnGsxnAc05NDU9qZpvlfy4AcrLJS__Uda0wj_2nBL4OPwplYpXEQvF0NioXeVmFGykbH9_ZBYvUH8HtMvJXPpXfcDlfn3jYDzgoq/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU53JEhfIlirgL33aC9Hah51Er-tWlkjNTn3L1Zk_fs6jqN8LN9fuAgRm3BLvo7w017f6GFsMLCZcrkwciSCwzmkWInyyIYE5v4iwwG-ylx5AocfCDoAKlYfSChLGTh-qglSjNa_g5wVsw_4thNwVTK-IVz_IsvACT827jMLzwBtYa6CcppKaYEkIxyULpALOKYvM_8nGpBLZumtE4TaxDkAuXbM7ShHmRLclU-gRlHdOSzrsy8Mo5XDBVONW_suUOjcxvZqkkBnEwhLquRQWuPfUwOqHnMHX20A-MK0oHVmC4l0Y8RL-VUxO-eyy7PRX1O2dLZ6AawRw9Jhs9KonyvttWOlVJLxMUWXhWrSMcJz0w6NjN9RAhcYr0zddLwraUST-nUxrqMV50QfRn-XknuCjSygPwBGd1fwmQI-P20ljw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU6Trj9kf7N1k2PguYYIToCtsBfLZ-R-Da05nlcN3P2D7-779D7jK01g2BS4WYZEjkQdkpLVXPBrh7RMIRZ72SCMtW2LMTgwd6L1m-kdgrX10rwQA2rjHjf6J-ZO-b283eGhxr_UKK39p7u_WVz8t3tGlkKwelM4V1_5_WCkH43CIwJHYHivQzCXcNefTGkOPP8iIRHhFYfxz0JVJ2TDLNlA18GnUyQVwfDVZiVYKvjN_0NrjWScPZ-ai1nH8UD5kxbGsR6y_9FmA327DfiRPwyRM9reZRakzUjDJZ2eI3NW3t8FHCTmJB_hgjhn0N1HQ0ffPQ2ljmLQ2XRpPubzLanawk4c5jtxhkknDkXYa82A6qWfQai9KwQdVrTEywHeDhJzkAeroeBX7pvSu2sdjSotEQdCEjHXbonntTDp1p-LA8e7/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU7f2AaPgjeQSs8GFQJj9hL1As0i2_ulkaPrEozfwLDQ5qD0FZaYL9bgbS_ccrKdcwq95yX3wHKMoYAVkQqSWwxFid7ST4voABxaPyHxuT-8gfC6rTZZ12X8DvV7L-S14mywnwNb8qaDRmIch1cZShJYSqvkXpQnIZRSfN-3sHBKq55B-IfRXtzyGJzb1LqeXUWu82h_f4sVwZZC2mDQvUtq7tb_yw8qAbglXPnUC0Cwizs0H6Pilt56gAEIMoe9OCgU5l8njogrQJGav91fk5ml3zGuHmbb_drjB8rDxmCkSTSREqNZgUpDu9kQ7vC1yXrisltFje9Qhz0xKqPN_yDQJZCbe3BYVufbygLvLGmfXDLCHSKGq0CQObI6cgiV7RgHY8PYps7FqeMzMHcLtzq4L8PAh3QMBXcEd_VaM4I/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU5vKJXTnIn8Sbn7VdDHKN3vjo7PXO9xcipzR2tKm4cOoOcLnwzkOLxePBAGqheho8yRwbSghlqwHu7NW8UrciV4RoQAhE_Pl2SIHbMQ_1Cx1J9HKkNx-gvgzaAxgpaDfOcdrd79DoxGsTT-cFKLYLqUpIfxEqac4T_I0krRZ0zCCLTkITILinR93nGWLg7xEceDUVonIp-_m_R58-3gJFTWtNpFtYSzcRUdNgMOC5gLKPQx7AOTfwUIEzHQEMTyUkTIMumCkNsVHoEj580pCXf91DRcdWpTqVmWBvFZGwVMAN3h2zCIFmJC-YH1mst7vahX1VQ-gcdqtr2lVaoZoMzolh3D6LTBsgioCJvh6I1mQNEzziweY5BaJykipsSKfyRzJ0oIgdgAa1YTRYK_9lQYTZ4ySjmpuTu4m_w__bT2J2Fm/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU77IF3s0JBlvdkYsF651EccID3-rg4cpGHXsfp_zur3FyOR2EeeSIO2D0Q8I4Xn9CMcoE8Wy0MlzhTDdwB1Js1s7T2iuPiGE0wRMaCQXbr-o1gNgRloV9gehIP-q43NS4cgj5gBP0wuftLU249qSwJ8Gw2oU0yGRYNqAYA1WZsXkiEeu0jH4GQzGNA-dhTNaxJoiGOesEI6vS3bS1nahBte0rsfa2ts5pI_1E547QmGujlgwZV-Hr03PvhntxnFb4twr2l1w23URg7s2O9tbVl5pbSP1coGTldOQqpn9031FsZvaGwnvSeE1G7j39H1AGok8u-c-RCrrnGsxnAc05NDU9qZpvlfy4AcrLJS__Uda0wj_2nBL4OPwplYpXEQvF0NioXeVmFGykbH9_ZBYvUH8HtMvJXPpXfcDlfn3jYDzgoq - height: 3024 - width: 4032 - author_attributions: - - displayName: William Wissink - uri: https://maps.google.com/maps/contrib/107507224894632740009 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXCFMwxXijcErgThcJgzSv2tLIMyG9ivmmWmFrJGCBQJr0le9uf=s100-p-k-no-mo - - name: places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU53JEhfIlirgL33aC9Hah51Er-tWlkjNTn3L1Zk_fs6jqN8LN9fuAgRm3BLvo7w017f6GFsMLCZcrkwciSCwzmkWInyyIYE5v4iwwG-ylx5AocfCDoAKlYfSChLGTh-qglSjNa_g5wVsw_4thNwVTK-IVz_IsvACT827jMLzwBtYa6CcppKaYEkIxyULpALOKYvM_8nGpBLZumtE4TaxDkAuXbM7ShHmRLclU-gRlHdOSzrsy8Mo5XDBVONW_suUOjcxvZqkkBnEwhLquRQWuPfUwOqHnMHX20A-MK0oHVmC4l0Y8RL-VUxO-eyy7PRX1O2dLZ6AawRw9Jhs9KonyvttWOlVJLxMUWXhWrSMcJz0w6NjN9RAhcYr0zddLwraUST-nUxrqMV50QfRn-XknuCjSygPwBGd1fwmQI-P20ljw - height: 3024 - width: 4032 - author_attributions: - - displayName: William Wissink - uri: https://maps.google.com/maps/contrib/107507224894632740009 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXCFMwxXijcErgThcJgzSv2tLIMyG9ivmmWmFrJGCBQJr0le9uf=s100-p-k-no-mo - - name: places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU6Trj9kf7N1k2PguYYIToCtsBfLZ-R-Da05nlcN3P2D7-779D7jK01g2BS4WYZEjkQdkpLVXPBrh7RMIRZ72SCMtW2LMTgwd6L1m-kdgrX10rwQA2rjHjf6J-ZO-b283eGhxr_UKK39p7u_WVz8t3tGlkKwelM4V1_5_WCkH43CIwJHYHivQzCXcNefTGkOPP8iIRHhFYfxz0JVJ2TDLNlA18GnUyQVwfDVZiVYKvjN_0NrjWScPZ-ai1nH8UD5kxbGsR6y_9FmA327DfiRPwyRM9reZRakzUjDJZ2eI3NW3t8FHCTmJB_hgjhn0N1HQ0ffPQ2ljmLQ2XRpPubzLanawk4c5jtxhkknDkXYa82A6qWfQai9KwQdVrTEywHeDhJzkAeroeBX7pvSu2sdjSotEQdCEjHXbonntTDp1p-LA8e7 - height: 4032 - width: 3024 - author_attributions: - - displayName: William Wissink - uri: https://maps.google.com/maps/contrib/107507224894632740009 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXCFMwxXijcErgThcJgzSv2tLIMyG9ivmmWmFrJGCBQJr0le9uf=s100-p-k-no-mo - - name: places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU7f2AaPgjeQSs8GFQJj9hL1As0i2_ulkaPrEozfwLDQ5qD0FZaYL9bgbS_ccrKdcwq95yX3wHKMoYAVkQqSWwxFid7ST4voABxaPyHxuT-8gfC6rTZZ12X8DvV7L-S14mywnwNb8qaDRmIch1cZShJYSqvkXpQnIZRSfN-3sHBKq55B-IfRXtzyGJzb1LqeXUWu82h_f4sVwZZC2mDQvUtq7tb_yw8qAbglXPnUC0Cwizs0H6Pilt56gAEIMoe9OCgU5l8njogrQJGav91fk5ml3zGuHmbb_drjB8rDxmCkSTSREqNZgUpDu9kQ7vC1yXrisltFje9Qhz0xKqPN_yDQJZCbe3BYVufbygLvLGmfXDLCHSKGq0CQObI6cgiV7RgHY8PYps7FqeMzMHcLtzq4L8PAh3QMBXcEd_VaM4I - height: 3200 - width: 4800 - author_attributions: - - displayName: Johan Hoekstra - uri: https://maps.google.com/maps/contrib/100735972152123556178 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjWLWFx4RUECuwsy8YFlvL7GWHhentGJMNkiV9stFUbdAl-uIATaFA=s100-p-k-no-mo - - name: places/ChIJ5x8WLjLpyEcRJVNB-4BbZRU/photos/AWn5SU5vKJXTnIn8Sbn7VdDHKN3vjo7PXO9xcipzR2tKm4cOoOcLnwzkOLxePBAGqheho8yRwbSghlqwHu7NW8UrciV4RoQAhE_Pl2SIHbMQ_1Cx1J9HKkNx-gvgzaAxgpaDfOcdrd79DoxGsTT-cFKLYLqUpIfxEqac4T_I0krRZ0zCCLTkITILinR93nGWLg7xEceDUVonIp-_m_R58-3gJFTWtNpFtYSzcRUdNgMOC5gLKPQx7AOTfwUIEzHQEMTyUkTIMumCkNsVHoEj580pCXf91DRcdWpTqVmWBvFZGwVMAN3h2zCIFmJC-YH1mst7vahX1VQ-gcdqtr2lVaoZoMzolh3D6LTBsgioCJvh6I1mQNEzziweY5BaJykipsSKfyRzJ0oIgdgAa1YTRYK_9lQYTZ4ySjmpuTu4m_w__bT2J2Fm - height: 3024 - width: 4032 - author_attributions: - - displayName: William Wissink - uri: https://maps.google.com/maps/contrib/107507224894632740009 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXCFMwxXijcErgThcJgzSv2tLIMyG9ivmmWmFrJGCBQJr0le9uf=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=1541739056973566757&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.0649448,5.5256767&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/tree_pinlet - icon_background_color: '#4DB546' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Gijsbert Japicx (Holckema) Stichting, Wipstrjitte 6, Boalsert - (Bolsward), Netherlands diff --git a/data/nde/enriched/entries/0113_historische_vereniging_appelscha_eo.yaml b/data/nde/enriched/entries/0113_historische_vereniging_appelscha_eo.yaml new file mode 100644 index 0000000000..54379ff399 --- /dev/null +++ b/data/nde/enriched/entries/0113_historische_vereniging_appelscha_eo.yaml @@ -0,0 +1,158 @@ +# Enriched NDE Entry 0113: Historische Vereniging Appelscha e.o. +# Source: NDE dataset + website research + Google Maps enrichment +# Enrichment date: 2025-11-28 + +original_entry: + plaatsnaam_bezoekadres: Appelscha + straat_en_huisnummer_bezoekadres: Bosberg 1 + organisatie: Historische Vereniging Appelscha en omstreken + webadres_organisatie: https://www.hvappelscha.nl/ + type_organisatie: historische vereniging + systeem: ZCBS + type: + - S + +entry_index: 113 +processing_timestamp: '2025-11-28T15:00:00+00:00' +enrichment_status: enriched +enrichment_source: website_research + +# Enriched organization information +organization: + name_nl: Historische Vereniging Appelscha e.o. + name_full: Historische Vereniging Appelscha en omstreken + abbreviation: HVA + type: historische vereniging + institution_type: + - S # Collecting Society + description_nl: >- + De Historische Vereniging Appelscha en omstreken (HVA) is opgericht in april 2001 + en heeft ruim 860 leden. De vereniging is gevestigd in "De Hoolten Klinte", het + voormalige natuurhistorisch museum aan de Bosberg in Appelscha. De vereniging + verzamelt, bewaart en ontsluit materiaal over de geschiedenis van Appelscha en + omgeving, met een fotoarchief van meer dan 5.100 foto's en een bibliotheek met + meer dan 250 boeken. + description_en: >- + The Historical Society Appelscha and surroundings (HVA) was founded in April 2001 + and has over 860 members. The society is located in "De Hoolten Klinte" (The Wooden + Clink), a former natural history museum on Bosberg in Appelscha. The society + collects, preserves, and provides access to materials about the history of + Appelscha and its surroundings, with a photo archive of over 5,100 photos and + a library with more than 250 books. + founding_date: '2001-04' + membership_count: 860+ + legal_form: vereniging + +# Location details +location: + street_address: Bosberg 1 + postal_code: 8426 GJ + city: Appelscha + municipality: Ooststellingwerf + province: Friesland + country: NL + coordinates: + latitude: 52.9520102 + longitude: 6.342502 + building_name: De Hoolten Klinte + building_history: Voormalig natuurhistorisch museum + +# Contact information +contact: + website: https://www.hvappelscha.nl/ + phone: +31 516 433 738 + opening_hours: + regular: Dinsdag 8:30-11:30 + note: Inloop voor leden en bezoekers + +# Collections and archives +collections: + - name: Fotoarchief + type: photographic collection + description: Historische foto's van Appelscha en omstreken + extent: 5.100+ foto's + digital_access: Beeldbank op website + url: https://www.hvappelscha.nl/beeldbank/ + - name: Bibliotheek + type: library + description: Boeken over lokale en regionale geschiedenis + extent: 250+ boeken + digital_access: Beeldbank op website + - name: Documentenarchief + type: archival collection + description: Historische documenten en archiefstukken + +# Publications +publications: + - title: De Zoolstede + type: periodical + frequency: kwartaalblad + description: Verenigingsblad met artikelen over lokale geschiedenis + note: Verschijnt 4x per jaar + +# Managed heritage sites +managed_sites: + - name: Openluchttheater De Koele + type: outdoor theater + description: Openluchttheater in Appelscha, beheerd door HVA + - name: Het Cachot + type: historic building + description: Voormalige gevangenis, nu bezoekersobject + - name: Riemsoord + type: exhibition space + description: Expositieruimte van de vereniging + +# Digital platforms +digital_platforms: + - platform_name: HVA Website + platform_url: https://www.hvappelscha.nl/ + platform_type: organizational website + features: + - Beeldbank (foto's en boeken) + - Verenigingsnieuws + - Informatie over activiteiten + - platform_name: Beeldbank + platform_url: https://www.hvappelscha.nl/beeldbank/ + platform_type: image database + description: Doorzoekbaar fotoarchief en boekcollectie + +# Activities +activities: + - type: Boekenmarkt + frequency: 2-3x per jaar + description: Tweedehands boekenmarkt in De Hoolten Klinte + - type: Lezingen + description: Lezingen over lokale geschiedenis + - type: Excursies + description: Historische wandelingen en excursies + +# Identifiers +identifiers: + - scheme: google_place_id + value: ChIJvxZk1ic_yEcREtzc9nsSFGI + +# Google Maps enrichment data +google_maps_enrichment: + place_id: ChIJvxZk1ic_yEcREtzc9nsSFGI + name: Historische Vereniging Appelscha E.O + fetch_timestamp: '2025-11-28T09:49:41.744083+00:00' + api_status: OK + formatted_address: Bosberg 1, 8426 GJ Appelscha + business_status: OPERATIONAL + rating: 4.5 + total_ratings: 14 + google_maps_url: https://maps.google.com/?cid=7067294038883097618 + +# Provenance +provenance: + data_sources: + - NDE registry + - Organization website (https://www.hvappelscha.nl/) + - Google Maps Places API + enrichment_date: '2025-11-28' + enrichment_method: website_research + confidence_score: 0.90 + notes: >- + Enriched from website research. HVA is a very active local historical society + with significant photo archive and library collection. The society also manages + several heritage sites in Appelscha including an outdoor theater and historic cachot. diff --git a/data/nde/enriched/entries/0113_unknown.yaml b/data/nde/enriched/entries/0113_unknown.yaml deleted file mode 100644 index a1c832510f..0000000000 --- a/data/nde/enriched/entries/0113_unknown.yaml +++ /dev/null @@ -1,145 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Appelscha - straat_en_huisnummer_bezoekadres: Bosberg 1 - organisatie: Historische Vereniging Appelscha en omstreken - webadres_organisatie: https://www.hvappelscha.nl/ - type_organisatie: historische vereniging - systeem: ZCBS - type: - - S -entry_index: 113 -processing_timestamp: '2025-11-27T15:13:03.021295+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJvxZk1ic_yEcREtzc9nsSFGI - name: Historische Vereniging Appelscha E.O - fetch_timestamp: '2025-11-28T09:49:41.744083+00:00' - api_status: OK - coordinates: - latitude: 52.9520102 - longitude: 6.342502 - formatted_address: Bosberg 1, 8426 GJ Appelscha - short_address: Bosberg 1, Appelscha - address_components: - - long_name: '1' - short_name: '1' - types: - - street_number - - long_name: Bosberg - short_name: Bosberg - types: - - route - - long_name: Appelscha - short_name: Appelscha - types: - - locality - - political - - long_name: Ooststellingwerf - short_name: Ooststellingwerf - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8426 GJ - short_name: 8426 GJ - types: - - postal_code - phone_local: 0516 433 738 - phone_international: +31 516 433 738 - website: http://www.hvappelscha.nl/ - google_place_types: - - point_of_interest - - establishment - business_status: OPERATIONAL - rating: 4.5 - total_ratings: 14 - reviews: - - author_name: Aale Van Der Heide - author_uri: https://www.google.com/maps/contrib/116877063758363342058/reviews - rating: 4 - relative_time_description: 3 jaar geleden - text: Leuke boekenmarkt op een goede lokatie đ - publish_time: '2022-08-28T17:52:24.594021Z' - - author_name: Mariska - author_uri: https://www.google.com/maps/contrib/108052880644623123953/reviews - rating: 4 - relative_time_description: 3 jaar geleden - text: 'Wij waren hier voor de boekenmarkt, die wordt twee is drie keer per jaar - georganiseerd. Veel keus, overzichtelijk uitgestald en leuke prijsjes, een Euro - per boek. De vrijwilligers waren ook erg vriendelijk. - - - Het gebouw zelf rook wat vochtig en wij hebben niet de tijd genomen de uitgestalde - goederen te bekijken langs de wanden.' - publish_time: '2022-08-31T06:59:37.525660Z' - - author_name: Janny van Veen - author_uri: https://www.google.com/maps/contrib/106355609530063541634/reviews - rating: 5 - relative_time_description: 2 jaar geleden - text: Ja prachtig, fijn te zien dat jullie zo gedreven zijn, kom op een dinsdagochtend - met meer informatie over het Compagnonshotel. - publish_time: '2023-11-04T21:41:43.994512Z' - - author_name: Stefan Timmer - author_uri: https://www.google.com/maps/contrib/105142554255338377966/reviews - rating: 5 - relative_time_description: een jaar geleden - text: Goed voor elkaar en geregeld door een gezellige club mensen ! - publish_time: '2024-02-09T11:30:29.158702Z' - - author_name: maarten jeronimus - author_uri: https://www.google.com/maps/contrib/109280568083927879054/reviews - rating: 5 - relative_time_description: 3 jaar geleden - text: Klein commitee, prima locatie. - publish_time: '2022-02-08T08:07:45.102398Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU7hq29lQpblbWUooDepJEKud3Rlfbs16e81b7Tff4I1WkiKn09H5nT4MRWFmJCEGuH9CSy2dAmWkf-0M5v3ZTdzrczjtgbU0KCUUA8QvnlYqYudOYToOPtkMQpeTPsFRsy-JZqK8w9oiHfYaCTBYLy2Z37uTLtXd9BjbfZ404kGhX82BAD2R5X5sDe0XDchNi2ajZVXfJgP_tO-G5yqJsv8UJ4RWpp-rv4PUNnkSnWzzeadXUUDpnli2RnwoE4EjDU1V9sosTtmxQd_P6E25vUbMLp5hUIzP11EJJ_QZkLZdVXrNBnkEksbdYS4ZtAJrJWY_iDuTJIWl1nFmxgLuA0co8VjKmmhw9u_Eky39b54rk25-GekwY1v791NGFtGDHDwGWadcBybOYlRCgLuBAJJTVIMlkhYjQ6jD8syw3eF5K5y/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU7LLLopV8luGGk3tFGkyBN7X4yyHC09zOFA2rXBywlKiwHLLeHyDL-cjbFjJr1fIrS1MQl9_bfgm2aY3lgf5U4QGp5W0qhS4-N_mkrmZfW1K7QIBPjJjsTuHnZ_GdWDwK5C-WY9m02DZE6gQI0pnPQz6SeA7pb0PEVPDdCyuEAYFZgBsrqviSZYr4VUM8Pc52AZz9jtHAtKkCuyESGS83Ou_24WtxS4MGHM9lGyrvhP_K9UI8IuFRWTWmpCbr409fg52kS8jxy2Bg7ORCgG7YbmAy7Ihs9DEe5RONttZUoObjc3kFvcafwlZ8_YGJhu6rhZwnvKACbaidl4GX9GSCDci-lFuxk9VFqE7LH5GbLHekfGcbmcdQ9hvri1rdJISfmU9U4R7Q2zZrMCN4zo6iEUA66f1lvVn4C2NVJ5krH71Jst/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU5CBPmUekYdd8OltN2irYAALvA7dz5Ma9YAyutjMJWqZZnzSW03lgwwkwPGm_166-fszloCKdCwa9vL3FfQhN7AhFw58WQVdUG8TAvjrHrYr6PMny2Z3ZbSd6mi_Tb-FsOfMAa22D_jBcXFfLpiZ0yn0JxX5N_HIgS0Qh-nbh--U60uAYhiW2DHfwVezxMNwEny08cbzGY_SO2R3-AKr6goJt5JezS5uyXock8migKPcxAj8fx9TP-ELXv0vL7aIXklYK-wYY36w1CxPE86aCRnysy-ghIQ-VWx8F1JPNBJIHT09gosswRXRJnb37dGrjjTCVfoDO8Yll35hGS-3oXFUJqXpDE9DQEOIhnZJsEUK7z4t6ZhkSnL4h7wFJVK4wAyXiyLwH-KON5yAxaYWVD_B6Bm3oKQQCY-2K45ANVCqPQ/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU7zMfkcc9-Zp2iUbGoCbs_6aCBf8l7u_Ahb8Q8E-IfHPs02tCTJYRfY4t1UlPg7JUhSsSjGPtcFAbZtiIaJ4Q0TRFRIi6XTn8ang90BPk9VUTkL6cbdLW47MLORUsGlFtiNSeVVpePbn0BcLW9H4FOSndfu7ilyPr5N37NWZ_yvOX9rYlnpd59hNocFjZGAYka6eL3uu98ZQz07LwXbf0GbAs5iYeAKsCaoo8l2oissgrUAXY9J2pWO_aiuFet58j1muQLQ5Nde2QYdMiqvD1z5qKfkSNj9-TcEUx-iD2VW8gXM28u9imUsPE9Ps30LFvAq5znxY4qDgh3NGeQJbnHM7e9y-MHQzelVoWOo42fGWSIAlRA49K-qfgSqRkkswNUOoL1HLj2AsGNFJOR8fSdpgDioIf0txxilkMJW99c/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU7hq29lQpblbWUooDepJEKud3Rlfbs16e81b7Tff4I1WkiKn09H5nT4MRWFmJCEGuH9CSy2dAmWkf-0M5v3ZTdzrczjtgbU0KCUUA8QvnlYqYudOYToOPtkMQpeTPsFRsy-JZqK8w9oiHfYaCTBYLy2Z37uTLtXd9BjbfZ404kGhX82BAD2R5X5sDe0XDchNi2ajZVXfJgP_tO-G5yqJsv8UJ4RWpp-rv4PUNnkSnWzzeadXUUDpnli2RnwoE4EjDU1V9sosTtmxQd_P6E25vUbMLp5hUIzP11EJJ_QZkLZdVXrNBnkEksbdYS4ZtAJrJWY_iDuTJIWl1nFmxgLuA0co8VjKmmhw9u_Eky39b54rk25-GekwY1v791NGFtGDHDwGWadcBybOYlRCgLuBAJJTVIMlkhYjQ6jD8syw3eF5K5y - height: 2820 - width: 3763 - author_attributions: - - displayName: Freek Dijkstra - uri: https://maps.google.com/maps/contrib/100988984319679464394 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocKVKfR2DBbnsea7pBHFNEnPowqqFAjFoXbKr1npWvzvjtYuvg=s100-p-k-no-mo - - name: places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU7LLLopV8luGGk3tFGkyBN7X4yyHC09zOFA2rXBywlKiwHLLeHyDL-cjbFjJr1fIrS1MQl9_bfgm2aY3lgf5U4QGp5W0qhS4-N_mkrmZfW1K7QIBPjJjsTuHnZ_GdWDwK5C-WY9m02DZE6gQI0pnPQz6SeA7pb0PEVPDdCyuEAYFZgBsrqviSZYr4VUM8Pc52AZz9jtHAtKkCuyESGS83Ou_24WtxS4MGHM9lGyrvhP_K9UI8IuFRWTWmpCbr409fg52kS8jxy2Bg7ORCgG7YbmAy7Ihs9DEe5RONttZUoObjc3kFvcafwlZ8_YGJhu6rhZwnvKACbaidl4GX9GSCDci-lFuxk9VFqE7LH5GbLHekfGcbmcdQ9hvri1rdJISfmU9U4R7Q2zZrMCN4zo6iEUA66f1lvVn4C2NVJ5krH71Jst - height: 2028 - width: 3697 - author_attributions: - - displayName: Aale Van Der Heide - uri: https://maps.google.com/maps/contrib/116877063758363342058 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVBtgS49p_hjrlrxdLyQGOkxxvEBwta_lAh4vGOjakPzKe75AwLPg=s100-p-k-no-mo - - name: places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU5CBPmUekYdd8OltN2irYAALvA7dz5Ma9YAyutjMJWqZZnzSW03lgwwkwPGm_166-fszloCKdCwa9vL3FfQhN7AhFw58WQVdUG8TAvjrHrYr6PMny2Z3ZbSd6mi_Tb-FsOfMAa22D_jBcXFfLpiZ0yn0JxX5N_HIgS0Qh-nbh--U60uAYhiW2DHfwVezxMNwEny08cbzGY_SO2R3-AKr6goJt5JezS5uyXock8migKPcxAj8fx9TP-ELXv0vL7aIXklYK-wYY36w1CxPE86aCRnysy-ghIQ-VWx8F1JPNBJIHT09gosswRXRJnb37dGrjjTCVfoDO8Yll35hGS-3oXFUJqXpDE9DQEOIhnZJsEUK7z4t6ZhkSnL4h7wFJVK4wAyXiyLwH-KON5yAxaYWVD_B6Bm3oKQQCY-2K45ANVCqPQ - height: 1800 - width: 4000 - author_attributions: - - displayName: Aale Van Der Heide - uri: https://maps.google.com/maps/contrib/116877063758363342058 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVBtgS49p_hjrlrxdLyQGOkxxvEBwta_lAh4vGOjakPzKe75AwLPg=s100-p-k-no-mo - - name: places/ChIJvxZk1ic_yEcREtzc9nsSFGI/photos/AWn5SU7zMfkcc9-Zp2iUbGoCbs_6aCBf8l7u_Ahb8Q8E-IfHPs02tCTJYRfY4t1UlPg7JUhSsSjGPtcFAbZtiIaJ4Q0TRFRIi6XTn8ang90BPk9VUTkL6cbdLW47MLORUsGlFtiNSeVVpePbn0BcLW9H4FOSndfu7ilyPr5N37NWZ_yvOX9rYlnpd59hNocFjZGAYka6eL3uu98ZQz07LwXbf0GbAs5iYeAKsCaoo8l2oissgrUAXY9J2pWO_aiuFet58j1muQLQ5Nde2QYdMiqvD1z5qKfkSNj9-TcEUx-iD2VW8gXM28u9imUsPE9Ps30LFvAq5znxY4qDgh3NGeQJbnHM7e9y-MHQzelVoWOo42fGWSIAlRA49K-qfgSqRkkswNUOoL1HLj2AsGNFJOR8fSdpgDioIf0txxilkMJW99c - height: 1547 - width: 3367 - author_attributions: - - displayName: Aale Van Der Heide - uri: https://maps.google.com/maps/contrib/116877063758363342058 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVBtgS49p_hjrlrxdLyQGOkxxvEBwta_lAh4vGOjakPzKe75AwLPg=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=7067294038883097618&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.9520102,6.342502&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Historische Vereniging Appelscha en omstreken, Bosberg 1, - Appelscha, Netherlands diff --git a/data/nde/enriched/entries/0114_plaatselijk_belang_meiinoar_ien.yaml b/data/nde/enriched/entries/0114_plaatselijk_belang_meiinoar_ien.yaml new file mode 100644 index 0000000000..0c3e736105 --- /dev/null +++ b/data/nde/enriched/entries/0114_plaatselijk_belang_meiinoar_ien.yaml @@ -0,0 +1,111 @@ +original_entry: + plaatsnaam_bezoekadres: De Knipe + straat_en_huisnummer_bezoekadres: Learloaier 7 + organisatie: Plaatselijk Belang "Meiinoar Ien" De Knipe + webadres_organisatie: https://deknipe.frl/ + type_organisatie: historische vereniging + systeem: ZCBS + type: + - S +entry_index: 114 +processing_timestamp: '2025-11-27T15:13:03.022015+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJd6TBkY9ZyEcR6Z8LhD-OyiY + name: Plaatselijk Belang De Warren + fetch_timestamp: '2025-11-28T09:49:42.268316+00:00' + api_status: OK + coordinates: + latitude: 53.037169 + longitude: 5.964592499999999 + formatted_address: Warrewei 35, 8406 AD Tijnje + short_address: Warrewei 35, Tijnje + address_components: + - long_name: '35' + short_name: '35' + types: + - street_number + - long_name: Warrewei + short_name: Warrewei + types: + - route + - long_name: Tijnje + short_name: Tijnje + types: + - locality + - political + - long_name: Opsterland + short_name: Opsterland + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8406 AD + short_name: 8406 AD + types: + - postal_code + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + google_maps_url: https://maps.google.com/?cid=2795202922186252265&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.037169,5.964592499999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 + match_warning: Google Maps returned a different organization (Plaatselijk Belang De Warren in Tijnje) - may be wrong match +google_maps_status: SUCCESS +google_maps_search_query: Plaatselijk Belang "Meiinoar Ien" De Knipe, Learloaier 7, De Knipe, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:30:00+00:00' + fetch_status: success + source_url: https://deknipe.frl/ + language: fy + organization_details: + official_name: Plaatselijk Belang "Meiinoar Ien" De Knipe + name_meaning: '"Meiinoar Ien" is Frisian for "Together One"' + type: Plaatselijk Belang (village association) + location: De Knipe, Friesland + municipality: Opsterland + description: >- + Village association for De Knipe (Frisian: De Knipe/De Kniip), a small village + in southeastern Friesland. The association promotes community interests and + preserves local history and culture. + activities: + - type: local_history + description: Maintains historical information about the village + - type: community_events + description: Organizes village activities and events + - type: newsletter + name: Meiinoar Ien newsletter + description: Regular newsletter for village residents + website_sections: + - section: History (Skiednis) + description: Local history of De Knipe village + - section: Organizations (Ferienings) + description: Overview of local clubs and organizations + - section: Photos (Foto's) + description: Historical and contemporary photos + - section: News (Nijs) + description: Village news and announcements + contact: + address: Learloaier 7, De Knipe + region: Friesland + heritage_significance: + type: local_history + focus: Village history, Frisian culture, community heritage + collection_type: historical documentation + institution_classification: + primary_type: S + type_label: Collecting Society / Local Heritage Group + subtype: plaatselijk_belang + heritage_function: Local history preservation, community heritage diff --git a/data/nde/enriched/entries/0114_unknown.yaml b/data/nde/enriched/entries/0114_unknown.yaml deleted file mode 100644 index f783866ebe..0000000000 --- a/data/nde/enriched/entries/0114_unknown.yaml +++ /dev/null @@ -1,68 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: De Knipe - straat_en_huisnummer_bezoekadres: Learloaier 7 - organisatie: Plaatselijk Belang "Meiinoar Ien" De Knipe - webadres_organisatie: https://deknipe.frl/ - type_organisatie: historische vereniging - systeem: ZCBS - type: - - S -entry_index: 114 -processing_timestamp: '2025-11-27T15:13:03.022015+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJd6TBkY9ZyEcR6Z8LhD-OyiY - name: Plaatselijk Belang De Warren - fetch_timestamp: '2025-11-28T09:49:42.268316+00:00' - api_status: OK - coordinates: - latitude: 53.037169 - longitude: 5.964592499999999 - formatted_address: Warrewei 35, 8406 AD Tijnje - short_address: Warrewei 35, Tijnje - address_components: - - long_name: '35' - short_name: '35' - types: - - street_number - - long_name: Warrewei - short_name: Warrewei - types: - - route - - long_name: Tijnje - short_name: Tijnje - types: - - locality - - political - - long_name: Opsterland - short_name: Opsterland - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8406 AD - short_name: 8406 AD - types: - - postal_code - google_place_types: - - point_of_interest - - establishment - business_status: OPERATIONAL - google_maps_url: https://maps.google.com/?cid=2795202922186252265&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.037169,5.964592499999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Plaatselijk Belang "Meiinoar Ien" De Knipe, Learloaier 7, - De Knipe, Netherlands diff --git a/data/nde/enriched/entries/0119_liberaal_joodse_gemeente_friesland.yaml b/data/nde/enriched/entries/0119_liberaal_joodse_gemeente_friesland.yaml new file mode 100644 index 0000000000..7a1b441d14 --- /dev/null +++ b/data/nde/enriched/entries/0119_liberaal_joodse_gemeente_friesland.yaml @@ -0,0 +1,107 @@ +original_entry: + plaatsnaam_bezoekadres: Heerenveen + straat_en_huisnummer_bezoekadres: it Foardek 2 + organisatie: Liberaal Joodse Gemeente Friesland + type_organisatie: kenniscentrum + opmerkingen_inez: Geen website gevonden. + isil-code_na: NL-HrvLJGF + type: + - S +entry_index: 119 +processing_timestamp: '2025-11-27T15:13:11.883038+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJu0tyVABfyEcRURRariWXu5k + name: Joodse begraafplaats + fetch_timestamp: '2025-11-28T09:49:45.262016+00:00' + api_status: OK + coordinates: + latitude: 52.9679181 + longitude: 5.9561221 + formatted_address: Veensluis, 8448 GH Heerenveen + short_address: Veensluis, Heerenveen + address_components: + - long_name: Veensluis + short_name: Veensluis + types: + - route + - long_name: Heerenveen + short_name: Heerenveen + types: + - locality + - political + - long_name: Heerenveen + short_name: Heerenveen + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8448 GH + short_name: 8448 GH + types: + - postal_code + google_place_types: + - cemetery + - point_of_interest + - establishment + primary_type: cemetery + business_status: OPERATIONAL + google_maps_url: https://maps.google.com/?cid=11077613896542590033&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.9679181,5.9561221&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/cemetery_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 + match_note: Google Maps found Jewish cemetery instead of the Liberal Jewish Community organization +google_maps_status: SUCCESS +google_maps_search_query: Liberaal Joodse Gemeente Friesland, it Foardek 2, Heerenveen, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T15:00:00+00:00' + fetch_status: no_website + source_note: No website found for this organization (as noted in original data) + organization_details: + official_name: Liberaal Joodse Gemeente Friesland + type: kenniscentrum / religious heritage organization + denomination: Liberal Judaism (Liberaal Joods) + location: Heerenveen, Friesland + isil_code: NL-HrvLJGF + description: >- + Liberal Jewish Community of Friesland. Part of the Liberal Jewish + movement in the Netherlands, serving the Jewish community in the + Friesland province. May maintain archives and historical materials + related to Jewish life in Friesland. + context: + jewish_heritage_friesland: >- + Friesland has a historic Jewish community dating back centuries. + Jewish communities existed in various Frisian towns including Leeuwarden + and Heerenveen. The community was decimated during WWII. Modern + Liberal Jewish communities preserve this heritage. + related_heritage: + - Jewish cemetery (Joodse begraafplaats) in Heerenveen area + - Historical synagogue sites in Friesland + - Jewish archives and documentation + contact: + address: it Foardek 2, Heerenveen + region: Friesland + heritage_significance: + type: religious_heritage + focus: Liberal Jewish heritage in Friesland + heritage_domains: + - Jewish community history + - Religious archives + - Memorial heritage (WWII remembrance) + institution_classification: + primary_type: S + type_label: Collecting Society / Religious Heritage Organization + subtype: jewish_community + heritage_function: Jewish heritage preservation and community archives + needs_verification: true + verification_notes: No website available; organization details should be verified diff --git a/data/nde/enriched/entries/0119_unknown.yaml b/data/nde/enriched/entries/0119_unknown.yaml deleted file mode 100644 index f34b74c900..0000000000 --- a/data/nde/enriched/entries/0119_unknown.yaml +++ /dev/null @@ -1,66 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Heerenveen - straat_en_huisnummer_bezoekadres: it Foardek 2 - organisatie: Liberaal Joodse Gemeente Friesland - type_organisatie: kenniscentrum - opmerkingen_inez: Geen website gevonden. - isil-code_na: NL-HrvLJGF - type: - - S -entry_index: 119 -processing_timestamp: '2025-11-27T15:13:11.883038+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJu0tyVABfyEcRURRariWXu5k - name: Joodse begraafplaats - fetch_timestamp: '2025-11-28T09:49:45.262016+00:00' - api_status: OK - coordinates: - latitude: 52.9679181 - longitude: 5.9561221 - formatted_address: Veensluis, 8448 GH Heerenveen - short_address: Veensluis, Heerenveen - address_components: - - long_name: Veensluis - short_name: Veensluis - types: - - route - - long_name: Heerenveen - short_name: Heerenveen - types: - - locality - - political - - long_name: Heerenveen - short_name: Heerenveen - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8448 GH - short_name: 8448 GH - types: - - postal_code - google_place_types: - - cemetery - - point_of_interest - - establishment - primary_type: cemetery - business_status: OPERATIONAL - google_maps_url: https://maps.google.com/?cid=11077613896542590033&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.9679181,5.9561221&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/cemetery_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Liberaal Joodse Gemeente Friesland, it Foardek 2, Heerenveen, - Netherlands diff --git a/data/nde/enriched/entries/0124_museum_oold_ark_korenmolen_de_weyert.yaml b/data/nde/enriched/entries/0124_museum_oold_ark_korenmolen_de_weyert.yaml new file mode 100644 index 0000000000..b5c5adc0e5 --- /dev/null +++ b/data/nde/enriched/entries/0124_museum_oold_ark_korenmolen_de_weyert.yaml @@ -0,0 +1,162 @@ +# Enriched NDE Entry 0124: Museum Oold Ark en Korenmolen De Weyert +# Source: NDE dataset + website research + Google Maps enrichment +# Enrichment date: 2025-11-28 + +original_entry: + plaatsnaam_bezoekadres: Makkinga + straat_en_huisnummer_bezoekadres: Lyclamaweg 15 b + organisatie: Stichting Korenmolen "De Weyert" + webadres_organisatie: https://www.museumenmolenmakkinga.nl/ + type_organisatie: museummolen + type: + - M + +entry_index: 124 +processing_timestamp: '2025-11-28T15:30:00+00:00' +enrichment_status: enriched +enrichment_source: website_research + +# Enriched organization information +organization: + name_nl: Museum Oold Ark en Korenmolen De Weyert + name_official: Stichting Korenmolen "De Weyert" + type: museummolen + institution_type: + - M # Museum + description_nl: >- + Museum Oold Ark en Korenmolen De Weyert in Makkinga biedt een kijkje in het + verleden met een combinatie van een streekmuseum en een werkende korenmolen. + Het museum toont historische objecten en ambachten uit de streek Stellingwerven. + De korenmolen De Weyert is een werkende molen waar bezoekers het malen van graan + kunnen zien. De stichting heeft in 2025 de Vrijwilligersprijs voor Cultureel + Erfgoed van de gemeente Ooststellingwerf gewonnen. + description_en: >- + Museum Oold Ark and Grain Mill De Weyert in Makkinga offers a glimpse into the + past with a combination of a regional museum and a working grain mill. The museum + displays historical objects and crafts from the Stellingwerven region. The grain + mill De Weyert is a working mill where visitors can watch grain being milled. + The foundation won the 2025 Volunteer Award for Cultural Heritage from the + municipality of Ooststellingwerf. + legal_form: stichting + awards: + - name: Vrijwilligersprijs voor Cultureel Erfgoed + year: 2025 + awarded_by: Gemeente Ooststellingwerf + +# Location details +location: + street_address: Lyclamaweg 15a + postal_code: 8423 TC + city: Makkinga + municipality: Ooststellingwerf + province: Friesland + country: NL + coordinates: + latitude: 52.982199599999994 + longitude: 6.217189900000001 + +# Contact information +contact: + website: https://www.museumenmolenmakkinga.nl/ + opening_hours: + regular: Zaterdag 09:30-13:30 + note: Gesloten maandag t/m vrijdag en zondag + +# Collections and exhibits +collections: + - name: Streekmuseum Oold Ark + type: museum collection + description: Historische objecten en ambachten uit de Stellingwerven + subjects: + - Streekgeschiedenis + - Oude ambachten + - Agrarisch erfgoed + - name: Korenmolen De Weyert + type: industrial heritage + description: Werkende korenmolen met demonstraties van het maalproces + subjects: + - Molenerfgoed + - Graanverwerking + - Traditionele ambachten + +# Facilities +facilities: + - type: museum + name: Museum Oold Ark + description: Streekmuseum met historische objecten + - type: windmill + name: Korenmolen De Weyert + description: Werkende korenmolen + - type: shop + name: Molen winkel + description: Verkoop van molenproducten + - type: terrace + description: Terras voor koffie en versnaperingen + +# Activities and events +activities: + - type: Vlooimarkt + frequency: Laatste zaterdag van de maand + description: Gezellige vlooimarkt bij het museum + - type: Stellingwerver Molendag + description: Speciaal evenement voor molenliefhebbers + - type: Friese Molendag + frequency: Jaarlijks (oktober) + description: Landelijk evenement met open molens + - type: Open Monumentendag + frequency: Jaarlijks + description: Deelname aan landelijke Open Monumentendag + - type: Kunstexposities + location: De Spil en de loods van Oold Ark + description: Regelmatige kunstexposities + - type: Jubileumdag + date: '2025-05-24' + description: Feestelijke jubileumdag met oude dorsmachine demonstratie + +# Digital platforms +digital_platforms: + - platform_name: Museum en Molen Makkinga Website + platform_url: https://www.museumenmolenmakkinga.nl/ + platform_type: organizational website + features: + - Nieuws + - Nieuwsbrieven archief + - Bezoekersinformatie + - Educatie + +# Educational programs +education: + programs_available: true + description: Educatieve programma's voor scholen en groepen + +# Identifiers +identifiers: + - scheme: google_place_id + value: ChIJHXylosZGyEcRdvpgEUzsJbY + +# Google Maps enrichment data +google_maps_enrichment: + place_id: ChIJHXylosZGyEcRdvpgEUzsJbY + name: Museum Oold Ark en korenmolen De Weyert + fetch_timestamp: '2025-11-28T09:49:48.512010+00:00' + api_status: OK + formatted_address: Lyclamaweg 15a, 8423 TC Makkinga + business_status: OPERATIONAL + rating: 4.6 + total_ratings: 55 + primary_type: museum + google_maps_url: https://maps.google.com/?cid=13125156500494416502 + +# Provenance +provenance: + data_sources: + - NDE registry + - Organization website (https://www.museumenmolenmakkinga.nl/) + - Google Maps Places API + enrichment_date: '2025-11-28' + enrichment_method: website_research + confidence_score: 0.95 + notes: >- + Enriched from website research. Combination museum and working windmill in + Stellingwerven. Won 2025 Volunteer Award for Cultural Heritage. Run by dedicated + volunteers. Excellent reviews mentioning enthusiastic volunteers and educational value. diff --git a/data/nde/enriched/entries/0124_unknown.yaml b/data/nde/enriched/entries/0124_unknown.yaml deleted file mode 100644 index cbbc5228a9..0000000000 --- a/data/nde/enriched/entries/0124_unknown.yaml +++ /dev/null @@ -1,207 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Makkinga - straat_en_huisnummer_bezoekadres: Lyclamaweg 15 b - organisatie: Stichting Korenmolen "De Weyert" - webadres_organisatie: https://www.museumenmolenmakkinga.nl/ - type_organisatie: museummolen - type: - - M -entry_index: 124 -processing_timestamp: '2025-11-27T15:13:20.680630+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJHXylosZGyEcRdvpgEUzsJbY - name: Museum Oold Ark en korenmolen De Weyert - fetch_timestamp: '2025-11-28T09:49:48.512010+00:00' - api_status: OK - coordinates: - latitude: 52.982199599999994 - longitude: 6.217189900000001 - formatted_address: Lyclamaweg 15a, 8423 TC Makkinga - short_address: Lyclamaweg 15a, Makkinga - address_components: - - long_name: 15a - short_name: 15a - types: - - street_number - - long_name: Lyclamaweg - short_name: Lyclamaweg - types: - - route - - long_name: Makkinga - short_name: Makkinga - types: - - locality - - political - - long_name: Ooststellingwerf - short_name: Ooststellingwerf - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8423 TC - short_name: 8423 TC - types: - - postal_code - website: https://museumenmolenmakkinga.nl/ - google_place_types: - - museum - - point_of_interest - - establishment - primary_type: museum - business_status: OPERATIONAL - opening_hours: - open_now: false - periods: - - open: - day: 6 - hour: 9 - minute: 30 - close: - day: 6 - hour: 13 - minute: 30 - weekday_text: - - 'maandag: Gesloten' - - 'dinsdag: Gesloten' - - 'woensdag: Gesloten' - - 'donderdag: Gesloten' - - 'vrijdag: Gesloten' - - 'zaterdag: 09:30â13:30' - - 'zondag: Gesloten' - rating: 4.6 - total_ratings: 55 - reviews: - - author_name: Wolbert - author_uri: https://www.google.com/maps/contrib/113262634459847434171/reviews - rating: 4 - relative_time_description: 3 maanden geleden - text: 'Museum Oold Ark en Molen de Weyert in Makkinga biedt een kijkje in het - verleden met een museum en een werkende molen, waar bezoekers historische objecten - en ambachten kunnen ontdekken. - - - Wat de bezoekers kunnen verwachten: - - - Museum Oold Ark: Dit museum toont historische objecten en ambachten uit de streek. - - - Molen de Weyert: Een werkende molen waar men het malen van graan kan zien. - - - Koffie en terras: Bij het museum is een terras waar bezoekers koffie kunnen - drinken en genieten van de sfeer. - - Er kan binnen ook van een kopje koffie genoten worden. - - - Speciale evenementen: - - Vlomarkten: Elke laatste zaterdag van de maand is er een gezellige vlomarkt. - - - Museumdag: Tijdens de landelijke Museumdag is er vaak gratis entree voor het - museum. - - - Stellingwerver Molendag: Een speciaal evenement voor molenliefhebbers. - - - Kunstexposities: In de Spil en de loods van Oold Ark worden geregeld kunstexposities - gehouden. - - Open Monumentendag en Friese Molendag: Dit zijn twee andere belangrijke dagen - waarop het museum en de molen extra activiteiten hebben. - - - Mocht je in de buurt zijn sla dit dan niet over.' - publish_time: '2025-08-23T15:50:54.995119182Z' - - author_name: Ricardo Mulder - author_uri: https://www.google.com/maps/contrib/105872964429668180322/reviews - rating: 4 - relative_time_description: een jaar geleden - text: Mooie molen! Erg leuke rondleiding gehad. De kids vonden het geweldig. Naast - de molen een klein museum met allerlei oude ambachten uit vroegere tijden. Prachtig - initiatief gerund door vrijwilligers! - publish_time: '2024-07-06T13:05:09.288002Z' - - author_name: Jan Stedehouder - author_uri: https://www.google.com/maps/contrib/116833075408381870999/reviews - rating: 4 - relative_time_description: een jaar geleden - text: Leuk museum / molen, enthousiaste vrijwilligers. De moeite waard om er een - zaterdagmiddag aan te besteden. - publish_time: '2024-08-24T14:15:15.258397Z' - - author_name: Robert Giesen - author_uri: https://www.google.com/maps/contrib/107816131024231273809/reviews - rating: 5 - relative_time_description: 2 jaar geleden - text: Erg mooie molen en prima uitleg bij de rondleiding, we hebben ervan genoten. - publish_time: '2023-05-21T14:29:07.048746Z' - - author_name: Saskia Hoornveld Akkerman - author_uri: https://www.google.com/maps/contrib/114957666173075935096/reviews - rating: 4 - relative_time_description: 3 jaar geleden - text: Mooie molen en museum bijelkaar en ook nog genoten van een lekker bakje - koffie. - publish_time: '2022-05-25T19:34:43.246521Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU4o1VgaKRpAkPaKZSRiu9Cm5EhJWeeVDb4Ae4VYBwxVH4N3R39mq6ZIVfXgWiG6uwve-VE1Vtgofxi8olfpnqtfAFvsrNnWen0ALO7vE8XYlAyp42sQzZodWBqLelH7SbsY2lYtqgxqYcRjTx-3JfqiWLpiPzJHIlKeS3XVz3PsKrAvs7oektvTt5M_98XDfuGuq68bfn_Fm9Y1ASUN-C0y-PykX3yiCtA4IhIcSCBp-ZuaFKGcBqHlB62cpIe9J1uw9V_cHIM97B-EIqxrro4-HDl9-7_Vvp8aTP9UfHuoDNiVhk9Hz9exwvbcnuT0NrOT2vOzHHtrH1OjVyxU6oZ5tBJd8NSOUaD74mFBzBQNJ0HwDQH5MUafpet7qDdX5VvbMilK1cHa0Z6Jq5VzUPoyKBbgWtb392mwGihV_SM/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU5QlNeEpJfHxicf8m1nqnODbozlLKTlXNL_Q0X4ktS0osU5zz9Y4yTVr3X0vpILC0cVqN03zFA_v2YWYAk4LVB3sfuJV7G9kWYhhncby7M9NwXUzcbLS-FCB9s5OsVUSIKfBxNte4MqzIpgSD4c0SADLK-AvI-B-h9wt5_7RyA5gO7clc3anbktuIYGvbtJCPsVmG4XuZI9dH9VnlhuRMVpUqIAw6Ayn844Ev7ICnFFec5meiEsBmVE7Ot95EbuHHry4-EwC1IXmYF_ci4_I7nXa3wCS7saNjnm_gzYUHy4A_QOTrQAkTkEy9yuVSVUcPp94dOfyOoaD1ZLhJYv2ZabO2e0XuwRRnnLcwwXs87ai1C-PD1XQy74dKwrbYmq7IgLzwn3Q8uLvM2LAn4_RSkxm7RfQdEEaWVDTYSYigLyTw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU55kdE8DOfXcRw9-uPrqkXHZYCI24lxJkP7PbA5Mq3v6w_2GIHZj6u54MWuw0jus3l85-dSxDTQcq7yA6uy7mUQatMdnyG6UGKtMKf1oNOx4GBjGGZ-HOpsbORvqHaheOkfRVWgMzsOyU0YLd5AIY99pkgaJnmG1JFt-kMjMEIE_wNWT-n-3lbkdqwdNmnILL-eqKWRvSMVgYFElJD2mm2CSUImmsCuyjmwXOZKimeIXF78BfEmhUZdhXj8ABzuhL0SQSRJcm-gGWmgWh19HZDnoSgn0ciEePKY88RrWm6r5k_RTxH6OO0E_AcHISbsHIsvi3uu1CTWST-sKu7DFjB8YDxDt5y4z-YAUuC_wkc6es3zYusgY7QJUg_Zp-WD5UznV8kLXJcKwUa2h05ahfyVJ7mTNPtbY8ydQl4CgSXJYS6fOjrnYAMmd_VUdg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU4TKTZ4Ke04JIWsB5cRjLxIyYh__io3Z-EIAwY-ezPR7nRPONSo0_UK5-pk20A4DNCQeQNHpD_RU7CgNb7OcNW0MK6e2PPur7wo9jXKveUPC8y1hjOaTtJvmahjP3wjmZIiwjNIlLK2BPLwwBbApRCwV4pAtd_NSCx4U9EWgGnYxyB5enCeGNgt1JSdnlkDkAD7NwHtciqNASzRJTQHCZQnyQRq7b-29DEIvZPZBwW_Fi96BbrKlTSutnIiaEE_VPfQfvzHTVuplYusfyJw7lbUDmQCgDSDGpBBsFr85uZ8jyE3VUzkxv_mLG5pmZMUY2tQzkZg8vQXi-iifBs4a-1SZ2h5GSVffOyr9ZUi7o2pVnwItoacxzGIo9bhVskZjPQFhhaTchruaaPdTgIeorBPsTzjFQ4am4lvdm6T5qi9SdADOWYX_esNLvSdymfa/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU7SsE665GqTt7dakPZ-UHf27US9P6JbZfVXUDXUnftT3jfnAZi-v28oBpHbtol0xgbx7dBJjeL7dTjAeCIsE4WLcUFNm7mScnJv9tV9RrjqmzcvWAWZS1jI8wL1xnkj_-D0cf67b_hyXI_egOVmPFKL9IO7AMehMwKzGNoujOJn7z9vxfOv233OJBHN949XYf1_HtvpDZYY_J85EqXb8ohT2hin8-rQ5nhfT8QNyp86OzHvcfiftkUB36WBMyOabZGjPPH-X-NoXuhZtiZGFKDKDBvaRRjzIb6Vf10SHpVZx53Zsf9O5kGTr8noh7n2Iqb0Sv9dUnX6oz5BLBnA3nsEwA_h6dmIZ6732T0zWKSjFk3XHj61WJoQU2nOXAaGZn0xNQlLfpK25rh_ABqOFbwostTCIJePLhA6kUwl-Dy_15FKM71BtqK4EIBK2w/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU4o1VgaKRpAkPaKZSRiu9Cm5EhJWeeVDb4Ae4VYBwxVH4N3R39mq6ZIVfXgWiG6uwve-VE1Vtgofxi8olfpnqtfAFvsrNnWen0ALO7vE8XYlAyp42sQzZodWBqLelH7SbsY2lYtqgxqYcRjTx-3JfqiWLpiPzJHIlKeS3XVz3PsKrAvs7oektvTt5M_98XDfuGuq68bfn_Fm9Y1ASUN-C0y-PykX3yiCtA4IhIcSCBp-ZuaFKGcBqHlB62cpIe9J1uw9V_cHIM97B-EIqxrro4-HDl9-7_Vvp8aTP9UfHuoDNiVhk9Hz9exwvbcnuT0NrOT2vOzHHtrH1OjVyxU6oZ5tBJd8NSOUaD74mFBzBQNJ0HwDQH5MUafpet7qDdX5VvbMilK1cHa0Z6Jq5VzUPoyKBbgWtb392mwGihV_SM - height: 3179 - width: 4800 - author_attributions: - - displayName: Bernd Käding - uri: https://maps.google.com/maps/contrib/102593992233629773647 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocJPtMSEOm02Upu6pmpdvXrvIGjq6XNRApGb1h0Y6F8wQl_ueA=s100-p-k-no-mo - - name: places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU5QlNeEpJfHxicf8m1nqnODbozlLKTlXNL_Q0X4ktS0osU5zz9Y4yTVr3X0vpILC0cVqN03zFA_v2YWYAk4LVB3sfuJV7G9kWYhhncby7M9NwXUzcbLS-FCB9s5OsVUSIKfBxNte4MqzIpgSD4c0SADLK-AvI-B-h9wt5_7RyA5gO7clc3anbktuIYGvbtJCPsVmG4XuZI9dH9VnlhuRMVpUqIAw6Ayn844Ev7ICnFFec5meiEsBmVE7Ot95EbuHHry4-EwC1IXmYF_ci4_I7nXa3wCS7saNjnm_gzYUHy4A_QOTrQAkTkEy9yuVSVUcPp94dOfyOoaD1ZLhJYv2ZabO2e0XuwRRnnLcwwXs87ai1C-PD1XQy74dKwrbYmq7IgLzwn3Q8uLvM2LAn4_RSkxm7RfQdEEaWVDTYSYigLyTw - height: 4800 - width: 3600 - author_attributions: - - displayName: Ricardo Mulder - uri: https://maps.google.com/maps/contrib/105872964429668180322 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUkWT0VSQXaDdvgR6Xq_qmdAs1dwCvrCh90rUSRESx1exFdPFBVIA=s100-p-k-no-mo - - name: places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU55kdE8DOfXcRw9-uPrqkXHZYCI24lxJkP7PbA5Mq3v6w_2GIHZj6u54MWuw0jus3l85-dSxDTQcq7yA6uy7mUQatMdnyG6UGKtMKf1oNOx4GBjGGZ-HOpsbORvqHaheOkfRVWgMzsOyU0YLd5AIY99pkgaJnmG1JFt-kMjMEIE_wNWT-n-3lbkdqwdNmnILL-eqKWRvSMVgYFElJD2mm2CSUImmsCuyjmwXOZKimeIXF78BfEmhUZdhXj8ABzuhL0SQSRJcm-gGWmgWh19HZDnoSgn0ciEePKY88RrWm6r5k_RTxH6OO0E_AcHISbsHIsvi3uu1CTWST-sKu7DFjB8YDxDt5y4z-YAUuC_wkc6es3zYusgY7QJUg_Zp-WD5UznV8kLXJcKwUa2h05ahfyVJ7mTNPtbY8ydQl4CgSXJYS6fOjrnYAMmd_VUdg - height: 3072 - width: 4080 - author_attributions: - - displayName: Wolbert - uri: https://maps.google.com/maps/contrib/113262634459847434171 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjU4ixT8ajSYKeFhINUrxnRRCIxc0m5BR-sdGtzlK5Bg4X8e6QCpAw=s100-p-k-no-mo - - name: places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU4TKTZ4Ke04JIWsB5cRjLxIyYh__io3Z-EIAwY-ezPR7nRPONSo0_UK5-pk20A4DNCQeQNHpD_RU7CgNb7OcNW0MK6e2PPur7wo9jXKveUPC8y1hjOaTtJvmahjP3wjmZIiwjNIlLK2BPLwwBbApRCwV4pAtd_NSCx4U9EWgGnYxyB5enCeGNgt1JSdnlkDkAD7NwHtciqNASzRJTQHCZQnyQRq7b-29DEIvZPZBwW_Fi96BbrKlTSutnIiaEE_VPfQfvzHTVuplYusfyJw7lbUDmQCgDSDGpBBsFr85uZ8jyE3VUzkxv_mLG5pmZMUY2tQzkZg8vQXi-iifBs4a-1SZ2h5GSVffOyr9ZUi7o2pVnwItoacxzGIo9bhVskZjPQFhhaTchruaaPdTgIeorBPsTzjFQ4am4lvdm6T5qi9SdADOWYX_esNLvSdymfa - height: 4080 - width: 3072 - author_attributions: - - displayName: Wolbert - uri: https://maps.google.com/maps/contrib/113262634459847434171 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjU4ixT8ajSYKeFhINUrxnRRCIxc0m5BR-sdGtzlK5Bg4X8e6QCpAw=s100-p-k-no-mo - - name: places/ChIJHXylosZGyEcRdvpgEUzsJbY/photos/AWn5SU7SsE665GqTt7dakPZ-UHf27US9P6JbZfVXUDXUnftT3jfnAZi-v28oBpHbtol0xgbx7dBJjeL7dTjAeCIsE4WLcUFNm7mScnJv9tV9RrjqmzcvWAWZS1jI8wL1xnkj_-D0cf67b_hyXI_egOVmPFKL9IO7AMehMwKzGNoujOJn7z9vxfOv233OJBHN949XYf1_HtvpDZYY_J85EqXb8ohT2hin8-rQ5nhfT8QNyp86OzHvcfiftkUB36WBMyOabZGjPPH-X-NoXuhZtiZGFKDKDBvaRRjzIb6Vf10SHpVZx53Zsf9O5kGTr8noh7n2Iqb0Sv9dUnX6oz5BLBnA3nsEwA_h6dmIZ6732T0zWKSjFk3XHj61WJoQU2nOXAaGZn0xNQlLfpK25rh_ABqOFbwostTCIJePLhA6kUwl-Dy_15FKM71BtqK4EIBK2w - height: 4080 - width: 3072 - author_attributions: - - displayName: Wolbert - uri: https://maps.google.com/maps/contrib/113262634459847434171 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjU4ixT8ajSYKeFhINUrxnRRCIxc0m5BR-sdGtzlK5Bg4X8e6QCpAw=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=13125156500494416502&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.982199599999994,6.217189900000001&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/museum_pinlet - icon_background_color: '#13B5C7' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Korenmolen "De Weyert", Lyclamaweg 15 b, Makkinga, - Netherlands diff --git a/data/nde/enriched/entries/0130_natuurmuseum_fryslan.yaml b/data/nde/enriched/entries/0130_natuurmuseum_fryslan.yaml new file mode 100644 index 0000000000..b780983bde --- /dev/null +++ b/data/nde/enriched/entries/0130_natuurmuseum_fryslan.yaml @@ -0,0 +1,205 @@ +# Enriched NDE Entry 0130: Natuurmuseum Fryslân +# Source: NDE dataset + website research + Google Maps enrichment +# Enrichment date: 2025-11-28 + +original_entry: + plaatsnaam_bezoekadres: Leeuwarden + straat_en_huisnummer_bezoekadres: Schoenmakersperk 2 + organisatie: Stichting Fries Natuurhistorisch Museum + webadres_organisatie: https://natuurmuseumfryslan.nl/ + type_organisatie: museum + museum_register: ja + oode24_mondriaan: ja + type: + - M + +entry_index: 130 +processing_timestamp: '2025-11-28T15:30:00+00:00' +enrichment_status: enriched +enrichment_source: website_research + +# Enriched organization information +organization: + name_nl: Natuurmuseum Fryslân + name_official: Stichting Fries Natuurhistorisch Museum + type: museum + institution_type: + - M # Museum + description_nl: >- + Natuurmuseum Fryslân is een natuurhistorisch museum gevestigd in een voormalig + weeshuis in Leeuwarden. Het museum toont de natuur van Fryslân met opgezette dieren, + preparaten en interactieve tentoonstellingen. Bijzondere attracties zijn het enorme + walvisskelet en de OnderWaterSafari, een unieke beleving waarbij bezoekers met een + karretje onder het wateroppervlak door glijden. Het museum is toegankelijk voor + rolstoelgebruikers met liften naar alle verdiepingen. + description_en: >- + Natuurmuseum Fryslân is a natural history museum housed in a former orphanage in + Leeuwarden. The museum showcases the nature of Friesland with mounted animals, + specimens, and interactive exhibitions. Special attractions include the enormous + whale skeleton and the OnderWaterSafari (UnderWaterSafari), a unique experience + where visitors glide under the water surface in a cart. The museum is wheelchair + accessible with elevators to all floors. + legal_form: stichting + museum_register: true + mondriaan_fonds: true + +# Location details +location: + street_address: Schoenmakersperk 2 + postal_code: 8911 EM + city: Leeuwarden + municipality: Leeuwarden + province: Friesland + country: NL + coordinates: + latitude: 53.2041365 + longitude: 5.795914 + building_history: Voormalig weeshuis (former orphanage) + +# Contact information +contact: + website: https://natuurmuseumfryslan.nl/ + email: info@natuurmuseumfryslan.nl + phone: +31 58 233 22 44 + opening_hours: + tuesday: 11:00-17:00 + wednesday: 11:00-17:00 + thursday: 11:00-17:00 + friday: 11:00-17:00 + saturday: 10:00-17:00 + sunday: 10:00-17:00 + monday: Gesloten + special: Gratis dinsdag (buiten schoolvakanties regio Noord) + +# Collections and exhibits +collections: + - name: Museumcollectie + type: natural history collection + description: Opgezette dieren, skeletten en natuurhistorische preparaten + subjects: + - Friese fauna + - Natuurhistorie + - Geologie + - name: Walvisskelet + type: specimen + description: Enorm walvisskelet als centrale attractie + - name: Leeuwarder bos + type: exhibition area + description: Binnenplaats met natuurbeleving + +# Special attractions +attractions: + - name: OnderWaterSafari + type: interactive experience + description: >- + Unieke beleving waarbij bezoekers met een karretje onder het wateroppervlak + door glijden en leren over migratie van vissen + extra_cost: "âŹ4,- (âŹ1,- op gratis dinsdagen)" + - name: Drakenrondleiding + type: guided tour + description: Speciale rondleiding met "slapende draak" + - name: Museuminspecteurs + type: children's program + description: Interactief programma voor kinderen + +# Facilities +facilities: + - type: museum_shop + name: Museumwinkel + description: Winkel met natuurgerelateerde producten + - type: cafe + name: MuseumcafĂŠ It NĂŞst + description: CafĂŠ in het museum + - type: venue_rental + name: Zaalverhuur + description: Ruimtes beschikbaar voor evenementen + - type: accessibility + description: Rolstoel toegankelijk met lift naar alle verdiepingen + +# Research and volunteer groups +research_groups: + - name: Preparateursteam + description: Vrijwilligers die dieren prepareren + - name: Paddenstoelenwerkgroep + description: Onderzoek naar paddenstoelen + - name: Schelpencontactgroep Friesland + description: Contactgroep voor schelpenverzamelaars + - name: LVGA afdeling Fryslân + description: Geologie vereniging + - name: Ransuilenonderzoek + description: Onderzoek naar ransuilen + +# Educational programs +education: + basisonderwijs: true + voortgezet_onderwijs: true + educatieve_uitleen: true + languages: + - nl + - en + - de + +# Services +services: + - type: kinderfeestje + name: Kinderfeestje Leeuwarder bos + description: Verjaardagsfeestjes voor kinderen + - type: dagje_uit + name: Dagje Leeuwarden + description: Combinatiemogelijkheden met andere Leeuwarder attracties + - type: vrienden + name: Vrienden van Natuurmuseum Fryslân + description: Vriendenvereniging met voordelen + +# Digital platforms +digital_platforms: + - platform_name: Natuurmuseum Fryslân Website + platform_url: https://natuurmuseumfryslan.nl/ + platform_type: organizational website + features: + - Online ticketverkoop + - Nieuwsbrief + - Evenementenagenda + - Onderwijsinformatie + - platform_name: Social Media + platforms: + - Facebook + - Instagram + - X (Twitter) + - YouTube + - Pinterest + +# Identifiers +identifiers: + - scheme: google_place_id + value: ChIJMbgU34D-yEcRsuh0Qe5ACHg + +# Google Maps enrichment data +google_maps_enrichment: + place_id: ChIJMbgU34D-yEcRsuh0Qe5ACHg + name: Natuurmuseum Fryslân + fetch_timestamp: '2025-11-28T09:49:52.340404+00:00' + api_status: OK + formatted_address: Schoenmakersperk 2, 8911 EM Leeuwarden + business_status: OPERATIONAL + rating: 4.4 + total_ratings: 1923 + primary_type: museum + editorial_summary: Natuurhistorisch museum in een oud weeshuis met enorm walvisskelet, binnenplaats, winkel en cafĂŠ. + google_maps_url: https://maps.google.com/?cid=8649234476409612466 + +# Provenance +provenance: + data_sources: + - NDE registry + - Organization website (https://natuurmuseumfryslan.nl/) + - Google Maps Places API + enrichment_date: '2025-11-28' + enrichment_method: website_research + confidence_score: 0.98 + notes: >- + Enriched from website research. Major natural history museum in Leeuwarden + registered in Museum Register and supported by Mondriaan Fonds. Popular + family destination with 1900+ Google reviews. Unique OnderWaterSafari + experience. Housed in historic orphanage building. Has multiple volunteer + research groups and educational programs. diff --git a/data/nde/enriched/entries/0130_unknown.yaml b/data/nde/enriched/entries/0130_unknown.yaml deleted file mode 100644 index 6c0fcf4831..0000000000 --- a/data/nde/enriched/entries/0130_unknown.yaml +++ /dev/null @@ -1,235 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Leeuwarden - straat_en_huisnummer_bezoekadres: Schoenmakersperk 2 - organisatie: Stichting Fries Natuurhistorisch Museum - webadres_organisatie: https://natuurmuseumfryslan.nl/ - type_organisatie: museum - museum_register: ja - oode24_mondriaan: ja - type: - - M -entry_index: 130 -processing_timestamp: '2025-11-27T15:13:31.477107+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJMbgU34D-yEcRsuh0Qe5ACHg - name: Natuurmuseum Fryslân - fetch_timestamp: '2025-11-28T09:49:52.340404+00:00' - api_status: OK - coordinates: - latitude: 53.2041365 - longitude: 5.795914 - formatted_address: Schoenmakersperk 2, 8911 EM Leeuwarden - short_address: Schoenmakersperk 2, Leeuwarden - address_components: - - long_name: '2' - short_name: '2' - types: - - street_number - - long_name: Schoenmakersperk - short_name: Schoenmakersperk - types: - - route - - long_name: Leeuwarden - short_name: Leeuwarden - types: - - locality - - political - - long_name: Leeuwarden - short_name: Leeuwarden - types: - - administrative_area_level_2 - - political - - long_name: Friesland - short_name: FR - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8911 EM - short_name: 8911 EM - types: - - postal_code - phone_local: 058 233 2244 - phone_international: +31 58 233 2244 - website: https://natuurmuseumfryslan.nl/?utm_source=gmb&utm_medium=gmb&utm_campaign=gmb&utm_id=gmb&utm_term=gmb&utm_content=gmb - google_place_types: - - tourist_attraction - - museum - - point_of_interest - - establishment - primary_type: museum - business_status: OPERATIONAL - opening_hours: - open_now: false - periods: - - open: - day: 0 - hour: 10 - minute: 0 - close: - day: 0 - hour: 17 - minute: 0 - - open: - day: 2 - hour: 11 - minute: 0 - close: - day: 2 - hour: 17 - minute: 0 - - open: - day: 3 - hour: 11 - minute: 0 - close: - day: 3 - hour: 17 - minute: 0 - - open: - day: 4 - hour: 11 - minute: 0 - close: - day: 4 - hour: 17 - minute: 0 - - open: - day: 5 - hour: 11 - minute: 0 - close: - day: 5 - hour: 17 - minute: 0 - - open: - day: 6 - hour: 10 - minute: 0 - close: - day: 6 - hour: 17 - minute: 0 - weekday_text: - - 'maandag: Gesloten' - - 'dinsdag: 11:00â17:00' - - 'woensdag: 11:00â17:00' - - 'donderdag: 11:00â17:00' - - 'vrijdag: 11:00â17:00' - - 'zaterdag: 10:00â17:00' - - 'zondag: 10:00â17:00' - rating: 4.4 - total_ratings: 1923 - reviews: - - author_name: Henk Nauta - author_uri: https://www.google.com/maps/contrib/102113679454695714470/reviews - rating: 5 - relative_time_description: een maand geleden - text: 'Een leuk natuurmuseum! Vriendelijk ontvangt, educatief en verrassend om - tijdens het bezoek zelf als een vogel " te vliegen ", ook wat onderwater zoals - te zien is een mooie beleving in de onderwatersafari. - - Met een soort kermiskarretje - - wordt je rondgereden om dit alles te zien. - - Van authentiek opgezette dieren tot de preparateur hiervan zien en spreken maken - het erg leuk en maakt het een bezoek met kinderen erg leuk. - - Klein minpuntje is dat enkele objecten niet werken of toegankelijk waren. Wellicht - bij een volgend bezoek.' - publish_time: '2025-10-21T19:35:43.499018322Z' - - author_name: Ingrid van Heertum - author_uri: https://www.google.com/maps/contrib/113136377637837798002/reviews - rating: 5 - relative_time_description: een maand geleden - text: Heel leuk, verrassend museum voor jong en oud, info op niveau. Rolstoel - toegankelijk, met lift naar alle verdiepingen. De onder water ervaring is een - echte aanrader, in een karretje glijd je onder het wateroppervlak door. Mooi - gemaakt met verrassingen... - publish_time: '2025-10-19T19:41:06.623321876Z' - - author_name: Diede Buwalda - author_uri: https://www.google.com/maps/contrib/112396104729677499419/reviews - rating: 5 - relative_time_description: 3 maanden geleden - text: Mooi opgezet museum, veel verschillende dieren met daarbij relevante informatie. - De onderwatersafari is een hele mooie toevoeging en de âŹ4,- zeker waard! - publish_time: '2025-08-20T13:16:42.766861365Z' - - author_name: Priya Mahabiersing - author_uri: https://www.google.com/maps/contrib/112135518245380477975/reviews - rating: 5 - relative_time_description: een maand geleden - text: Enorm leerzaam voor kinderen, de onderzeeĂŤr en de slapende draak waren een - verrassende extra!! Ook de authentieke kamers en deuren vh voormalig weeshuis - vonden we bijzonder. - publish_time: '2025-10-08T14:27:29.894584808Z' - - author_name: Carla Ruhof - author_uri: https://www.google.com/maps/contrib/114568081386393113066/reviews - rating: 4 - relative_time_description: 4 maanden geleden - text: 'Een leuk museum, dit oude weeshuis! Maak vooral ook het tochtje ''onder - water'' waar wordt verteld hoe vissen de lange toch van onze zoete wateren tochten - moeten maken die van zoet naar zoyt water gaan. Zeer zeker ook geschikt en leerzaam - voor kinderen! - - Om de foto iets te verfraaien door obstakels weg te halen, maak ik gebruik van - AI' - publish_time: '2025-07-23T07:48:23.970610267Z' - editorial_summary: Natuurhistorisch museum in een oud weeshuis met enorm walvisskelet, - binnenplaats, winkel en cafĂŠ. - photo_urls: - - https://places.googleapis.com/v1/places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU7Ay7F0EUeWGvV_1tUCN2cDleC6XbR9fGXDM-Rcjq3xRslP4iwDIXy5uVcaFRqCvFz94xtMbZVsgK9Ztq4lN8M_MmoUkGvbfrxXO2ZQ9pjzHJAlJHIYczvctkdJ84QCbveiHXYCDuF6Wxl_ahWxfj-PLLSLRYvYI-CvsJWzF0d0yUYQsMNyzkkLAR66iRJHvyPJytb95wcpwVYRi5CObIcD-q6fRjZWnikIy7mzBWYNowIpFIIDiFcHZMU1nuEKccNu8f208O3dqvMgEpt2peE6FzNWnT_7HdAyS0QI8eSzmASgTXFfARsxqRsb6jsarly4NIy4yAjO74gEqA3dZkqQMw3hDoXqv-FWL3vrDh6JclNDz_RkqT69-A5y3GLn9kh5eL8jZx-s9vMzWAiZN-xLEXrrBcWjraX_jhsu70Gm4A/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU7wxKxkcCVYlTq-5UUWmdWfrpinlkMic53rDb0qHb95I9lcpks3ZaLNeZPlfMIRtERiHw6LTjt-46j2GMM4Xymr80EblX9co5OYrd2pT1pHMiSkDCfpRJlol2T40mVI0--HCVAXyn5XGRVDtYj7lP3yhxtVKaXQEL9Lt_rAxQOUY-IssQx2s5BphcWJnLzzT4ke14Kg9kPtRS9boGk0obC0Jg52WS98JTIpEg4AuggEHmeoxjsFfBzuoRbzuKbnEREeT5lI2hqC6hWrnZT9NNWTdBdLd2nvOQewCVS6aoA9sSfdnjIkkPHDUYJASZzGekAs1VbzY1bhiWarCVcwWvY5ypmvTe2t_zCpyqqtqZTLKTYra099L3n4q3_Iip3t4-Rfr3hfxtiIiKDC-SPRkYs-BgHfI110kEYAMxX3VT0-iA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU4O6BHww-ttbe9NE1cYcvYazAMxKdLmEyO7eJzFb2NpLtPiM30kWU4rj68kG5VrBqwIpTqhRbp-O-Zsf9unCr4a0-0PiC7HhgJ9BEiFi4-6fsKxuMlF6vXGJyZienOKdSfua8_OPhWjpmpzX96cwzIQDi3Jrq2U-xg7nS_xSyDAOk1Bz5Lj6oWpJFlw_0fAT1xB67XNS1kJkb5C_8Luff15T6O4voWDyiMCJVLpxLZTnLxDRgYH4uxht94906y1qvYSesIJWQDJToYTyOkTRuTkLjqEVWpQXX40v7UW8Rqjp4cqGV4VjsOYiwNLL59_auwgl0jve5SBDxjtJZMUaKiUbIVAKWJgMiUCjIKVewHdJEBL0LDIlz1IX2uwPSb1qoVWhOUR3gOC4o8DzkHWTnQn7yj8IYEFH15OxfInYzXlZsN6/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU6vUw02bxVJcQkYoiARHKwDuOGSGqiBitSxsjqqF27eJ-SckdtKAEN10rof69KEQRMNAziM9Gjacx5NBgeXB9c-xrMzHepQsCbfKTegWiZr-R4aKELddA-nDMGRG6HqorijRF6LbOpDaV3-J-9i56zrXggb_mNwybLaStL4_YSwEXdUQwynziK8NVYQWpb0IJmfvFMhrgPsvi6NOVpQiUl8GcgXG5qD6tu8BYw8t_B-BghStduy8z7N8O9XKyxhvAlZyZNqxN_85cuUdYN2bRNMFvjB3GV-HJBxb6n-jHoGL8O65eUzIcxTyul0QK39R-XzmIong7G63_Q3D4IO5x4llqpacGwOptwAeceoPDvV3a3QbPNU3Ybpaw_kSBG5YAtybqLjuXapNajiluxqDK9WvlS8o93VPpRv4Q_LW9YEMADh/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU5uc_P-wZe4hzADOYuf-1I9e3amXxDr2p2aFTzZMG7Tn4Qxi-jzGMAWt4JUPSvjPqawpfc3rZRHtrX7EQPkO-G0EHoCwxfF6h-NMXO5Li10tWp4sLp_iW3C1HJsY-NFSbLhvkSk7wrhZsuyESlVOz8cEzh-W9Pt63p7B34cLMQ3vY-MRNbvpV3pB_M1p_w3V5-uBaEeYDYbiIH7FJn8i_eLb6xIxXWLEut_m0SL-oWVxm5vgygjNQsclnLEJB5eBodeGc-G0p7Q7q0dnC5l-L8EYAn8Btcg4Wyj6UT5eu7NZqWk87R2OFX4EkRLjMam0w-T7JMT-GQDIIGAHr4CVZWOmSFugzSZBnXyscapvDhs0i3z4AG8bP88wfMHFrI-0y4Gr8wQS2mCPcdCCLg9aOxyMbxjkNAueXC64bat01EG5Ck1/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU7Ay7F0EUeWGvV_1tUCN2cDleC6XbR9fGXDM-Rcjq3xRslP4iwDIXy5uVcaFRqCvFz94xtMbZVsgK9Ztq4lN8M_MmoUkGvbfrxXO2ZQ9pjzHJAlJHIYczvctkdJ84QCbveiHXYCDuF6Wxl_ahWxfj-PLLSLRYvYI-CvsJWzF0d0yUYQsMNyzkkLAR66iRJHvyPJytb95wcpwVYRi5CObIcD-q6fRjZWnikIy7mzBWYNowIpFIIDiFcHZMU1nuEKccNu8f208O3dqvMgEpt2peE6FzNWnT_7HdAyS0QI8eSzmASgTXFfARsxqRsb6jsarly4NIy4yAjO74gEqA3dZkqQMw3hDoXqv-FWL3vrDh6JclNDz_RkqT69-A5y3GLn9kh5eL8jZx-s9vMzWAiZN-xLEXrrBcWjraX_jhsu70Gm4A - height: 3024 - width: 4032 - author_attributions: - - displayName: Erik - uri: https://maps.google.com/maps/contrib/114746685529213738763 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjX5WJrUQBb7-t0d6RzWt0VP1niVPMfQeg0ahyhpNP70v3FFgY4=s100-p-k-no-mo - - name: places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU7wxKxkcCVYlTq-5UUWmdWfrpinlkMic53rDb0qHb95I9lcpks3ZaLNeZPlfMIRtERiHw6LTjt-46j2GMM4Xymr80EblX9co5OYrd2pT1pHMiSkDCfpRJlol2T40mVI0--HCVAXyn5XGRVDtYj7lP3yhxtVKaXQEL9Lt_rAxQOUY-IssQx2s5BphcWJnLzzT4ke14Kg9kPtRS9boGk0obC0Jg52WS98JTIpEg4AuggEHmeoxjsFfBzuoRbzuKbnEREeT5lI2hqC6hWrnZT9NNWTdBdLd2nvOQewCVS6aoA9sSfdnjIkkPHDUYJASZzGekAs1VbzY1bhiWarCVcwWvY5ypmvTe2t_zCpyqqtqZTLKTYra099L3n4q3_Iip3t4-Rfr3hfxtiIiKDC-SPRkYs-BgHfI110kEYAMxX3VT0-iA - height: 3024 - width: 4032 - author_attributions: - - displayName: Monica Vrieling - uri: https://maps.google.com/maps/contrib/100537383401736239266 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjWtq3v-BtEglGayA3jFL6YKPKC85xUZg_DxJaFKRW3L8ZnYkatiNw=s100-p-k-no-mo - - name: places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU4O6BHww-ttbe9NE1cYcvYazAMxKdLmEyO7eJzFb2NpLtPiM30kWU4rj68kG5VrBqwIpTqhRbp-O-Zsf9unCr4a0-0PiC7HhgJ9BEiFi4-6fsKxuMlF6vXGJyZienOKdSfua8_OPhWjpmpzX96cwzIQDi3Jrq2U-xg7nS_xSyDAOk1Bz5Lj6oWpJFlw_0fAT1xB67XNS1kJkb5C_8Luff15T6O4voWDyiMCJVLpxLZTnLxDRgYH4uxht94906y1qvYSesIJWQDJToYTyOkTRuTkLjqEVWpQXX40v7UW8Rqjp4cqGV4VjsOYiwNLL59_auwgl0jve5SBDxjtJZMUaKiUbIVAKWJgMiUCjIKVewHdJEBL0LDIlz1IX2uwPSb1qoVWhOUR3gOC4o8DzkHWTnQn7yj8IYEFH15OxfInYzXlZsN6 - height: 3056 - width: 3056 - author_attributions: - - displayName: Albert Wassenaar - uri: https://maps.google.com/maps/contrib/111306153869913618956 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocK3-pTdiz0-Z8pMtv9aYitPJxvoMgpGM3DLeLP1gEmYgCJt7w=s100-p-k-no-mo - - name: places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU6vUw02bxVJcQkYoiARHKwDuOGSGqiBitSxsjqqF27eJ-SckdtKAEN10rof69KEQRMNAziM9Gjacx5NBgeXB9c-xrMzHepQsCbfKTegWiZr-R4aKELddA-nDMGRG6HqorijRF6LbOpDaV3-J-9i56zrXggb_mNwybLaStL4_YSwEXdUQwynziK8NVYQWpb0IJmfvFMhrgPsvi6NOVpQiUl8GcgXG5qD6tu8BYw8t_B-BghStduy8z7N8O9XKyxhvAlZyZNqxN_85cuUdYN2bRNMFvjB3GV-HJBxb6n-jHoGL8O65eUzIcxTyul0QK39R-XzmIong7G63_Q3D4IO5x4llqpacGwOptwAeceoPDvV3a3QbPNU3Ybpaw_kSBG5YAtybqLjuXapNajiluxqDK9WvlS8o93VPpRv4Q_LW9YEMADh - height: 3024 - width: 4032 - author_attributions: - - displayName: Max - uri: https://maps.google.com/maps/contrib/118250000850624998041 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVh5vdUtCipeeEK-3JeBgbR-uZfcfgnxsyUMXO91Gld0QpdyJg=s100-p-k-no-mo - - name: places/ChIJMbgU34D-yEcRsuh0Qe5ACHg/photos/AWn5SU5uc_P-wZe4hzADOYuf-1I9e3amXxDr2p2aFTzZMG7Tn4Qxi-jzGMAWt4JUPSvjPqawpfc3rZRHtrX7EQPkO-G0EHoCwxfF6h-NMXO5Li10tWp4sLp_iW3C1HJsY-NFSbLhvkSk7wrhZsuyESlVOz8cEzh-W9Pt63p7B34cLMQ3vY-MRNbvpV3pB_M1p_w3V5-uBaEeYDYbiIH7FJn8i_eLb6xIxXWLEut_m0SL-oWVxm5vgygjNQsclnLEJB5eBodeGc-G0p7Q7q0dnC5l-L8EYAn8Btcg4Wyj6UT5eu7NZqWk87R2OFX4EkRLjMam0w-T7JMT-GQDIIGAHr4CVZWOmSFugzSZBnXyscapvDhs0i3z4AG8bP88wfMHFrI-0y4Gr8wQS2mCPcdCCLg9aOxyMbxjkNAueXC64bat01EG5Ck1 - height: 3024 - width: 4032 - author_attributions: - - displayName: Liliane Kwee - uri: https://maps.google.com/maps/contrib/113818832244406184578 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocLCqLYd36SACKbaOAf1AshZY1yWC1sdR7QDhUxj2O-HehilMQ=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=8649234476409612466&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=53.2041365,5.795914&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/museum_pinlet - icon_background_color: '#13B5C7' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Fries Natuurhistorisch Museum, Schoenmakersperk - 2, Leeuwarden, Netherlands diff --git a/data/nde/enriched/entries/0137_schokkervereniging.yaml b/data/nde/enriched/entries/0137_schokkervereniging.yaml new file mode 100644 index 0000000000..dca11ebb74 --- /dev/null +++ b/data/nde/enriched/entries/0137_schokkervereniging.yaml @@ -0,0 +1,233 @@ +# Enriched NDE Entry 0137: Schokkervereniging +# Source: NDE dataset + website research + Google Maps enrichment +# Enrichment date: 2025-11-28 + +original_entry: + plaatsnaam_bezoekadres: Zwolle + straat_en_huisnummer_bezoekadres: Koestraat 19 + organisatie: Schokkervereniging + webadres_organisatie: https://www.schokkervereniging.nl/ + type_organisatie: historische vereniging + systeem: ZCBS + type: + - S + +entry_index: 137 +processing_timestamp: '2025-11-28T15:30:00+00:00' +enrichment_status: enriched +enrichment_source: website_research + +# Enriched organization information +organization: + name_nl: Schokkervereniging + type: historische vereniging + institution_type: + - S # Collecting Society + description_nl: >- + De Schokkervereniging is een historische vereniging voor nazaten van de + oorspronkelijke bewoners van het voormalige Zuiderzee-eiland Schokland. + Het eiland, met de dorpen Ens en Emmeloord, werd in 1859 ontruimd door de + Nederlandse overheid na jarenlange strijd tegen armoede en wateroverlast. + De Schokkers verspreidden zich naar plaatsen als Kampen, Vollenhove, + Volendam en Urk. In 1942 viel de zeebodem rondom het eiland droog bij de + inpoldering van de Noordoostpolder. De vereniging is in 1985 opgericht + door Ab Klappe en Henk Toeter om de Schokker erfgoed en genealogie te + bewaren en te verbinden. + description_en: >- + The Schokkervereniging (Schokker Association) is a historical society for + descendants of the original inhabitants of the former Zuiderzee island of + Schokland. The island, with the villages of Ens and Emmeloord, was evacuated + in 1859 by the Dutch government after years of struggle against poverty and + flooding. The Schokkers dispersed to places like Kampen, Vollenhove, + Volendam, and Urk. In 1942, the seabed around the island became dry with + the reclamation of the Noordoostpolder. The association was founded in 1985 + by Ab Klappe and Henk Toeter to preserve and connect Schokker heritage + and genealogy. + founding_date: '1985' + founders: + - Ab Klappe (Eindhoven) + - Henk Toeter (Kampen) + legal_form: vereniging + +# Location details +location: + street_address: Koestraat 19 + postal_code: 8011 NH + city: Zwolle + municipality: Zwolle + province: Overijssel + country: NL + coordinates: + latitude: 52.5100961 + longitude: 6.0943624 + +# Contact information +contact: + website: https://www.schokkervereniging.nl/ + phone: +31 6 26156592 + +# Historical context - Schokland +schokland_history: + description: >- + Schokland was een eiland in de voormalige Zuiderzee met de dorpen Ens en + Emmeloord. Na eeuwenlange strijd tegen het water en armoede werden de + bewoners in 1859 gedwongen te verhuizen. In 1942 viel het eiland droog + bij de inpoldering van de Noordoostpolder. + evacuation_year: 1859 + reclamation_year: 1942 + former_villages: + - Ens + - Emmeloord + diaspora_destinations: + - Kampen + - Vollenhove + - Volendam + - Urk + unesco_status: UNESCO Werelderfgoed (als deel van Schokland en omgeving) + +# Schokker family names +schokker_families: + primary_names: + - Bape + - Bien + - Corjanus + - Diender + - Grootjen + - Klappe + - Kluessien + - Koridon + - Ruiten + - Sul + - Toeter + other_names: + - Baentjes + - Bakker + - Brasker + - Been + - de Boer + - Botter + - Bruins + - Buijs + - de Graaf + - de Groot + - de Jong + - Kamper + - Kok + - Schokker + - van Emmerloot + - Veer + note: Uitgebreide lijst beschikbaar op de website + +# Publications +publications: + - title: Het Schokker Erf + type: periodical + description: Verenigingsblad met artikelen over Schokker geschiedenis en genealogie + current_issue: Nummer 132 (november 2025) + +# Genealogical resources +genealogy: + resources: + - type: registers + name: Doop-, trouw- en overlijdensregisters + description: Historische kerkelijke registers van Schokland + - type: database + name: Geboren Schokkers + description: Database van op Schokland geboren personen + - type: photo_gallery + name: Fotogalerij + description: Historische foto's van Schokland en Schokkers + services: + - Genealogisch onderzoek + - Verbinding nazaten + +# Milestones and events +milestones: + - year: 1985 + event: Oprichting Schokkervereniging + - year: 1991 + event: Schokkermonument in Kampen + - year: 1994 + event: Koninginnedag viering + - year: 2003 + event: Herbegrafenis + - year: 2007 + event: Begraafplaats Emmeloord; Vuurtoren Emmeloord terug + - year: 2009 + event: Het klokje van Ens; Herdenking ontruiming (150 jaar) + +# Annual event +events: + - name: Schokkerdag + type: annual gathering + description: Jaarlijkse bijeenkomst voor leden en nazaten + previous_editions_documented: true + +# Digital platforms +digital_platforms: + - platform_name: Schokkervereniging Website + platform_url: https://www.schokkervereniging.nl/ + platform_type: organizational website + features: + - Ledenportaal (met inlog) + - Genealogische bronnen + - Fotoarchief + - Nieuwsbrieven archief + - Historische informatie + - Boekenwinkel + access_note: Delen van de website zijn alleen toegankelijk voor leden + +# Collections +collections: + - name: Fotogalerij + type: photographic collection + description: Historische foto's van Schokland, Schokkers en nazaten + - name: Boekencollectie + type: library + description: Publicaties over Schokland en Schokker geschiedenis + - name: Archiefmateriaal + type: archival collection + description: Historische documenten en registers + +# Cultural heritage focus +heritage_focus: + - Schokker dialect en taal + - Schokker klederdracht en sieraden + - Schokker liederen + - Schokker genealogie + - MateriĂŤle cultuur (gebruiksvoorwerpen) + - Voeding en eetgewoonten + +# Identifiers +identifiers: + - scheme: google_place_id + value: ChIJ7WFLG1R6yEcROtCg1y19Qrs + +# Google Maps enrichment data +google_maps_enrichment: + place_id: ChIJ7WFLG1R6yEcROtCg1y19Qrs + name: Schokkervereniging + fetch_timestamp: '2025-11-28T09:49:56.449036+00:00' + api_status: OK + formatted_address: Koestraat 19, 8011 NH Zwolle + business_status: OPERATIONAL + rating: 5.0 + total_ratings: 1 + google_maps_url: https://maps.google.com/?cid=13493485069400068154 + +# Provenance +provenance: + data_sources: + - NDE registry + - Organization website (https://www.schokkervereniging.nl/) + - Google Maps Places API + enrichment_date: '2025-11-28' + enrichment_method: website_research + confidence_score: 0.95 + notes: >- + Enriched from website research. Active historical society for Schokland + descendants founded in 1985. Rich genealogical resources and documentation + of Schokker heritage. Publishes regular magazine "Het Schokker Erf" + (currently at issue 132). Website has member-only sections with extended + genealogical data. Strong focus on connecting descendants and preserving + intangible heritage (dialect, songs, traditions). diff --git a/data/nde/enriched/entries/0137_unknown.yaml b/data/nde/enriched/entries/0137_unknown.yaml deleted file mode 100644 index ae5f2d13c7..0000000000 --- a/data/nde/enriched/entries/0137_unknown.yaml +++ /dev/null @@ -1,89 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Zwolle - straat_en_huisnummer_bezoekadres: Koestraat 19 - organisatie: Schokkervereniging - webadres_organisatie: https://www.schokkervereniging.nl/ - type_organisatie: historische vereniging - systeem: ZCBS - type: - - S -entry_index: 137 -processing_timestamp: '2025-11-27T15:13:44.587525+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJ7WFLG1R6yEcROtCg1y19Qrs - name: Schokkervereniging - fetch_timestamp: '2025-11-28T09:49:56.449036+00:00' - api_status: OK - coordinates: - latitude: 52.5100961 - longitude: 6.0943624 - formatted_address: Koestraat 19, 8011 NH Zwolle - short_address: Koestraat 19, Zwolle - address_components: - - long_name: '19' - short_name: '19' - types: - - street_number - - long_name: Koestraat - short_name: Koestraat - types: - - route - - long_name: Zwolle - short_name: Zwolle - types: - - locality - - political - - long_name: Zwolle - short_name: Zwolle - types: - - administrative_area_level_2 - - political - - long_name: Overijssel - short_name: OV - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8011 NH - short_name: 8011 NH - types: - - postal_code - phone_local: 06 26156592 - phone_international: +31 6 26156592 - website: http://www.schokkervereniging.nl/ - google_place_types: - - point_of_interest - - establishment - business_status: OPERATIONAL - rating: 5 - total_ratings: 1 - reviews: - - author_name: J H Klappe - author_uri: https://www.google.com/maps/contrib/104851875439860882753/reviews - rating: 5 - relative_time_description: 4 jaar geleden - text: null - publish_time: '2021-05-01T11:35:04.123325Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJ7WFLG1R6yEcROtCg1y19Qrs/photos/AWn5SU5fR2g28fjP1doBMDhz7jEYY90E00hn72sYHdBxG4AVwKrBTJ0d4mBKN3Iu8ByP8r3MAjkV3KGV0g5fDITWIO1d7vxOL8DG1crOf6_Q1NmmIIMihfi7AWRzqHgdpLyVZj4w7z5kqYqMzlw_78aCnoSTdawPng1Vk4L-A3UOPvDLaPRwOlQgBOrSVBLQvs4feVlBEGTQMSdBfSy_zCs0lgwHQxmzjQ_wYmDJgugUvRmM1WngMPiZccHp0SG6Ky72a1CG34DBo1OTCum35qXMrndUU5oNi43_gjgN0CZ_ZlDpHA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJ7WFLG1R6yEcROtCg1y19Qrs/photos/AWn5SU5fR2g28fjP1doBMDhz7jEYY90E00hn72sYHdBxG4AVwKrBTJ0d4mBKN3Iu8ByP8r3MAjkV3KGV0g5fDITWIO1d7vxOL8DG1crOf6_Q1NmmIIMihfi7AWRzqHgdpLyVZj4w7z5kqYqMzlw_78aCnoSTdawPng1Vk4L-A3UOPvDLaPRwOlQgBOrSVBLQvs4feVlBEGTQMSdBfSy_zCs0lgwHQxmzjQ_wYmDJgugUvRmM1WngMPiZccHp0SG6Ky72a1CG34DBo1OTCum35qXMrndUU5oNi43_gjgN0CZ_ZlDpHA - height: 1649 - width: 2048 - author_attributions: - - displayName: Schokkervereniging - uri: https://maps.google.com/maps/contrib/114911611438587662877 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXfnDc2quUk84YcbLZJL23UMjpgMKza5litoNkoTnKvfY7W9Qo=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=13493485069400068154&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.5100961,6.0943624&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Schokkervereniging, Koestraat 19, Zwolle, Netherlands diff --git a/data/nde/enriched/entries/0139_de_hollandse_cirkel.yaml b/data/nde/enriched/entries/0139_de_hollandse_cirkel.yaml new file mode 100644 index 0000000000..9acce7120c --- /dev/null +++ b/data/nde/enriched/entries/0139_de_hollandse_cirkel.yaml @@ -0,0 +1,119 @@ +# NDE Entry 0139 - De Hollandse Cirkel / Stichting voor de Geschiedenis der Geodesie +# Enriched from website and Google Maps data + +entry_index: 139 +enrichment_status: enriched +enrichment_timestamp: '2025-11-28T10:30:00+00:00' +enrichment_source: website_and_google_maps + +organization: + name: Stichting De Hollandse Cirkel + alternative_names: + - De Hollandse Cirkel + - Stichting voor de Geschiedenis der Geodesie + type: historische vereniging + institution_type: S # Collecting Society - history of geodesy + description: >- + Foundation dedicated to promoting interest in the history of geodesy + (the science of measuring and understanding the Earth's shape, orientation, + and gravitational field). Founded in 1998, run entirely by volunteers. + Maintains an extensive image bank, documentation center, historical + cartography collection, and publishes a journal on geodesy history. + founded: 1998 + legal_form: stichting + kvk_number: '27173161' + rsin_anbi: '807357479' + anbi_status: true + +location: + street_address: Hofstraat 110 + postal_code: 7311 KZ + city: Apeldoorn + municipality: Apeldoorn + province: Gelderland + country: NL + coordinates: + latitude: 52.2116961 + longitude: 5.9624597 + note: Located at the Kadaster (Dutch Land Registry) building + +contact: + mailing_address: Postbus 9046, 7300 GH Apeldoorn + email: info@hollandsecirkel.nl + website: https://hollandsecirkel.nl/ + +digital_presence: + website: https://hollandsecirkel.nl/ + systems: + - name: Atlantis + type: collection_management + +collections: + - name: Beeldbank (Image Bank) + type: photographic + description: Historical images related to geodesy history + - name: Tijdschriften (Journals) + type: periodicals + description: Publications on geodesy history + - name: Boeken (Books) + type: library + description: Book collection on geodesy + - name: Meesters van Weleer + type: biographical + description: Information about historical geodesy masters + - name: MonografieĂŤn + type: research_publications + description: Monographs on geodesy topics + - name: Historische cartografie + type: cartographic + description: Historical maps and cartographic materials + - name: Instrumenten + type: instruments + description: Documentation of geodetic instruments + - name: Monumenten + type: monuments + description: Documentation of geodetic monuments and landmarks + +activities: + - type: publication + name: Tijdschrift + description: Regular journal on geodesy history + - type: documentation + name: Kronieken + description: Chronicles of geodesy events + - type: timeline + name: Tijdlijn + description: Interactive timeline of geodesy history + +points_of_interest: + - name: 52 NB Campus TU Delft + - name: IJkbasis Loenermark + - name: Zwaartekrachtspunt De Bilt + - name: Geodesie te Wageningen + - name: Hoogste en laagste punt NAP + - name: Kanaalweg 4 + - name: NAP op Oude Delft 95 + - name: Dijkpeilsteen Eenhoornsluis + - name: Woonhuis Snellius + +nde_metadata: + original_entry: + plaatsnaam_bezoekadres: Apeldoorn + straat_en_huisnummer_bezoekadres: Hofstraat 110 + organisatie: De Hollandse Cirkel/Stichting voor de Geschiedenis der Geodesie + webadres_organisatie: https://hollandsecirkel.nl/ + type_organisatie: historische vereniging + systeem: Atlantis + versnellen: ja + in_scope_voor_dc4eu: nieuw + versnellen_project: Upgrade? Aanschaf? + +google_maps_enrichment: + place_id: ChIJizHD6H_Hx0cR9pe66W9OrtY + name: Kadaster + business_status: OPERATIONAL + rating: 4.4 + total_ratings: 10 + formatted_address: Hofstraat 110, 7311 KZ Apeldoorn + phone: +31 88 183 2200 + note: Google Maps shows the Kadaster building where the foundation is located diff --git a/data/nde/enriched/entries/0139_unknown.yaml b/data/nde/enriched/entries/0139_unknown.yaml deleted file mode 100644 index 58bfaf5b52..0000000000 --- a/data/nde/enriched/entries/0139_unknown.yaml +++ /dev/null @@ -1,202 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Apeldoorn - straat_en_huisnummer_bezoekadres: Hofstraat 110 - organisatie: De Hollandse Cirkel/Stichting voor de Geschiedenis der Geodesie - webadres_organisatie: https://hollandsecirkel.nl/ - type_organisatie: historische vereniging - systeem: Atlantis - versnellen: ja - in_scope_voor_dc4eu: nieuw - versnellen_project: Upgrade? Aanschaf? - tyoe: - - S -entry_index: 139 -processing_timestamp: '2025-11-27T15:13:46.904333+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJizHD6H_Hx0cR9pe66W9OrtY - name: Kadaster - fetch_timestamp: '2025-11-28T09:49:57.761556+00:00' - api_status: OK - coordinates: - latitude: 52.2116961 - longitude: 5.9624597999999995 - formatted_address: Hofstraat 110, 7311 KZ Apeldoorn - short_address: Hofstraat 110, Apeldoorn - address_components: - - long_name: '110' - short_name: '110' - types: - - street_number - - long_name: Hofstraat - short_name: Hofstraat - types: - - route - - long_name: Apeldoorn - short_name: Apeldoorn - types: - - locality - - political - - long_name: Apeldoorn - short_name: Apeldoorn - types: - - administrative_area_level_2 - - political - - long_name: Gelderland - short_name: GE - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 7311 KZ - short_name: 7311 KZ - types: - - postal_code - phone_local: 088 183 2200 - phone_international: +31 88 183 2200 - website: https://www.kadaster.nl/ - google_place_types: - - government_office - - point_of_interest - - establishment - primary_type: government_office - business_status: OPERATIONAL - opening_hours: - open_now: true - periods: - - open: - day: 1 - hour: 9 - minute: 0 - close: - day: 1 - hour: 17 - minute: 0 - - open: - day: 2 - hour: 9 - minute: 0 - close: - day: 2 - hour: 17 - minute: 0 - - open: - day: 3 - hour: 9 - minute: 0 - close: - day: 3 - hour: 17 - minute: 0 - - open: - day: 4 - hour: 9 - minute: 0 - close: - day: 4 - hour: 17 - minute: 0 - - open: - day: 5 - hour: 9 - minute: 0 - close: - day: 5 - hour: 17 - minute: 0 - weekday_text: - - 'maandag: 09:00â17:00' - - 'dinsdag: 09:00â17:00' - - 'woensdag: 09:00â17:00' - - 'donderdag: 09:00â17:00' - - 'vrijdag: 09:00â17:00' - - 'zaterdag: Gesloten' - - 'zondag: Gesloten' - rating: 4.4 - total_ratings: 10 - reviews: - - author_name: Ed - author_uri: https://www.google.com/maps/contrib/115469732795558001996/reviews - rating: 5 - relative_time_description: 2 jaar geleden - text: Werk er al een tijdje đ prima werkgever! - publish_time: '2023-07-29T19:37:12.330338Z' - - author_name: Arvind Kumar - author_uri: https://www.google.com/maps/contrib/103506173957921081731/reviews - rating: 5 - relative_time_description: een jaar geleden - text: Leuk - publish_time: '2023-12-09T05:25:37.446869Z' - - author_name: MH G - author_uri: https://www.google.com/maps/contrib/102032460117137066329/reviews - rating: 3 - relative_time_description: 8 jaar geleden - text: Boek - publish_time: '2017-11-07T18:07:57.722Z' - - author_name: Allard Anten - author_uri: https://www.google.com/maps/contrib/114742929718649514883/reviews - rating: 5 - relative_time_description: 2 jaar geleden - text: null - publish_time: '2023-05-20T08:51:53.171386Z' - - author_name: Jim Popping - author_uri: https://www.google.com/maps/contrib/105862445100992135788/reviews - rating: 5 - relative_time_description: 7 jaar geleden - text: null - publish_time: '2018-04-04T16:00:35.562Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU68A53nRTAOP2bzPHlceM9QxhlEox0XsZFCz85yrpDGTx-3V8ZGcS09yM4_94iLUwJ3dFImO36XwPVUddbk_AHuPH3ta48Kg120A_pdIIMiHxIp0PFib3328BQCdrjA_K_Dr8xJO0wXssANtRtoFIwOELKqTlEGoeTmgfaOcCMgVEfM_mNtZsKjoottmV4p1CiLYEN2rggnohzznGBMiBgIkOjAfZELjwdxfNRi0Gr0vMff9yRdm4WZB3R_D2miqPxmwD7kOnUKa-xNH6RzDwD0a8yQS-pTArDLXNLRmFXbQ1uBs7DYPDVL8s-ycuClGFQRtJS7s_lYZPYp2Q5mpnY8T1Lfvqa8YWPoismxTL54ShYj-Nr4vKg4EGRI05YXfLGpxO3BoR6XFak5hqZ0KaVEZOuyQEjByUaQQ7t_ow7EhA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU68z9qRUOMoiLOMNn8wbEdtLll0s23LQry2ArJ1z3ScX_EHb0oIJ5oeH8rdAmn3W9_QLBu8j_8BNu3ecz5xKuFVNu-7xNQwbD1M3rEe-_yt30nazEjruU5QTCG4FAORqPTZxYnzc2rxKfQw74uJwde_HjoqWheuILSdl_4u5Pzb6FUjGWpeywYtzFcxlB_H_g5HfgesGP1gWL1lffVx0xov_AuQ4uCaBr1B3_DO8Epti1VRwW7HRxwXkWvMVDV8-lJDa5KnoA9XMPVEizJ3J274vD-L-4dFDZUWuV6U42qUHfY_w-rTO2Y1LeDcGa0cp595cqNNYznkjPGU14HxiImMAJBsA2n8FImTkePpKy9PrPiBzSWT9rC_iABxCR_AupYOV26nTDeW434aFGbobkDXLMXUFyC4Ze-Qn7Wj5-US6fE/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU49mgvMm5Wa3KJSjN9XMPp_Kl7k8Tz1ejtckNjl9PyrLPATIw_VFPzvVO4AtYrXmqSqgQ4mFk7U8nVzcH8mnaUGmmCwOAQ4Ogpej7MS8VyuyumBksoogYlLFjHNHjaGPbpJX_PNBGHQ4yOdmB3IjlGdWPrLlfpJSciwrHhC6BMcQoUb3VwT_GQ4tOe1WJhaSD0DiUY7ieD2hO6dCdpcxX0oFxSpjxg_nRfOb60zuylDzdFety2c7jUQuQB5xhW3x-87VtfreBhrfhQ1fZNjltGbvYflhd0cnClGGc18-gN_TpLxaYlxyAikzsOaUdfGNWLlJvkOBCpDYiDB_Fc5LK2TXVOGuhdqFj4ei8eEHtbsYYM0ArTiUcHX6FiM5dj5EhAi-pCKVNJye5p86Qi7v7ZOlSldeufzu46vR0gCe02Nt7o/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU6KWEd4dupmVYsYJphGA2w4WuNoFZBGfXKY5qTQKghT_TZ2VHwFzLHWiDBqftNm8w_u3gI_Oz3pzStuidZdSTNnXgTDLUYJ8JNrj6ifDFhiWiwIcniIzuoFCxuCIR-tzwRHyCRUntD-EWj8TrsZZP1f5cGNB2BvEO6xnMM53eQ60JihMYRkSKd-3dmeGoKyAmNNpBYRwfcKRTx9FzmE2Wae0Wl9fcO1lRrqLSTNhayWV3oH0GaClmClmaz4DG9QMTUe4iW1JAe8a888F7dBO5JNk3hZzbJWkZSJY5_JYqr6W7uDNt2y-Y-V5p90gxZKLHg7oT3XbKRpAGb4x3zXvyoh_BJqmE6Hl6rY5dQZuFa0mEiUKAZJIxoPWM0zs-18x5n6_TCV26oHiMh_DCw1siEr80kSLEGJOYc6Nd09p13S7lFV/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU6PkvQODZGBIt4eX0Kvr-ov18YGxIi5DTQTu1QAkOimeHQMYPZLXumcZyWyjRgVxM6sNDclkBwbDNEPl7mS-CfbfnvHijfDIy9gC_WH9h7bF_zlAtJ2t4x_pAqN-4psNK634QmB0A8SgzErhX0jgjhtk2ZQZe218zKdi9LDYiriszvaQCJd1TlKRok3bMP5TI2Ex_-fS6BS-ZSudNl3ojwFuA-S4CAvFVcmkiU0Q8O0LtqxkSR1KpwiFkoi3QLxFi2TQEWJNWBSiMjUB_fPqOO4EDKBTBTTTD1zS135idBPyNS5o2q3dh9y_D83MYZZWYdx8nyFIELvE6xb_dnYLv2zOSL9ipJOdVpaZ4YXhv67BcoKuGShVco61I6o6CN_HgXicGncY7JSz5T80bXDqWRiCan0AyT5h6XdTwpdZSV66yk/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU68A53nRTAOP2bzPHlceM9QxhlEox0XsZFCz85yrpDGTx-3V8ZGcS09yM4_94iLUwJ3dFImO36XwPVUddbk_AHuPH3ta48Kg120A_pdIIMiHxIp0PFib3328BQCdrjA_K_Dr8xJO0wXssANtRtoFIwOELKqTlEGoeTmgfaOcCMgVEfM_mNtZsKjoottmV4p1CiLYEN2rggnohzznGBMiBgIkOjAfZELjwdxfNRi0Gr0vMff9yRdm4WZB3R_D2miqPxmwD7kOnUKa-xNH6RzDwD0a8yQS-pTArDLXNLRmFXbQ1uBs7DYPDVL8s-ycuClGFQRtJS7s_lYZPYp2Q5mpnY8T1Lfvqa8YWPoismxTL54ShYj-Nr4vKg4EGRI05YXfLGpxO3BoR6XFak5hqZ0KaVEZOuyQEjByUaQQ7t_ow7EhA - height: 4032 - width: 3024 - author_attributions: - - displayName: R - uri: https://maps.google.com/maps/contrib/106689512271994751678 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVvQrUr2IurnHGwa3dOLjOr-prn55xwvgQWwsiPjdqJxWfma6bi=s100-p-k-no-mo - - name: places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU68z9qRUOMoiLOMNn8wbEdtLll0s23LQry2ArJ1z3ScX_EHb0oIJ5oeH8rdAmn3W9_QLBu8j_8BNu3ecz5xKuFVNu-7xNQwbD1M3rEe-_yt30nazEjruU5QTCG4FAORqPTZxYnzc2rxKfQw74uJwde_HjoqWheuILSdl_4u5Pzb6FUjGWpeywYtzFcxlB_H_g5HfgesGP1gWL1lffVx0xov_AuQ4uCaBr1B3_DO8Epti1VRwW7HRxwXkWvMVDV8-lJDa5KnoA9XMPVEizJ3J274vD-L-4dFDZUWuV6U42qUHfY_w-rTO2Y1LeDcGa0cp595cqNNYznkjPGU14HxiImMAJBsA2n8FImTkePpKy9PrPiBzSWT9rC_iABxCR_AupYOV26nTDeW434aFGbobkDXLMXUFyC4Ze-Qn7Wj5-US6fE - height: 4032 - width: 3024 - author_attributions: - - displayName: Hans Monasso - uri: https://maps.google.com/maps/contrib/114350151836992507484 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjVI4xFGe5NP7CIFFpsoB16WhX6BHpBaQ2-1AhELIxgX_VrrLEfLrQ=s100-p-k-no-mo - - name: places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU49mgvMm5Wa3KJSjN9XMPp_Kl7k8Tz1ejtckNjl9PyrLPATIw_VFPzvVO4AtYrXmqSqgQ4mFk7U8nVzcH8mnaUGmmCwOAQ4Ogpej7MS8VyuyumBksoogYlLFjHNHjaGPbpJX_PNBGHQ4yOdmB3IjlGdWPrLlfpJSciwrHhC6BMcQoUb3VwT_GQ4tOe1WJhaSD0DiUY7ieD2hO6dCdpcxX0oFxSpjxg_nRfOb60zuylDzdFety2c7jUQuQB5xhW3x-87VtfreBhrfhQ1fZNjltGbvYflhd0cnClGGc18-gN_TpLxaYlxyAikzsOaUdfGNWLlJvkOBCpDYiDB_Fc5LK2TXVOGuhdqFj4ei8eEHtbsYYM0ArTiUcHX6FiM5dj5EhAi-pCKVNJye5p86Qi7v7ZOlSldeufzu46vR0gCe02Nt7o - height: 1365 - width: 2048 - author_attributions: - - displayName: Raaf - uri: https://maps.google.com/maps/contrib/103388809348689805038 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjWb35XN9CzDLD6icAHS2fpnjSbdmvg7LeERhA0jZW3G5eKhGq03UQ=s100-p-k-no-mo - - name: places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU6KWEd4dupmVYsYJphGA2w4WuNoFZBGfXKY5qTQKghT_TZ2VHwFzLHWiDBqftNm8w_u3gI_Oz3pzStuidZdSTNnXgTDLUYJ8JNrj6ifDFhiWiwIcniIzuoFCxuCIR-tzwRHyCRUntD-EWj8TrsZZP1f5cGNB2BvEO6xnMM53eQ60JihMYRkSKd-3dmeGoKyAmNNpBYRwfcKRTx9FzmE2Wae0Wl9fcO1lRrqLSTNhayWV3oH0GaClmClmaz4DG9QMTUe4iW1JAe8a888F7dBO5JNk3hZzbJWkZSJY5_JYqr6W7uDNt2y-Y-V5p90gxZKLHg7oT3XbKRpAGb4x3zXvyoh_BJqmE6Hl6rY5dQZuFa0mEiUKAZJIxoPWM0zs-18x5n6_TCV26oHiMh_DCw1siEr80kSLEGJOYc6Nd09p13S7lFV - height: 747 - width: 1328 - author_attributions: - - displayName: Norman - uri: https://maps.google.com/maps/contrib/102348584714078084297 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUFZqmp_v1JrpB7xYY9rEkmYN4pjVSiREOloDVmMki3_21YconFzQ=s100-p-k-no-mo - - name: places/ChIJizHD6H_Hx0cR9pe66W9OrtY/photos/AWn5SU6PkvQODZGBIt4eX0Kvr-ov18YGxIi5DTQTu1QAkOimeHQMYPZLXumcZyWyjRgVxM6sNDclkBwbDNEPl7mS-CfbfnvHijfDIy9gC_WH9h7bF_zlAtJ2t4x_pAqN-4psNK634QmB0A8SgzErhX0jgjhtk2ZQZe218zKdi9LDYiriszvaQCJd1TlKRok3bMP5TI2Ex_-fS6BS-ZSudNl3ojwFuA-S4CAvFVcmkiU0Q8O0LtqxkSR1KpwiFkoi3QLxFi2TQEWJNWBSiMjUB_fPqOO4EDKBTBTTTD1zS135idBPyNS5o2q3dh9y_D83MYZZWYdx8nyFIELvE6xb_dnYLv2zOSL9ipJOdVpaZ4YXhv67BcoKuGShVco61I6o6CN_HgXicGncY7JSz5T80bXDqWRiCan0AyT5h6XdTwpdZSV66yk - height: 1816 - width: 4032 - author_attributions: - - displayName: Wim Pauw - uri: https://maps.google.com/maps/contrib/102925162944111348935 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjV1HM76NX17VeR0hkhJD0xfeUm_axFlTWMxNO55nOQDPL_tkZtv=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=15469388012633888758&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.2116961,5.9624597999999995&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/civic-bldg_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: De Hollandse Cirkel/Stichting voor de Geschiedenis der Geodesie, - Hofstraat 110, Apeldoorn, Netherlands diff --git a/data/nde/enriched/entries/0156_Q61915702.yaml b/data/nde/enriched/entries/0156_Q61915702.yaml index e1d1aba1f4..110aa7abf7 100644 --- a/data/nde/enriched/entries/0156_Q61915702.yaml +++ b/data/nde/enriched/entries/0156_Q61915702.yaml @@ -10,6 +10,7 @@ original_entry: wikidata_id: Q61915702 type: - L + isil_code_kb: NL-0800660000 entry_index: 156 processing_timestamp: '2025-11-27T15:14:22.676374+00:00' wikidata_enrichment: @@ -462,3 +463,17 @@ google_maps_enrichment: utc_offset_minutes: 60 google_maps_status: SUCCESS google_maps_search_query: Rozet, Kortestraat 16, Arnhem, Netherlands +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_name_matching + isil_code: NL-0800660000 + name: Rozet + city: Arnhem + registry: KB Netherlands Library Network + country: Netherlands +kb_enrichment_added: true +kb_enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' diff --git a/data/nde/enriched/entries/0164_unknown.yaml b/data/nde/enriched/entries/0164_gemeente_millingen_aan_de_rijn_archief.yaml similarity index 72% rename from data/nde/enriched/entries/0164_unknown.yaml rename to data/nde/enriched/entries/0164_gemeente_millingen_aan_de_rijn_archief.yaml index 3a0ab9bb0a..07b150437b 100644 --- a/data/nde/enriched/entries/0164_unknown.yaml +++ b/data/nde/enriched/entries/0164_gemeente_millingen_aan_de_rijn_archief.yaml @@ -9,8 +9,8 @@ original_entry: - A entry_index: 164 processing_timestamp: '2025-11-27T15:14:40.040833+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id +enrichment_status: enriched +enrichment_type: historical_record google_maps_enrichment: place_id: ChIJ3SZJ21R1x0cR4snWLZGcFi0 name: Millingen aan de Rijn, Gemeentehuis @@ -86,3 +86,57 @@ google_maps_enrichment: utc_offset_minutes: 60 google_maps_status: SUCCESS google_maps_search_query: Gemeente Millingen aan de Rijn, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T15:05:00+00:00' + fetch_status: not_applicable + source_note: Former municipality - archive has been transferred + organization_details: + official_name: Gemeente Millingen aan de Rijn (Gemeentearchief) + type: archief (municipal archive) + status: DEFUNCT + isil_code: NL-MlgGA + description: >- + Former municipal archive of Millingen aan de Rijn. The municipality + no longer exists as an independent entity. The archival holdings have + been transferred to successor organizations. + dissolution_history: + municipality_end_date: '2001-01-01' + reason: Municipal reorganization + successor_municipality: Berg en Dal (gemeente) + archive_transfers: + - period: Pre-2001 + destination: Regionaal Archief Nijmegen + destination_url: https://www.regionaalarchiefnijmegen.nl/ + note: Historical municipal archives before reorganization + - period: Post-2001 + destination: Gemeentearchief Berg en Dal + note: Municipal archives after reorganization + location: + original_location: Millingen aan de Rijn + current_municipality: Berg en Dal + province: Gelderland + access_information: + pre_2001_archives: + repository: Regionaal Archief Nijmegen + website: https://www.regionaalarchiefnijmegen.nl/ + note: Contact RAN for access to historical Millingen aan de Rijn records + post_2001_archives: + repository: Gemeentearchief Berg en Dal + note: Contact municipality of Berg en Dal for recent records + heritage_significance: + type: municipal_archive + focus: Local government records of Millingen aan de Rijn + coverage_area: Former municipality of Millingen aan de Rijn + historical_note: >- + Millingen aan de Rijn is located along the Rhine river in Gelderland. + The municipality has a history dating back centuries. Records document + local governance, civil registration, and community life. + institution_classification: + primary_type: A + type_label: Archive (defunct) + subtype: gemeentearchief + heritage_function: Municipal archive (transferred) + current_status: defunct + successor_organizations: + - Regionaal Archief Nijmegen (pre-2001 records) + - Gemeentearchief Berg en Dal (post-2001 records) diff --git a/data/nde/enriched/entries/0174_heiligenbeeldenmuseum_kranenburg.yaml b/data/nde/enriched/entries/0174_heiligenbeeldenmuseum_kranenburg.yaml new file mode 100644 index 0000000000..5c511ccfdd --- /dev/null +++ b/data/nde/enriched/entries/0174_heiligenbeeldenmuseum_kranenburg.yaml @@ -0,0 +1,142 @@ +# NDE Entry 0174 - Heiligenbeeldenmuseum Kranenburg +# Enriched from website and Google Maps data + +entry_index: 174 +enrichment_status: enriched +enrichment_timestamp: '2025-11-28T10:30:00+00:00' +enrichment_source: website_and_google_maps + +organization: + name: Heiligenbeeldenmuseum Kranenburg + alternative_names: + - Stichting Vrienden van de Kerk Op de Kranenburg + - Stichting VKK + type: museum + institution_type: + - M # Museum + - S # Society (Stichting Vrienden) + - H # Holy Sites (housed in historic church) + description: >- + Museum of saint statues (heiligenbeelden) and religious art housed in the + monumental St. Antonius van Padua Church in Vorden. The church was designed + by renowned architect P.J.H. Cuypers (known for the Rijksmuseum and Amsterdam + Central Station) in 1855, built in 1856, and consecrated in 1867. It is + Cuypers' oldest surviving church. The building was repurposed as a museum + in 2000 and transferred to Stichting Oude Gelderse Kerken in 2009. + founded: 1998 + museum_opened: 2000 + legal_form: stichting + volunteer_count: 75 + museum_register: true + +building: + name: H. Antonius van Paduakerk + architect: P.J.H. Cuypers + designed: 1855 + built: 1856 + consecrated: 1867 + monument_status: Rijksmonument + current_owner: Stichting Oude Gelderse Kerken + acquired_by_sogk: 2009 + note: First Roman Catholic church managed by Stichting Oude Gelderse Kerken + +location: + street_address: Ruurloseweg 101 + postal_code: 7251 LD + city: Vorden + municipality: Bronckhorst + province: Gelderland + country: NL + coordinates: + latitude: 52.1018858 + longitude: 6.3589954 + +contact: + phone: +31 6 23917592 + phone_landline: 0575-556757 + email: info@heiligenbeeldenmuseum.nl + website: https://www.heiligenbeeldenmuseum.nl/ + +opening_hours: + regular: + tuesday: 12:00-17:00 + wednesday: 12:00-17:00 + thursday: 12:00-17:00 + friday: 12:00-17:00 + saturday: 12:00-17:00 + sunday: 12:00-17:00 + monday: closed + special_exhibitions: + christmas_exhibition: + name: Kerstgroepententoonstelling (Nativity Exhibition) + period: December 6 - January 11 + hours: daily 11:00-17:00 + closed: Christmas Day, New Year's Day + closed_for_setup: + period: November 1 - December 5 + reason: Setting up Christmas exhibition + +collections: + - name: Heiligenbeelden (Saint Statues) + type: religious_art + description: Collection of saint statues from various periods, makers, and locations + - name: De Twaalf Apostelen + type: religious_art + description: Life-size statues of the 12 apostles lining the central aisle + - name: Iconen + type: religious_art + description: Orthodox and Catholic icons, including works by Hennie Oude Middendorp + - name: Afbeeldingen van Jezus Christus + type: religious_art + description: Various depictions of Jesus Christ + - name: Kerststallen (Nativity Scenes) + type: religious_art + description: Large nativity scenes displayed during Christmas exhibition + +activities: + - type: exhibition + name: Thematentoonstellingen + description: Annual themed exhibitions + - type: event + name: Gelderse museumdagen + description: Participation in Gelderland museum days + - type: education + name: Schooleducatieproject + description: Educational programs for primary and secondary schools + - type: walking_tour + name: Cuyperswandeling + description: Walking tour featuring Cuypers architecture + - type: cycling + name: Fietstochten + description: Cycling routes + - type: cultural + name: Optredens + description: Performances during exhibitions + - type: heritage + name: Monumentendagen + description: Participation in heritage days + - name: Kerkenpad monumententocht + description: Church heritage trail + +digital_presence: + website: https://www.heiligenbeeldenmuseum.nl/ + publications: + - type: newsletter + name: Nieuwsbrief + +nde_metadata: + original_entry: + plaatsnaam_bezoekadres: Vorden + straat_en_huisnummer_bezoekadres: Ruurloseweg 101 + organisatie: Stichting Vrienden van de Kerk Op de Kranenburg + webadres_organisatie: https://www.heiligenbeeldenmuseum.nl/ + type_organisatie: museum + museum_register: ja + +google_maps_enrichment: + place_id: ChIJf8417IyPx0cR9YCSCVpvrYk + name: Heiligenbeeldenmuseum Kranenburg + business_status: OPERATIONAL + rating: 4.1 + total_ratings: 7 + primary_type: museum diff --git a/data/nde/enriched/entries/0174_unknown.yaml b/data/nde/enriched/entries/0174_unknown.yaml deleted file mode 100644 index 03d70f0b6a..0000000000 --- a/data/nde/enriched/entries/0174_unknown.yaml +++ /dev/null @@ -1,242 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Vorden - straat_en_huisnummer_bezoekadres: Ruurloseweg 101 - organisatie: Stichting Vrienden van de Kerk Op de Kranenburg - webadres_organisatie: https://www.heiligenbeeldenmuseum.nl/ - type_organisatie: museum - museum_register: ja - type: - - S - - M -entry_index: 174 -processing_timestamp: '2025-11-27T15:14:59.707685+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJf8417IyPx0cR9YCSCVpvrYk - name: Heiligenbeeldenmuseum Kranenburg - fetch_timestamp: '2025-11-28T09:50:19.561191+00:00' - api_status: OK - coordinates: - latitude: 52.1018858 - longitude: 6.3589953999999995 - formatted_address: Ruurloseweg 101, 7251 LD Vorden - short_address: Ruurloseweg 101, Vorden - address_components: - - long_name: '101' - short_name: '101' - types: - - street_number - - long_name: Ruurloseweg - short_name: Ruurloseweg - types: - - route - - long_name: Vorden - short_name: Vorden - types: - - locality - - political - - long_name: Bronckhorst - short_name: Bronckhorst - types: - - administrative_area_level_2 - - political - - long_name: Gelderland - short_name: GE - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 7251 LD - short_name: 7251 LD - types: - - postal_code - phone_local: 06 23917592 - phone_international: +31 6 23917592 - website: https://www.heiligenbeeldenmuseum.nl/ - google_place_types: - - museum - - point_of_interest - - establishment - primary_type: museum - business_status: OPERATIONAL - opening_hours: - open_now: false - periods: - - open: - day: 0 - hour: 12 - minute: 0 - close: - day: 0 - hour: 17 - minute: 0 - - open: - day: 2 - hour: 12 - minute: 0 - close: - day: 2 - hour: 17 - minute: 0 - - open: - day: 3 - hour: 12 - minute: 0 - close: - day: 3 - hour: 17 - minute: 0 - - open: - day: 4 - hour: 12 - minute: 0 - close: - day: 4 - hour: 17 - minute: 0 - - open: - day: 5 - hour: 12 - minute: 0 - close: - day: 5 - hour: 17 - minute: 0 - - open: - day: 6 - hour: 12 - minute: 0 - close: - day: 6 - hour: 17 - minute: 0 - weekday_text: - - 'maandag: Gesloten' - - 'dinsdag: 12:00â17:00' - - 'woensdag: 12:00â17:00' - - 'donderdag: 12:00â17:00' - - 'vrijdag: 12:00â17:00' - - 'zaterdag: 12:00â17:00' - - 'zondag: 12:00â17:00' - rating: 4.1 - total_ratings: 7 - reviews: - - author_name: Martien Timmer - author_uri: https://www.google.com/maps/contrib/111520975420518379711/reviews - rating: 5 - relative_time_description: 7 maanden geleden - text: 'Een mooie verzameling van heiligenbeelden en iconen van verschillende plaatsen, - makers en tijden. Mooi dat het Orthodoxe en Katholieke hier samen tentoongesteld - wordt. - - Naast allerlei soorten afbeeldingen van Jezus Christus, om Wie het gaat als - Zaligmaker, Redder en Verzoener van de mensheid staan er allerlei heiligenbeelden - verdeeld in secties. - - De levensgrote verbeeldingen van de apostelen door het middenpad spreekt tot - de verbeelding, het brengt ze tot leven als je tussen deze mensen met verschillende - karakters doorwandelt. Ze zijn een afspiegeling van de mensheid waar Jezus drie - jaar direct mee omging. Zo wil en kan Hij dat nog steeds vandaag voor iedereen. - In Jacobus zegt Hij âNader tot Mij en Ik zal tot u naderenâ. - - We werden wat rondgeleid door een fiefe 93 jarige, die zijn leven al met deze - mooie Gotische kerk verbonden is en veel over de beelden kan vertellen. - - Kortom de moeite waard.' - publish_time: '2025-04-04T21:27:28.560532Z' - - author_name: Hilde (Eigenzinnig Nederland) - author_uri: https://www.google.com/maps/contrib/112751285209538118570/reviews - rating: 5 - relative_time_description: een maand geleden - text: 'Vandaag dit prachtige museum bezocht. De locatie, de H Antonius van Paduakerk, - is op zich natuurlijk al mooi. De kerk staat bomvol heiligenbeelden. Indrukwekkend - is vooral het middenpad waar de 12 apostelen levensgroot staan in verschillende - poses. Naast de vaste collectie beelden is er elk jaar een thema-expositie. - Dit jaar zijn dat de geschilderde iconen van Hennie Oude Middendorp. Ontroerend - is het onafgemaakt schilderijtje in de eerste vitrine vlak voor zijn overlijden - in augustus 24. - - - Van half december tot eind januari kun je hier grote kerststallen bewonderen, - vertelde de vrijwilligster. Ongetwijfeld ook prachtig. - - - Met de muziek galmend door de kerk ontstaat er een mooie serene sfeer. Nu nog - een vriendelijk verzoek om in de kerk niet te praten en dan is dit echt een - perfect museum.' - publish_time: '2025-10-15T19:19:50.141441270Z' - - author_name: Jip Batenburg - author_uri: https://www.google.com/maps/contrib/101695372250297448073/reviews - rating: 5 - relative_time_description: 6 maanden geleden - text: Prachtige verzameling en op dit moment ook een collectie nieuwere iconen - en orthodoxe iconen. Met goede uitleg over functie en proces. Interessant en - fijn ontvangst. - publish_time: '2025-05-18T17:08:40.450087Z' - - author_name: marek cwiek - author_uri: https://www.google.com/maps/contrib/116632257447997707938/reviews - rating: 5 - relative_time_description: 7 maanden geleden - text: null - publish_time: '2025-04-13T14:19:34.199304Z' - - author_name: Robin Hendriks - author_uri: https://www.google.com/maps/contrib/101219572380670236535/reviews - rating: 4 - relative_time_description: 9 maanden geleden - text: null - publish_time: '2025-02-06T19:13:51.090496Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU5wL3zl4XW3tHouwRw104kswvzHSz7KT5-TiKFZqS3k3fzI_TxbA3v072BjSFtHxOvGkz52hWV8-blc3JXmfUB0qfJ_i8BBCIa0fDgcqqdSK7AXgfzo7iWzyRdobPZ_1lydCKMvBHyOi5VVRLcA6Un8DkuCzwmhBGkjoc65iLJzklpxLQCxQwglb_VZAJSPkBOL3JYp3HNRlHwvtB2DvtQaxSLspwGaX-ZjwQlH95Gfd48fdMj3fuF9tUy8fIkerSRSEddD7LC6swrdmwD9ll_mzrT1BN5mn6c4zcOP7buK4VRm-qGDMZ0AZ2PM6msYrLNAzh5lyx0oICd6Pyg6pirdVCwggHtaDNJiqCV0PtAnbBdI00jIyrFUZTaYRnCWbIsNH3oNwy6fnPkF5BCIbYLJFwiuNr0rs70GeL3S_Ip4eTI/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU7ItJmwclT1SHVQChhMkdXpKXu9ue3l66ErmVZeOu0w-4JifEdR3tIRxXXsw2FQoDHQdVE4eoKCtwh20SFaI4xH2TSgrmAYxuoZMG1V5Z3O3myQUl0zLNF4X0YTuyMMTezRyt4CJujcK9thUqW0SAKPHE9UNL28AiYm_o9cMXTHcZeZp_ETCeHb__ndpPC9GPpVUXAbF6U5ZBA8bdzZ3HjsXPuS_v9024FbvibuIX0Q8OPfL1m1vEyIhkYYXXqEIbpyd6vsbwJEpGVEn7fNpRbj2GASUgahgsLheWtkzvWVbx3_5oeW4GoeDs7uO_9tlRZ_lXieWhaSplmg5o2MARKalJ1vA6ugRCnhNboXe0AaC5lqhO-NSk6__p1H88_xx6lfd8VGK0oBJLqGXTYIqZMIUYq0fbaHPxlN3InrK20PaQ/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU6Ss5MhLrdcBoEYfP7Pkw1vVZBuOqOZsRaojbpf0qxcvv0S5VeQws54vpfc34Byb0sO_lSUsD3c3z2_GPDo07mwSvZrWMEHU4fbDR7C0nhyWmcruPUT8_arI5XEsi_mupJ5C4E9BMSmADP9xJO2kphnq4jb9AOSUSwzxNqeV2RrCKjfEFEiOIkUSAaYAgBX7VmMI5DouAuleDiMeElA736lVZ05sX3DKdyaF_13UfcKwRp_5UvioHj5_TMILuKhtlRMyFhTdx9jpEonLyGF7-NF5Pt3bXX9pCntVbrcD2xgj2MH21NiFOWwDH4rcVqoHeSmz6Vh7cfw11EVc9eK4BuuENYqztDo-dOx5AyCPXgbfkn6oHqd72EPzMN7k9hB9CR2In28sjOZ7DSSu4h0Xb3v9hGz5suSe_sxpxRIp5A/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU50qtI2R_Oj0EJeawpSr4SGemjihPYpIIjPG7t6QVlPuOGarP6IIWGHf6EBWJ9Y5FtAFuByuDFoxyliNqK-WutuLbNblo1epbOtL_HRlYfXnx0zsvO6SD0tAWRYvJpZoYtfOs_SyIC17gisPtTMOP_bpKY0a-RjacbHNVHWT_0q9U9Q0EIReXCne0xHXCISjC6G57ZF7v0QG7nzU8ZQg0a8FBI_UPPFwrG6J_rqGYlUTBI-YNTM1O8k5xzdjCCo1X0hxZFx3-J4Rt6Dv1sd7pG1Dhxn20nVmcdk4PL1_14n_QmrZG_GVYbB0uuWeu-lT-FTuKupvOPoDh0jNqJ7-zxuWtPZjuhyPnDbsHIveovHPQ3C0P8hF2mXt0qmdCYoI4DDS84gM4GlVcjkGHV-9zTd6whNqwKELYYj2hfxqvE_Wl-1/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU6xjEKMp7fnuyS5x4EKLoonW4T0r4oFkmb2A0WXazH6Bp5SCbcnRpJZKUoL4zpI5V4xZ527PsD-gs3RvUHxYaBczWFdhPo28_WNLobvBXrVEmdkF_pu-xzJVYPm_B_IU35LhaOKd5guLt5yQZEUlP74gxYxRqrwdGuQAKY5item4j8UGhRR0iflDZmwX3-gNL-p-28G-2Qw49M1UUKigsBtMsFsAhWK2gSKM0FyiYHhfEno666FbUWm4_K4DoI_UjeGG1OmCWcgdr-SUwpT04lHi5XjkkUwmKHssLdybqYNKzquw-xV879_PovMA5zYfL-mOPds0k6z0P3D6vsvBdSpCV78DdL3_-Tu1GtvZVxv8t-AzqNMyRankYgZGQoQgPiLfG-KEQGjtET6kc6ZY-M4mOPuV2AGKtrvi_cPGkfL5eEw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU5wL3zl4XW3tHouwRw104kswvzHSz7KT5-TiKFZqS3k3fzI_TxbA3v072BjSFtHxOvGkz52hWV8-blc3JXmfUB0qfJ_i8BBCIa0fDgcqqdSK7AXgfzo7iWzyRdobPZ_1lydCKMvBHyOi5VVRLcA6Un8DkuCzwmhBGkjoc65iLJzklpxLQCxQwglb_VZAJSPkBOL3JYp3HNRlHwvtB2DvtQaxSLspwGaX-ZjwQlH95Gfd48fdMj3fuF9tUy8fIkerSRSEddD7LC6swrdmwD9ll_mzrT1BN5mn6c4zcOP7buK4VRm-qGDMZ0AZ2PM6msYrLNAzh5lyx0oICd6Pyg6pirdVCwggHtaDNJiqCV0PtAnbBdI00jIyrFUZTaYRnCWbIsNH3oNwy6fnPkF5BCIbYLJFwiuNr0rs70GeL3S_Ip4eTI - height: 4032 - width: 3024 - author_attributions: - - displayName: Martien Timmer - uri: https://maps.google.com/maps/contrib/111520975420518379711 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUMxSX9rRdEtar-qHX2nSOENLuW05w_4QnQ6AshwoarIj0shnE=s100-p-k-no-mo - - name: places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU7ItJmwclT1SHVQChhMkdXpKXu9ue3l66ErmVZeOu0w-4JifEdR3tIRxXXsw2FQoDHQdVE4eoKCtwh20SFaI4xH2TSgrmAYxuoZMG1V5Z3O3myQUl0zLNF4X0YTuyMMTezRyt4CJujcK9thUqW0SAKPHE9UNL28AiYm_o9cMXTHcZeZp_ETCeHb__ndpPC9GPpVUXAbF6U5ZBA8bdzZ3HjsXPuS_v9024FbvibuIX0Q8OPfL1m1vEyIhkYYXXqEIbpyd6vsbwJEpGVEn7fNpRbj2GASUgahgsLheWtkzvWVbx3_5oeW4GoeDs7uO_9tlRZ_lXieWhaSplmg5o2MARKalJ1vA6ugRCnhNboXe0AaC5lqhO-NSk6__p1H88_xx6lfd8VGK0oBJLqGXTYIqZMIUYq0fbaHPxlN3InrK20PaQ - height: 4032 - width: 3024 - author_attributions: - - displayName: Martien Timmer - uri: https://maps.google.com/maps/contrib/111520975420518379711 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUMxSX9rRdEtar-qHX2nSOENLuW05w_4QnQ6AshwoarIj0shnE=s100-p-k-no-mo - - name: places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU6Ss5MhLrdcBoEYfP7Pkw1vVZBuOqOZsRaojbpf0qxcvv0S5VeQws54vpfc34Byb0sO_lSUsD3c3z2_GPDo07mwSvZrWMEHU4fbDR7C0nhyWmcruPUT8_arI5XEsi_mupJ5C4E9BMSmADP9xJO2kphnq4jb9AOSUSwzxNqeV2RrCKjfEFEiOIkUSAaYAgBX7VmMI5DouAuleDiMeElA736lVZ05sX3DKdyaF_13UfcKwRp_5UvioHj5_TMILuKhtlRMyFhTdx9jpEonLyGF7-NF5Pt3bXX9pCntVbrcD2xgj2MH21NiFOWwDH4rcVqoHeSmz6Vh7cfw11EVc9eK4BuuENYqztDo-dOx5AyCPXgbfkn6oHqd72EPzMN7k9hB9CR2In28sjOZ7DSSu4h0Xb3v9hGz5suSe_sxpxRIp5A - height: 4032 - width: 3024 - author_attributions: - - displayName: Martien Timmer - uri: https://maps.google.com/maps/contrib/111520975420518379711 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUMxSX9rRdEtar-qHX2nSOENLuW05w_4QnQ6AshwoarIj0shnE=s100-p-k-no-mo - - name: places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU50qtI2R_Oj0EJeawpSr4SGemjihPYpIIjPG7t6QVlPuOGarP6IIWGHf6EBWJ9Y5FtAFuByuDFoxyliNqK-WutuLbNblo1epbOtL_HRlYfXnx0zsvO6SD0tAWRYvJpZoYtfOs_SyIC17gisPtTMOP_bpKY0a-RjacbHNVHWT_0q9U9Q0EIReXCne0xHXCISjC6G57ZF7v0QG7nzU8ZQg0a8FBI_UPPFwrG6J_rqGYlUTBI-YNTM1O8k5xzdjCCo1X0hxZFx3-J4Rt6Dv1sd7pG1Dhxn20nVmcdk4PL1_14n_QmrZG_GVYbB0uuWeu-lT-FTuKupvOPoDh0jNqJ7-zxuWtPZjuhyPnDbsHIveovHPQ3C0P8hF2mXt0qmdCYoI4DDS84gM4GlVcjkGHV-9zTd6whNqwKELYYj2hfxqvE_Wl-1 - height: 4032 - width: 3024 - author_attributions: - - displayName: Martien Timmer - uri: https://maps.google.com/maps/contrib/111520975420518379711 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUMxSX9rRdEtar-qHX2nSOENLuW05w_4QnQ6AshwoarIj0shnE=s100-p-k-no-mo - - name: places/ChIJf8417IyPx0cR9YCSCVpvrYk/photos/AWn5SU6xjEKMp7fnuyS5x4EKLoonW4T0r4oFkmb2A0WXazH6Bp5SCbcnRpJZKUoL4zpI5V4xZ527PsD-gs3RvUHxYaBczWFdhPo28_WNLobvBXrVEmdkF_pu-xzJVYPm_B_IU35LhaOKd5guLt5yQZEUlP74gxYxRqrwdGuQAKY5item4j8UGhRR0iflDZmwX3-gNL-p-28G-2Qw49M1UUKigsBtMsFsAhWK2gSKM0FyiYHhfEno666FbUWm4_K4DoI_UjeGG1OmCWcgdr-SUwpT04lHi5XjkkUwmKHssLdybqYNKzquw-xV879_PovMA5zYfL-mOPds0k6z0P3D6vsvBdSpCV78DdL3_-Tu1GtvZVxv8t-AzqNMyRankYgZGQoQgPiLfG-KEQGjtET6kc6ZY-M4mOPuV2AGKtrvi_cPGkfL5eEw - height: 3024 - width: 4032 - author_attributions: - - displayName: Martien Timmer - uri: https://maps.google.com/maps/contrib/111520975420518379711 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUMxSX9rRdEtar-qHX2nSOENLuW05w_4QnQ6AshwoarIj0shnE=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=9920707986665406709&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.1018858,6.3589953999999995&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/museum_pinlet - icon_background_color: '#13B5C7' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Vrienden van de Kerk Op de Kranenburg, Ruurloseweg - 101, Vorden, Netherlands diff --git a/data/nde/enriched/entries/0182_historische_kring_elden.yaml b/data/nde/enriched/entries/0182_historische_kring_elden.yaml new file mode 100644 index 0000000000..fd90306dd9 --- /dev/null +++ b/data/nde/enriched/entries/0182_historische_kring_elden.yaml @@ -0,0 +1,124 @@ +# NDE Entry 0182 - Historische Kring Elden +# Enriched from website and Google Maps data + +entry_index: 182 +enrichment_status: enriched +enrichment_timestamp: '2025-11-28T10:30:00+00:00' +enrichment_source: website_and_google_maps + +organization: + name: Historische Kring Elden + alternative_names: + - Vereniging Historische Kring Elden + - HKE + type: historische vereniging + institution_type: S # Collecting Society - local history society + description: >- + Local history society (historische kring) dedicated to preserving and + documenting the history of Elden, a village in the municipality of Arnhem. + The society publishes the Kringbulletin, maintains a Beeldbank (image archive), + organizes activities, and operates "De Noodwoning" (The Emergency Housing), + a heritage building open to visitors every Saturday. + legal_form: vereniging + kvk_number: '40123461' + +location: + name: De Noodwoning + street_address: Rijksweg-West 92 B + postal_code: 6842 BE + city: Elden + municipality: Arnhem + sublocality: Arnhem Zuid + province: Gelderland + country: NL + coordinates: + latitude: 51.9619235 + longitude: 5.8865313 + +contact: + address: Rijksweg-West 92 B, 6842 BE Elden + email: info@historischekringelden.nl + phone: +31 6 24168113 + website: https://www.historischekringelden.nl/ + iban: NL40 INGB 0001 3642 84 + +digital_presence: + website: https://www.historischekringelden.nl/ + social_media: + - platform: Facebook + name: Historische Kring Elden + systems: + - name: ZCBS + type: collection_management + +opening_hours: + de_noodwoning: + saturday: 13:00-16:00 + note: The Noodwoning heritage building is open every Saturday + +publications: + - name: Kringbulletin + type: periodical + description: Regular bulletin of the historical society with local history articles + +collections: + - name: Beeldbank + type: photographic + description: Image archive with historical photos of Elden + note: Seeking community help to identify people, places, and dates in photos + - name: Beeld en Geluid + type: audiovisual + description: Audio and video materials, including films + +historical_documentation: + - name: Elden vanaf 1945 + description: History of Elden from 1945 onwards + - name: Eldense verhalen + description: Stories from Elden's past + - name: Antoon Markus + description: Historical figure documentation + - name: Tragedie in het Elderveld + description: Historical tragedy documentation + +activities: + - type: heritage_building + name: De Noodwoning + description: Heritage building open to visitors on Saturdays + - type: publication + name: Kringbulletin + description: Regular bulletin publication + - type: collaboration + name: Van huis en haard + description: >- + Joint project with Historische Kring Driel as part of + 'Gelderland herdenkt' (Gelderland remembers) initiative + - type: community_engagement + name: Beeldbank identification + description: Crowdsourcing identification of historical photos + +historical_sites: + - name: De Brink + - name: Lucaskerk + - name: Middelweg (Elderhofseweg) + - name: De Stoeterij + - name: De Mooieweg + - name: Huize Bato + - name: Boerderij De Brinkenhof + - name: De Praets + - name: Pontje van Scheers + +nde_metadata: + original_entry: + plaatsnaam_bezoekadres: Elden + straat_en_huisnummer_bezoekadres: Rijksweg-West 92 B + organisatie: Vereniging Historische Kring Elden + webadres_organisatie: https://www.historischekringelden.nl/ + type_organisatie: historische vereniging + systeem: ZCBS + +google_maps_enrichment: + place_id: ChIJ8UIHJ9-lx0cRurQOpOvoeZg + name: Historische Kring Elden + business_status: OPERATIONAL + rating: 5.0 + total_ratings: 1 diff --git a/data/nde/enriched/entries/0182_unknown.yaml b/data/nde/enriched/entries/0182_unknown.yaml deleted file mode 100644 index 0004b28f26..0000000000 --- a/data/nde/enriched/entries/0182_unknown.yaml +++ /dev/null @@ -1,128 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Elden - straat_en_huisnummer_bezoekadres: Rijksweg-West 92 B - organisatie: Vereniging Historische Kring Elden - webadres_organisatie: https://www.historischekringelden.nl/ - type_organisatie: historische vereniging - systeem: ZCBS - type: - - S -entry_index: 182 -processing_timestamp: '2025-11-27T15:15:14.864400+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJ8UIHJ9-lx0cRurQOpOvoeZg - name: Historische Kring Elden - fetch_timestamp: '2025-11-28T09:50:24.596581+00:00' - api_status: OK - coordinates: - latitude: 51.9619235 - longitude: 5.8865313 - formatted_address: Rijksweg-West 92, 6842 BE Arnhem - short_address: Rijksweg-West 92, Arnhem - address_components: - - long_name: '92' - short_name: '92' - types: - - street_number - - long_name: Rijksweg-West - short_name: Rijksweg-West - types: - - route - - long_name: Arnhem Zuid - short_name: Arnhem Zuid - types: - - sublocality_level_1 - - sublocality - - political - - long_name: Arnhem - short_name: Arnhem - types: - - locality - - political - - long_name: Arnhem - short_name: Arnhem - types: - - administrative_area_level_2 - - political - - long_name: Gelderland - short_name: GE - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 6842 BE - short_name: 6842 BE - types: - - postal_code - phone_local: 06 24168113 - phone_international: +31 6 24168113 - website: http://historischekringelden.nl/ - google_place_types: - - point_of_interest - - establishment - business_status: OPERATIONAL - rating: 5 - total_ratings: 1 - reviews: - - author_name: Henk Molenaar - author_uri: https://www.google.com/maps/contrib/113457452940343247243/reviews - rating: 5 - relative_time_description: 8 jaar geleden - text: Geweldige vereniging met een schitterend blad, het Kring bulletin - publish_time: '2017-11-25T21:18:35.415Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU6vEZX0ZwceBaVirJAnx8K28VJ0e5azimNP6mrVuCgcePt-NF9kXVFbnvWOfKov2YrQu3t0q7y5OKUg2FI1ziADbPk8wQoaN4unT-YL3SWxexI4GaifBfKlYQ15YzzE0Asz_uhP_W3OLn0RX6_Lkgxc9BEG88U945KRH3BWntHDJD_9ISYZKGjsaKC0JlD04Pw7U9cxpkF5b3ksNXl09nYOGGq23xN5ZlV5lw8d90i6LscEaUc2Nvj2RMMfAl5R-sGNBV8SrX4vol2nBtRiRVEELY44UyRWi7U_2X0wN2mcmz3sBhLyB30igZhgrX542gVM1WwnIYP_lEJhMxBd86SykdPsOxLv56Jex5XlDGLOnRLVCXhG70UWWfvBGj5lWI5gj9vUteJFD_BzTWM_aWfWAyH2-1T_HENY_v2DwfuoaCT1/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU5hzvf_IjMgD_0om8DLAwnzi2L1Z27rgtxKHho9M_WyZ6gMPDnp-MHpVfvm4WPWpTadZa_Q47niMznjp5-Z7_fBO8VM2kBCb8fmTZmv2dsi2-E2yOfLBD7q20QJrVQTo15BSrUpW1bHlLk8aQ8pubOtjDiqgVjhaSEEW-L6N-7vTyGiibiLSwCY8MJxl4qdLZS2v8FdQ6ELwreoU37pz6VY9INbviION7G-t8lIuqr8DlJy2iAXXwqROmsQGNicGSp2XPUeBjJUcHAP_ynZ0unYnNw-7wiYsWQiMk2bi5_go6DVfiLMyiEWX2hPI_7hIYNasubGZWlDpiAg_F6yvm2hihAhmwNr7xMc-cQApTZ06eRnmTzCEFnH-m_f-5Mm2JRponywR3_kTZ0fxHFHqJWGt-PaeWfUOtJWLv46CjhfIA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU7QM7gYAMCKikgOVQbDSKB22u9iYFl3j1x3QQ_roOrm4eGEi0ZmdHcLS2ddYoraQmj4zhyzE2cKiKuo0vhluEeCCP7yxS8lvJ0Xs8AhfD852jdh7X8cZxW1vWHIOfukYhWmJ2fD0KwaPpSiQT-UjEvEnyx-_zR4PjrIbuENJygsUMd-s7cVVROzBUtpmycS1PHWY2rgCdEXKNwC7kqVizfa7yW-r3ISjX30ESKFW2WOF9fNI8vCqReJccucqlxJPhPlv8cURW0vvlMAzvuCmmyS95Ufhr4mr6XXlT7tS495yqIDHDBg2rE-xBv0ocODF6mlmQP4qZKJElHaLLAbhw2EMsHwMHJAVD73yqplUQO1aUw2hSB8CjvlyNikEJcf-C2eMmEGdqeEBzQ70caz0rwuxrIFvqMIV_GERZgieAi-_Q/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU5V7MZyxPZ6-v7Zc5g6BvnDi8r7G6lD1ROFccN-5DYlNjRkggzdJMedjz_L50-2knsoQ36VUraooinJGzR3YW6A1S1wfzccNDVZfplBtUJcHLbW6VklndurWmU94SBlmjo2f8HdV1kT-vfPk4eEtxrQ1kD8PWCxsMKRVRon7DGnwQ5Mg070trTBW_LnX8-rHbkpzNl7xLLFUg5RFcYsaNcuNwoKqh0_eGb2CarJjNlgh7sx8p9i-N4J_jm5c-cK79lj-mKCuW79Yj6f5SwEbp2k8bv9ssLBl2OB-Gx6KwsQx3a4zC7t0Z4A1SSBvmS9IZLOC1mVmIoZY_o8m0G39LuJU2ZTbHP9vrD2_lsEJ9YtVUDZt2L9ItDQ7fBkrVv-OPOKD1XVIwbRVQ8rVpUtuRWu4XcO4pPEWIDOUJEnDc1PSiLp/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU5mmXoYXcnTwLy3mhqRZoo3ivdiT1spcUU5cBP_YlJxkVK5ow8b-P3qygcML9SwSMNlhVErB7pC9CYfqIj039AY4jYLvVmmFAHaX-TYhdwqBoabAbnMNvUqXsQYvBsXb0Gjp7Lbqzx3rKH9esBBj0DRhDxd8jt0MQPZmyEbc1oXqvkxGQ2AiersOd5TVgMxO51saUlDJSEJdUruaEP0DE26beNPv_vZNGYcWEQfhM2c_w162cBVGGjIWBS7TezQJLQfgbZadDbL7_GVJ4AP7OozQoSGj8vb3xAzTSgOihyjXoNVOAB5KMSX3rh-iZVkaBpUtg_HjUvCUK3xBObzoUvwhPneezEy5V6i7QmXx759gTb5f4o8mjmjwWS9JfoIjVzlKVDnaevOpmRnZBMvJg14RO5vXtgKihOA6VenK78/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU6vEZX0ZwceBaVirJAnx8K28VJ0e5azimNP6mrVuCgcePt-NF9kXVFbnvWOfKov2YrQu3t0q7y5OKUg2FI1ziADbPk8wQoaN4unT-YL3SWxexI4GaifBfKlYQ15YzzE0Asz_uhP_W3OLn0RX6_Lkgxc9BEG88U945KRH3BWntHDJD_9ISYZKGjsaKC0JlD04Pw7U9cxpkF5b3ksNXl09nYOGGq23xN5ZlV5lw8d90i6LscEaUc2Nvj2RMMfAl5R-sGNBV8SrX4vol2nBtRiRVEELY44UyRWi7U_2X0wN2mcmz3sBhLyB30igZhgrX542gVM1WwnIYP_lEJhMxBd86SykdPsOxLv56Jex5XlDGLOnRLVCXhG70UWWfvBGj5lWI5gj9vUteJFD_BzTWM_aWfWAyH2-1T_HENY_v2DwfuoaCT1 - height: 3060 - width: 4080 - author_attributions: - - displayName: Albert Jan Thoden van velzen - uri: https://maps.google.com/maps/contrib/115129895508249415311 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocKQA9ONJLW2eYkq0_KVAEKx3Dkc6Va_sbt2mb19dlRGQsh0xQ=s100-p-k-no-mo - - name: places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU5hzvf_IjMgD_0om8DLAwnzi2L1Z27rgtxKHho9M_WyZ6gMPDnp-MHpVfvm4WPWpTadZa_Q47niMznjp5-Z7_fBO8VM2kBCb8fmTZmv2dsi2-E2yOfLBD7q20QJrVQTo15BSrUpW1bHlLk8aQ8pubOtjDiqgVjhaSEEW-L6N-7vTyGiibiLSwCY8MJxl4qdLZS2v8FdQ6ELwreoU37pz6VY9INbviION7G-t8lIuqr8DlJy2iAXXwqROmsQGNicGSp2XPUeBjJUcHAP_ynZ0unYnNw-7wiYsWQiMk2bi5_go6DVfiLMyiEWX2hPI_7hIYNasubGZWlDpiAg_F6yvm2hihAhmwNr7xMc-cQApTZ06eRnmTzCEFnH-m_f-5Mm2JRponywR3_kTZ0fxHFHqJWGt-PaeWfUOtJWLv46CjhfIA - height: 3060 - width: 4080 - author_attributions: - - displayName: Albert Jan Thoden van velzen - uri: https://maps.google.com/maps/contrib/115129895508249415311 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocKQA9ONJLW2eYkq0_KVAEKx3Dkc6Va_sbt2mb19dlRGQsh0xQ=s100-p-k-no-mo - - name: places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU7QM7gYAMCKikgOVQbDSKB22u9iYFl3j1x3QQ_roOrm4eGEi0ZmdHcLS2ddYoraQmj4zhyzE2cKiKuo0vhluEeCCP7yxS8lvJ0Xs8AhfD852jdh7X8cZxW1vWHIOfukYhWmJ2fD0KwaPpSiQT-UjEvEnyx-_zR4PjrIbuENJygsUMd-s7cVVROzBUtpmycS1PHWY2rgCdEXKNwC7kqVizfa7yW-r3ISjX30ESKFW2WOF9fNI8vCqReJccucqlxJPhPlv8cURW0vvlMAzvuCmmyS95Ufhr4mr6XXlT7tS495yqIDHDBg2rE-xBv0ocODF6mlmQP4qZKJElHaLLAbhw2EMsHwMHJAVD73yqplUQO1aUw2hSB8CjvlyNikEJcf-C2eMmEGdqeEBzQ70caz0rwuxrIFvqMIV_GERZgieAi-_Q - height: 3060 - width: 4080 - author_attributions: - - displayName: Albert Jan Thoden van velzen - uri: https://maps.google.com/maps/contrib/115129895508249415311 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocKQA9ONJLW2eYkq0_KVAEKx3Dkc6Va_sbt2mb19dlRGQsh0xQ=s100-p-k-no-mo - - name: places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU5V7MZyxPZ6-v7Zc5g6BvnDi8r7G6lD1ROFccN-5DYlNjRkggzdJMedjz_L50-2knsoQ36VUraooinJGzR3YW6A1S1wfzccNDVZfplBtUJcHLbW6VklndurWmU94SBlmjo2f8HdV1kT-vfPk4eEtxrQ1kD8PWCxsMKRVRon7DGnwQ5Mg070trTBW_LnX8-rHbkpzNl7xLLFUg5RFcYsaNcuNwoKqh0_eGb2CarJjNlgh7sx8p9i-N4J_jm5c-cK79lj-mKCuW79Yj6f5SwEbp2k8bv9ssLBl2OB-Gx6KwsQx3a4zC7t0Z4A1SSBvmS9IZLOC1mVmIoZY_o8m0G39LuJU2ZTbHP9vrD2_lsEJ9YtVUDZt2L9ItDQ7fBkrVv-OPOKD1XVIwbRVQ8rVpUtuRWu4XcO4pPEWIDOUJEnDc1PSiLp - height: 3060 - width: 4080 - author_attributions: - - displayName: Albert Jan Thoden van velzen - uri: https://maps.google.com/maps/contrib/115129895508249415311 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocKQA9ONJLW2eYkq0_KVAEKx3Dkc6Va_sbt2mb19dlRGQsh0xQ=s100-p-k-no-mo - - name: places/ChIJ8UIHJ9-lx0cRurQOpOvoeZg/photos/AWn5SU5mmXoYXcnTwLy3mhqRZoo3ivdiT1spcUU5cBP_YlJxkVK5ow8b-P3qygcML9SwSMNlhVErB7pC9CYfqIj039AY4jYLvVmmFAHaX-TYhdwqBoabAbnMNvUqXsQYvBsXb0Gjp7Lbqzx3rKH9esBBj0DRhDxd8jt0MQPZmyEbc1oXqvkxGQ2AiersOd5TVgMxO51saUlDJSEJdUruaEP0DE26beNPv_vZNGYcWEQfhM2c_w162cBVGGjIWBS7TezQJLQfgbZadDbL7_GVJ4AP7OozQoSGj8vb3xAzTSgOihyjXoNVOAB5KMSX3rh-iZVkaBpUtg_HjUvCUK3xBObzoUvwhPneezEy5V6i7QmXx759gTb5f4o8mjmjwWS9JfoIjVzlKVDnaevOpmRnZBMvJg14RO5vXtgKihOA6VenK78 - height: 3060 - width: 4080 - author_attributions: - - displayName: Albert Jan Thoden van velzen - uri: https://maps.google.com/maps/contrib/115129895508249415311 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocKQA9ONJLW2eYkq0_KVAEKx3Dkc6Va_sbt2mb19dlRGQsh0xQ=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=10987068864714421434&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=51.9619235,5.8865313&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Vereniging Historische Kring Elden, Rijksweg-West 92 B, - Elden, Netherlands diff --git a/data/nde/enriched/entries/0187_stichting_warmoes.yaml b/data/nde/enriched/entries/0187_stichting_warmoes.yaml new file mode 100644 index 0000000000..54814204ef --- /dev/null +++ b/data/nde/enriched/entries/0187_stichting_warmoes.yaml @@ -0,0 +1,151 @@ +# NDE Entry 0187 - Stichting Warmoes, historische tuinderij Lent +# Enriched from website and Google Maps data + +entry_index: 187 +enrichment_status: enriched +enrichment_timestamp: '2025-11-28T10:30:00+00:00' +enrichment_source: website_and_google_maps + +organization: + name: Stichting Warmoes + alternative_names: + - De Warmoes + - Historische Tuinderij Lent + - Warmoes, Historische Tuinderij Lent + type: kenniscentrum + institution_type: + - S # Collecting Society / Heritage organization + - B # Botanical - historic market garden + - T # Taste/Smell - culinary heritage, traditional produce + description: >- + ANBI foundation preserving the traditional "warmoezeniers" (market gardeners) + heritage of Lent and surroundings near Nijmegen. The warmoezeniers historically + supplied the city of Nijmegen with vegetables and fruit. The foundation + cultivates over 100 different vegetable varieties year-round using traditional + methods, without pesticides, following circular principles with respect for + biodiversity. Operates a farm shop, self-harvest garden, flower picking garden, + and cafĂŠ serving produce from their own land. + founded_purpose: >- + To preserve the traditional warmoezeniers business as practiced in Lent + and surroundings, including traditional cultivation methods + legal_form: stichting + anbi_status: true + volunteer_count: 80+ + staff: + coordinators: 2 + volunteers: 80+ + museum_register: true + +location: + street_address: Griftdijk Noord 11 + postal_code: 6663 AA + city: Lent + near: Nijmegen + sublocality: Waalsprong + municipality: Nijmegen + province: Gelderland + country: NL + coordinates: + latitude: 51.8670671 + longitude: 5.8560493 + +contact: + phone: +31 6 58975013 + email: contact@dewarmoes.nl + website: https://www.dewarmoes.nl/ + phone_hours: 10:00-17:00 (Monday and Wednesday-Sunday) + +opening_hours: + regular: + monday: closed + tuesday: closed + wednesday: 10:00-17:00 + thursday: 10:00-17:00 + friday: 10:00-17:00 + saturday: 10:00-17:00 + sunday: 10:00-17:00 + note: Open for groups/rentals on closed days + +digital_presence: + website: https://www.dewarmoes.nl/ + newsletter: true + social_media: true + +facilities: + - name: Tuinderij (Market Garden) + description: Historic market garden with 100+ vegetable varieties + - name: Zelf oogsten (Self Harvest) + description: Pick your own vegetables and herbs + - name: TuincafĂŠ + description: Garden cafĂŠ serving produce from own land + - name: Winkel (Farm Shop) + description: Shop selling fresh produce + - name: Bloemenpluktuinen (Flower Picking Garden) + description: Pick your own flower bouquets + - name: Boomgaard (Orchard) + description: Orchard available for events and rentals + - name: Logeren (Accommodation) + description: Overnight stay options + +services: + - name: Zakelijke bijeenkomsten + description: Business meetings and corporate events + - name: Lunch/borrel/feestje + description: Lunch, drinks, and party hosting + - name: Vergaderen + description: Meeting facilities + +activities: + - type: event + name: Adopteer een (biologische) kerstboom + description: Adopt a biological Christmas tree program + period: November 29 - December 23 + - type: cultural + name: Muziek in het tuincafĂŠ + description: Music performances in the garden cafĂŠ + +heritage_focus: + theme: Warmoezeniers heritage + description: >- + Preserving the knowledge and practices of the traditional market gardeners + (warmoezeniers) who supplied Nijmegen with fresh produce. Focus on + historical cultivation methods, heirloom vegetable varieties, and + sustainable, circular growing practices. + practices: + - Traditional cultivation methods + - No pesticides + - Circular farming + - Biodiversity preservation + - Heirloom varieties (100+ vegetable types) + +publications: + - name: Beleidsplan 2019 + type: policy_document + - name: Bestuursverslag 2024 + type: annual_report + - name: Jaarrekening 2024 + type: financial_report + - name: ANBI formulieren 2024 + type: regulatory + +nde_metadata: + original_entry: + plaatsnaam_bezoekadres: Nijmegen + straat_en_huisnummer_bezoekadres: Griftdijk Noord 11 + organisatie: Stichting Warmoes, historische tuinderij Lent + webadres_organisatie: https://www.dewarmoes.nl/ + type_organisatie: kenniscentrum + museum_register: ja + +google_maps_enrichment: + place_id: ChIJb5ZjvBkIx0cRjHmYaodlnzc + name: Warmoes, Historische Tuinderij Lent + business_status: OPERATIONAL + rating: 4.5 + total_ratings: 105 + primary_type: garden + additional_types: + - farm + - museum + - restaurant + - event_venue diff --git a/data/nde/enriched/entries/0187_unknown.yaml b/data/nde/enriched/entries/0187_unknown.yaml deleted file mode 100644 index 3b941f62fa..0000000000 --- a/data/nde/enriched/entries/0187_unknown.yaml +++ /dev/null @@ -1,222 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Nijmegen - straat_en_huisnummer_bezoekadres: Griftdijk Noord 11 - organisatie: Stichting Warmoes, historische tuinderij Lent - webadres_organisatie: https://www.dewarmoes.nl/ - type_organisatie: kenniscentrum - museum_register: ja - type: - - S -entry_index: 187 -processing_timestamp: '2025-11-27T15:15:23.543976+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJb5ZjvBkIx0cRjHmYaodlnzc - name: Warmoes, Historische Tuinderij Lent - fetch_timestamp: '2025-11-28T09:50:27.759846+00:00' - api_status: OK - coordinates: - latitude: 51.8670671 - longitude: 5.8560493 - formatted_address: Griftdijk Noord 11, 6663 AA Nijmegen - short_address: Griftdijk Noord 11, Nijmegen - address_components: - - long_name: '11' - short_name: '11' - types: - - street_number - - long_name: Griftdijk Noord - short_name: Griftdijk Noord - types: - - route - - long_name: Waalsprong - short_name: Waalsprong - types: - - sublocality_level_1 - - sublocality - - political - - long_name: Nijmegen - short_name: Nijmegen - types: - - locality - - political - - long_name: Nijmegen - short_name: Nijmegen - types: - - administrative_area_level_2 - - political - - long_name: Gelderland - short_name: GE - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 6663 AA - short_name: 6663 AA - types: - - postal_code - phone_local: 06 58975013 - phone_international: +31 6 58975013 - website: https://dewarmoes.nl/ - google_place_types: - - garden - - farm - - wholesaler - - museum - - food_store - - health - - restaurant - - food - - park - - event_venue - - store - - point_of_interest - - establishment - primary_type: garden - business_status: OPERATIONAL - opening_hours: - open_now: true - periods: - - open: - day: 0 - hour: 10 - minute: 0 - close: - day: 0 - hour: 17 - minute: 0 - - open: - day: 3 - hour: 10 - minute: 0 - close: - day: 3 - hour: 17 - minute: 0 - - open: - day: 4 - hour: 10 - minute: 0 - close: - day: 4 - hour: 17 - minute: 0 - - open: - day: 5 - hour: 10 - minute: 0 - close: - day: 5 - hour: 17 - minute: 0 - - open: - day: 6 - hour: 10 - minute: 0 - close: - day: 6 - hour: 17 - minute: 0 - weekday_text: - - 'maandag: Gesloten' - - 'dinsdag: Gesloten' - - 'woensdag: 10:00â17:00' - - 'donderdag: 10:00â17:00' - - 'vrijdag: 10:00â17:00' - - 'zaterdag: 10:00â17:00' - - 'zondag: 10:00â17:00' - rating: 4.5 - total_ratings: 105 - reviews: - - author_name: Jolanda Pikkaart (Colourful phototelling) - author_uri: https://www.google.com/maps/contrib/100267359245157298868/reviews - rating: 5 - relative_time_description: een maand geleden - text: Superleuk als je houdt van puur en duurzaam. Informatief en een gezellige - plek. - publish_time: '2025-10-03T14:38:45.381171294Z' - - author_name: Inez Delsing - author_uri: https://www.google.com/maps/contrib/109844898436641735235/reviews - rating: 5 - relative_time_description: 3 maanden geleden - text: Aangename groene en bloemrijke plek midden tussen de nieuwbouw van Nijmegen-Noord. - Boerderijwinkel, plukboeketten, terras tussen de boomgaarden en heerlijke (vegetarische) - lunchgerechten. Heel vriendelijke bediening. Kom graag een keer terug! - publish_time: '2025-08-24T14:40:17.080149604Z' - - author_name: Maaike Vogel - author_uri: https://www.google.com/maps/contrib/117801037566995349197/reviews - rating: 5 - relative_time_description: 3 jaar geleden - text: Wat gezellige tuinderij, zag veel lekker verse producten. Ondanks dat er - al vanalles omheen gebouw is en gebouwd word merk als je daar bent er niks van, - zo heerlijk - publish_time: '2022-09-10T12:54:19.919025Z' - - author_name: Marie-Louise - author_uri: https://www.google.com/maps/contrib/109128349432100820818/reviews - rating: 5 - relative_time_description: 5 jaar geleden - text: Heerlijk genieten in de boomgaard. Heerlijk assortiment om te lunchen of - lekkere taartje te eten. Op de foto zie je de dagsoep met brood homemade ice - tea en smoothie. Maatregelen ivm Corona worden goed nageleefd! - publish_time: '2020-06-01T12:17:13.914797Z' - - author_name: H W - author_uri: https://www.google.com/maps/contrib/105528572247292132527/reviews - rating: 3 - relative_time_description: 2 maanden geleden - text: Heerlijke plaats alleen de prijzen zijn buitensporig. Helaas. - publish_time: '2025-09-07T13:42:56.190867190Z' - photo_urls: - - https://places.googleapis.com/v1/places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU71NOih1BpLQaZiVILf8BJcqxAFRFyevZ7SsVFfLSEFc37JMCB_QAjBUSff5daMuPhqlJ7Iegq9qRZrglQrt7TL3HRA7mDTZs-4ZLWUsa2bbo6MPgJQWlarBHQ8oODBXfaGGrf5d9ZyC9HIbFjIbJ5qgDW8zEXh2TB-QzU-AAaITTBsjpBW_gh5YC-Vv1R11ClTQobVtCV7zIVQEJ0uDHx0tbtAtPsq84FesgRk3RjTIWzFa7lL8ZpgBP_EkElmhO8ev8Oy2drLduzEO6phgl7FKZNoE_NzRvXA18bTo3nWHev_fLnQDpFcYd2IRFhuJAIyoV_lbbX8PRnAcLXJNC_pRXQ2Rs8vVgGpOiC8Q5zRMVmX8X4i6Qt_gnGfG5ELfPUzAYzCXjZAlGG8otmTHuubBRLrklYQDkx2loOIa2g2IGye/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU5MViiUJKS3hqumRhfhZUHb5OcdBJ79zeu5jSbuGvgwfRhSrL43NQvkjjSwTB1ZxQqVL8nfG4mMQ6IBawu61WMcDrhYRK2A-uhONcx2fpToRXLO5cB_pO33JjMNphuz8rMLewwHGKzX8IKVHeh15TZbVU3Lea2mmpIbmzZO90EmBqmYo3sciwpg1vKD4RQMTHmrFlZdJXs0QVI9lu3KueJKhABdD-vJoi3a3aasGt3yITAyc-0AU7IYUYByPCCX_5cUKEh-IlyQ75g8OoUOoFqkNUMF5OuqsEBMQmKgz0h5w0rgg2uk0asa9_rqKf5GcJPEyDjDn7C_idvPFfBs2sJIvnjBg3XXqzmQ8F7-SbiO0Z1MlGsg6ta1yAw9Mb1wlGijAVtdHG0eaZbEC8YOcVjufOFboXcMchEp9qRLcfnjjA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU4SV0n17Rbz26LBO2v9UHImtwCiRaWNACCpKvjIgsz2VoWXHRWX80yVgUtpsndCBz_REA0-k7iDWvRlBMt2_yaDnXQFfjm5-BnU3MZ165Vwmv00Ls1HC-mmJBzhWt8aUbBk6tDgoR6AEvxjNTDump9GVC8eZl1drMBfIAD6Hk3aEKBEdZ6ZIDE_gCp16ncLz0VgbXsG9-sy4wKgeY28E-mBGXdCgQguSXTRjg_ZU98Sp861ny4k2K62_rArStPFvvjwLkal83P4JiZPvF7NYKHgjfzqdkXyo0i8bJ1OB8Af6lReZqKjy46p-EI1H0ae4mepV-KrHgMfZW60DmZSrYZ_wlLYbjjzvptKeoGjMn-3Kmk1X3rDpFXOkd58I7llNOHYIncOLp_FPByRLGJ5rZdI0FB16XwPmd_QJLBysG6_rj4d/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU41DLh34f9dz9r8jd3S8bi782qg57wNWEJzDSOV1WUogflo4V5eGx0ih5e3vPy8WKovWIDmFN2p826FlHgsxndnrJpjK9j18MZiZf4DvApZaxRHsxXeO-Us0H-Lt0hxyTY_bJgZokdZxbjz6k7JB8mW3cWUKrEWmNrF-B5zpqVbMuTm95lLranSIT3VvIzJ_ofg6yRjMx8bHtU7iXH4OCJe2Sv-5CHTCX0IkOPzIQ6BVKorpLNmvVmfHYtf_WHNM9ouhTxlcOvMg8qQ1M5V3DYlnFhUcgvhK56mtmwZKfhxMfpiWwtk_Nb90lIYWbSPhARjy-6YyLtE_ROqsIxkqg3QTFTqJOLEwiT0ek9yPSBuJn-61qkdbJDIyw2kYtLdp-_12ds7tlG3oRXD_rnc8uKOYrWjsJBRIar07GgIX039DQ/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - - https://places.googleapis.com/v1/places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU4crOZbcjMPLXaVa0XuAFt5lR94Z-YNCIUNxvSFqR6rUT9WCpEpNkIUhyXrJUWLIpy9raAJVmVtjv1LsYT-fwr83uXPIThlAS_Sp0KwIUQhK_olOdrLvFCyHQQQETmWYcK-46wnwSMD8H3Ofp6jaFAqGANYiT8HEe0hFNLwRmyO-aSQhzVYOVJVJ2L7Jukh8HhQXqbIDTQkXJhGJpOdU-2p0WxIYAyfVS4viU06vw60bBp_khjLGuESgNPnlJFdbRXbnSuJd9sXmqeb9HV7P4Lhz7U2PO4rRCtcTzv1VSd_mT2U-nDnsuN2tpTckPFw9VYCBsFqCYUIZyXGnsjHgQ9R1cx8jeaet3PJVDC2uom6JckFKsIBs1VMYPCf0YVkGLTJXwZEM1iBBu__z-LMXYwAjeM7gAF3L0aRkI-fSdQe7U3g/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - photos_metadata: - - name: places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU71NOih1BpLQaZiVILf8BJcqxAFRFyevZ7SsVFfLSEFc37JMCB_QAjBUSff5daMuPhqlJ7Iegq9qRZrglQrt7TL3HRA7mDTZs-4ZLWUsa2bbo6MPgJQWlarBHQ8oODBXfaGGrf5d9ZyC9HIbFjIbJ5qgDW8zEXh2TB-QzU-AAaITTBsjpBW_gh5YC-Vv1R11ClTQobVtCV7zIVQEJ0uDHx0tbtAtPsq84FesgRk3RjTIWzFa7lL8ZpgBP_EkElmhO8ev8Oy2drLduzEO6phgl7FKZNoE_NzRvXA18bTo3nWHev_fLnQDpFcYd2IRFhuJAIyoV_lbbX8PRnAcLXJNC_pRXQ2Rs8vVgGpOiC8Q5zRMVmX8X4i6Qt_gnGfG5ELfPUzAYzCXjZAlGG8otmTHuubBRLrklYQDkx2loOIa2g2IGye - height: 3024 - width: 4032 - author_attributions: - - displayName: Sydney Heemskerk - uri: https://maps.google.com/maps/contrib/110454695412485691264 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXETSotjxZT5UP2pc77IwGjtgqdLR-fOHk_R2RFKE11Kzq1rU48=s100-p-k-no-mo - - name: places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU5MViiUJKS3hqumRhfhZUHb5OcdBJ79zeu5jSbuGvgwfRhSrL43NQvkjjSwTB1ZxQqVL8nfG4mMQ6IBawu61WMcDrhYRK2A-uhONcx2fpToRXLO5cB_pO33JjMNphuz8rMLewwHGKzX8IKVHeh15TZbVU3Lea2mmpIbmzZO90EmBqmYo3sciwpg1vKD4RQMTHmrFlZdJXs0QVI9lu3KueJKhABdD-vJoi3a3aasGt3yITAyc-0AU7IYUYByPCCX_5cUKEh-IlyQ75g8OoUOoFqkNUMF5OuqsEBMQmKgz0h5w0rgg2uk0asa9_rqKf5GcJPEyDjDn7C_idvPFfBs2sJIvnjBg3XXqzmQ8F7-SbiO0Z1MlGsg6ta1yAw9Mb1wlGijAVtdHG0eaZbEC8YOcVjufOFboXcMchEp9qRLcfnjjA - height: 2568 - width: 3422 - author_attributions: - - displayName: Willem Verbeek - uri: https://maps.google.com/maps/contrib/103670504458442579846 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjUHvL0bHs2SFdyTsBSZhIo3VnTiDoBLLkdJigwSClZ_dFGhdlwb4Q=s100-p-k-no-mo - - name: places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU4SV0n17Rbz26LBO2v9UHImtwCiRaWNACCpKvjIgsz2VoWXHRWX80yVgUtpsndCBz_REA0-k7iDWvRlBMt2_yaDnXQFfjm5-BnU3MZ165Vwmv00Ls1HC-mmJBzhWt8aUbBk6tDgoR6AEvxjNTDump9GVC8eZl1drMBfIAD6Hk3aEKBEdZ6ZIDE_gCp16ncLz0VgbXsG9-sy4wKgeY28E-mBGXdCgQguSXTRjg_ZU98Sp861ny4k2K62_rArStPFvvjwLkal83P4JiZPvF7NYKHgjfzqdkXyo0i8bJ1OB8Af6lReZqKjy46p-EI1H0ae4mepV-KrHgMfZW60DmZSrYZ_wlLYbjjzvptKeoGjMn-3Kmk1X3rDpFXOkd58I7llNOHYIncOLp_FPByRLGJ5rZdI0FB16XwPmd_QJLBysG6_rj4d - height: 3024 - width: 4032 - author_attributions: - - displayName: Edwin Breedveld - uri: https://maps.google.com/maps/contrib/102755991377226832413 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXD8-4Z-mahKvU3ZDFd8dAnLb_CQPJVmgp9MKaz229HYMmCnDht=s100-p-k-no-mo - - name: places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU41DLh34f9dz9r8jd3S8bi782qg57wNWEJzDSOV1WUogflo4V5eGx0ih5e3vPy8WKovWIDmFN2p826FlHgsxndnrJpjK9j18MZiZf4DvApZaxRHsxXeO-Us0H-Lt0hxyTY_bJgZokdZxbjz6k7JB8mW3cWUKrEWmNrF-B5zpqVbMuTm95lLranSIT3VvIzJ_ofg6yRjMx8bHtU7iXH4OCJe2Sv-5CHTCX0IkOPzIQ6BVKorpLNmvVmfHYtf_WHNM9ouhTxlcOvMg8qQ1M5V3DYlnFhUcgvhK56mtmwZKfhxMfpiWwtk_Nb90lIYWbSPhARjy-6YyLtE_ROqsIxkqg3QTFTqJOLEwiT0ek9yPSBuJn-61qkdbJDIyw2kYtLdp-_12ds7tlG3oRXD_rnc8uKOYrWjsJBRIar07GgIX039DQ - height: 3024 - width: 4032 - author_attributions: - - displayName: Peter van Campen - uri: https://maps.google.com/maps/contrib/116362388826274597209 - photoUri: https://lh3.googleusercontent.com/a/ACg8ocJxP9me-slh2wUIY7Aq2EB6JFQiPeBOGojB2cs7PLjKYWuGvw=s100-p-k-no-mo - - name: places/ChIJb5ZjvBkIx0cRjHmYaodlnzc/photos/AWn5SU4crOZbcjMPLXaVa0XuAFt5lR94Z-YNCIUNxvSFqR6rUT9WCpEpNkIUhyXrJUWLIpy9raAJVmVtjv1LsYT-fwr83uXPIThlAS_Sp0KwIUQhK_olOdrLvFCyHQQQETmWYcK-46wnwSMD8H3Ofp6jaFAqGANYiT8HEe0hFNLwRmyO-aSQhzVYOVJVJ2L7Jukh8HhQXqbIDTQkXJhGJpOdU-2p0WxIYAyfVS4viU06vw60bBp_khjLGuESgNPnlJFdbRXbnSuJd9sXmqeb9HV7P4Lhz7U2PO4rRCtcTzv1VSd_mT2U-nDnsuN2tpTckPFw9VYCBsFqCYUIZyXGnsjHgQ9R1cx8jeaet3PJVDC2uom6JckFKsIBs1VMYPCf0YVkGLTJXwZEM1iBBu__z-LMXYwAjeM7gAF3L0aRkI-fSdQe7U3g - height: 3024 - width: 4032 - author_attributions: - - displayName: Iris Cohen - uri: https://maps.google.com/maps/contrib/102112130244597019581 - photoUri: https://lh3.googleusercontent.com/a-/ALV-UjWo7-U3qOqLr1jR21eKshFwOuyeSa0M-BnylS2VtbqaBPzMnByLXw=s100-p-k-no-mo - google_maps_url: https://maps.google.com/?cid=4008033825666398604&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=51.8670671,5.8560493&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/tree_pinlet - icon_background_color: '#4DB546' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Warmoes, historische tuinderij Lent, Griftdijk - Noord 11, Nijmegen, Netherlands diff --git a/data/nde/enriched/entries/0189_historische_vereniging_raalte.yaml b/data/nde/enriched/entries/0189_historische_vereniging_raalte.yaml new file mode 100644 index 0000000000..534ea3898e --- /dev/null +++ b/data/nde/enriched/entries/0189_historische_vereniging_raalte.yaml @@ -0,0 +1,136 @@ +original_entry: + plaatsnaam_bezoekadres: Raalte + straat_en_huisnummer_bezoekadres: de Hoven 2 + organisatie: Historische Vereniging Raalte en Omstreken + webadres_organisatie: https://raalte-historie.nl/ + type_organisatie: historische vereniging + isil-code_na: NL-RatHvR + type: + - S +entry_index: 189 +processing_timestamp: '2025-11-27T15:15:25.774686+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJIyRHhsblx0cRovF6kF5V-o0 + name: Historische Vereniging Raalte en omstreken + fetch_timestamp: '2025-11-28T09:50:28.997448+00:00' + api_status: OK + coordinates: + latitude: 52.376856399999994 + longitude: 6.264659099999999 + formatted_address: De Hoven 2, 8101 DZ Raalte + short_address: De Hoven 2, Raalte + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: De Hoven + short_name: De Hoven + types: + - route + - long_name: Raalte + short_name: Raalte + types: + - locality + - political + - long_name: Raalte + short_name: Raalte + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8101 DZ + short_name: 8101 DZ + types: + - postal_code + phone_local: 0572 356 952 + phone_international: +31 572 356 952 + website: https://raalte-historie.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + google_maps_url: https://maps.google.com/?cid=10230583368164766114&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.376856399999994,6.264659099999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Historische Vereniging Raalte en Omstreken, de Hoven 2, Raalte, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:35:00+00:00' + fetch_status: success + source_url: https://raalte-historie.nl/ + language: nl + organization_details: + official_name: Historische Vereniging Raalte en Omstreken + abbreviation: HVR + type: historische vereniging + founded: Not specified on website + location: Raalte, Overijssel + isil_code: NL-RatHvR + description: >- + Historical society for Raalte and surrounding areas in Overijssel. One of the + larger local historical societies in the Netherlands with approximately 800 + members. Focuses on local history research, documentation, and education. + membership: + approximate_count: 800 + annual_fee: Membership fee applies (exact amount on website) + publications: + - title: Kruudmoes + type: quarterly_journal + description: Society's quarterly journal with historical articles about Raalte region + frequency: 4x per year + facilities: + documentation_center: + name: Documentatiecentrum + location: De Hoven 2, Raalte + description: Research center for local history + opening_hours: By appointment + resources: + - Historical documents + - Photographs + - Maps + - Newspaper archives + kadaster_access: + description: Subscription to Kadaster (Dutch Land Registry) historical records + purpose: Access to historical property records and maps + activities: + - type: research + description: Local history research and documentation + - type: publications + description: Quarterly journal Kruudmoes + - type: lectures + description: Regular lectures on historical topics + - type: excursions + description: Historical excursions and guided tours + - type: exhibitions + description: Occasional historical exhibitions + digital_presence: + website: https://raalte-historie.nl/ + has_online_catalog: Partial (some materials described online) + contact: + address: De Hoven 2, 8101 DZ Raalte + phone: 0572 356 952 + region: Overijssel + heritage_significance: + type: local_history + focus: History of Raalte municipality and surrounding region + collection_type: archival and documentary + coverage_area: Raalte, Heino, Broekland, Luttenberg and surrounding villages + institution_classification: + primary_type: S + type_label: Collecting Society / Historical Association + subtype: historische_vereniging + heritage_function: Local history research, documentation, and education + scale: Large local society (~800 members) diff --git a/data/nde/enriched/entries/0189_unknown.yaml b/data/nde/enriched/entries/0189_unknown.yaml deleted file mode 100644 index dd15c3a889..0000000000 --- a/data/nde/enriched/entries/0189_unknown.yaml +++ /dev/null @@ -1,71 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Raalte - straat_en_huisnummer_bezoekadres: de Hoven 2 - organisatie: Historische Vereniging Raalte en Omstreken - webadres_organisatie: https://raalte-historie.nl/ - type_organisatie: historische vereniging - isil-code_na: NL-RatHvR - type: - - S -entry_index: 189 -processing_timestamp: '2025-11-27T15:15:25.774686+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJIyRHhsblx0cRovF6kF5V-o0 - name: Historische Vereniging Raalte en omstreken - fetch_timestamp: '2025-11-28T09:50:28.997448+00:00' - api_status: OK - coordinates: - latitude: 52.376856399999994 - longitude: 6.264659099999999 - formatted_address: De Hoven 2, 8101 DZ Raalte - short_address: De Hoven 2, Raalte - address_components: - - long_name: '2' - short_name: '2' - types: - - street_number - - long_name: De Hoven - short_name: De Hoven - types: - - route - - long_name: Raalte - short_name: Raalte - types: - - locality - - political - - long_name: Raalte - short_name: Raalte - types: - - administrative_area_level_2 - - political - - long_name: Overijssel - short_name: OV - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 8101 DZ - short_name: 8101 DZ - types: - - postal_code - phone_local: 0572 356 952 - phone_international: +31 572 356 952 - website: https://raalte-historie.nl/ - google_place_types: - - point_of_interest - - establishment - business_status: OPERATIONAL - google_maps_url: https://maps.google.com/?cid=10230583368164766114&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.376856399999994,6.264659099999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Historische Vereniging Raalte en Omstreken, de Hoven 2, - Raalte, Netherlands diff --git a/data/nde/enriched/entries/0203_stichting_korpora.yaml b/data/nde/enriched/entries/0203_stichting_korpora.yaml new file mode 100644 index 0000000000..f77bcfed2f --- /dev/null +++ b/data/nde/enriched/entries/0203_stichting_korpora.yaml @@ -0,0 +1,157 @@ +original_entry: + plaatsnaam_bezoekadres: Apeldoorn + straat_en_huisnummer_bezoekadres: St Eustatius 18 + organisatie: Stichting Korpora + webadres_organisatie: https://www.korpora.nl/ + type_organisatie: kenniscentrum + museum_register: ja + type: + - S +entry_index: 203 +processing_timestamp: '2025-11-27T15:15:54.091323+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJ5S7pBOW4x0cRMeyym2jxGlg + name: Stichting Nationaal Veiligheidsinstituut + fetch_timestamp: '2025-11-28T09:50:37.497457+00:00' + api_status: OK + coordinates: + latitude: 52.1761233 + longitude: 5.9684650999999995 + formatted_address: Oude Apeldoornseweg 41-45, 7333 NR Apeldoorn + short_address: Oude Apeldoornseweg 41-45, Apeldoorn + address_components: + - long_name: 41-45 + short_name: 41-45 + types: + - street_number + - long_name: Oude Apeldoornseweg + short_name: Oude Apeldoornseweg + types: + - route + - long_name: Apeldoorn Zuid + short_name: Apeldoorn Zuid + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Apeldoorn + short_name: Apeldoorn + types: + - locality + - political + - long_name: Apeldoorn + short_name: Apeldoorn + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7333 NR + short_name: 7333 NR + types: + - postal_code + phone_local: 055 543 0691 + phone_international: +31 55 543 0691 + google_place_types: + - museum + - point_of_interest + - establishment + primary_type: museum + business_status: CLOSED_PERMANENTLY + rating: 2 + total_ratings: 1 + reviews: + - author_name: Martijn BjĂśrna + author_uri: https://www.google.com/maps/contrib/115195844070921699430/reviews + rating: 2 + relative_time_description: 10 jaar geleden + text: gesloten, valt onder nieuwe veoligheidsmuseum wat in Almere wordt gebouwd. niet toegangkelijk in Apeldoorn. + publish_time: '2014-12-21T08:26:13.384Z' + google_maps_url: https://maps.google.com/?cid=6348652056323222577&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.1761233,5.9684650999999995&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/museum_pinlet + icon_background_color: '#13B5C7' + utc_offset_minutes: 60 + match_note: Google Maps returned predecessor organization (NVI) which is now closed +google_maps_status: SUCCESS +google_maps_search_query: Stichting Korpora, St Eustatius 18, Apeldoorn, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:40:00+00:00' + fetch_status: success + source_url: https://www.korpora.nl/ + language: nl + organization_details: + official_name: Stichting Korpora + legal_form: stichting + anbi_status: true + type: kenniscentrum (knowledge center) + location: Apeldoorn, Gelderland + description: >- + National knowledge center and heritage organization for Dutch public safety + heritage (openbare orde en veiligheid). Preserves and provides access to the + historical heritage of police, fire services, Red Cross, and civil defense + (Bescherming Bevolking/BB) in the Netherlands. + history: + predecessor: Stichting Nationaal Veiligheidsinstituut (NVI) + note: >- + Korpora is the successor organization to NVI. The old NVI location in + Apeldoorn (Oude Apeldoornseweg) is permanently closed. Korpora continues + the heritage preservation mission under new management. + scope: + heritage_domains: + - name: Police (Politie) + description: Historical police equipment, uniforms, documents + - name: Fire Services (Brandweer) + description: Historical fire fighting equipment and archives + - name: Red Cross (Rode Kruis) + description: Dutch Red Cross heritage materials + - name: Civil Defense (Bescherming Bevolking/BB) + description: Cold War era civil defense heritage + collections: + has_physical_collection: true + has_online_database: true + database_url: https://www.korpora.nl/ (collection accessible via website) + collection_types: + - Objects and equipment + - Uniforms and insignia + - Documents and archives + - Photographs + - Audiovisual materials + activities: + - type: collection_management + description: Preservation and management of public safety heritage collections + - type: research_support + description: Support for historical research on Dutch public safety organizations + - type: knowledge_sharing + description: Providing information and expertise on public safety heritage + - type: loans + description: Lending objects to museums and exhibitions + contact: + registered_address: St Eustatius 18, Apeldoorn + note: Contact via website + region: Gelderland + heritage_significance: + type: specialized_heritage + focus: Dutch public safety and emergency services heritage + coverage: National (Netherlands) + time_period: 19th-21st century + unique_aspects: + - Only national center for combined police/fire/civil defense heritage + - Includes Cold War civil defense (BB) materials + - Cross-organizational perspective on Dutch public safety history + institution_classification: + primary_type: S + type_label: Collecting Society / Knowledge Center + subtype: kenniscentrum + heritage_function: Public safety heritage preservation and access + in_museum_register: true + scale: National diff --git a/data/nde/enriched/entries/0203_unknown.yaml b/data/nde/enriched/entries/0203_unknown.yaml deleted file mode 100644 index f688388ac1..0000000000 --- a/data/nde/enriched/entries/0203_unknown.yaml +++ /dev/null @@ -1,87 +0,0 @@ -original_entry: - plaatsnaam_bezoekadres: Apeldoorn - straat_en_huisnummer_bezoekadres: St Eustatius 18 - organisatie: Stichting Korpora - webadres_organisatie: https://www.korpora.nl/ - type_organisatie: kenniscentrum - museum_register: ja - type: - - S -entry_index: 203 -processing_timestamp: '2025-11-27T15:15:54.091323+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJ5S7pBOW4x0cRMeyym2jxGlg - name: Stichting Nationaal Veiligheidsinstituut - fetch_timestamp: '2025-11-28T09:50:37.497457+00:00' - api_status: OK - coordinates: - latitude: 52.1761233 - longitude: 5.9684650999999995 - formatted_address: Oude Apeldoornseweg 41-45, 7333 NR Apeldoorn - short_address: Oude Apeldoornseweg 41-45, Apeldoorn - address_components: - - long_name: 41-45 - short_name: 41-45 - types: - - street_number - - long_name: Oude Apeldoornseweg - short_name: Oude Apeldoornseweg - types: - - route - - long_name: Apeldoorn Zuid - short_name: Apeldoorn Zuid - types: - - sublocality_level_1 - - sublocality - - political - - long_name: Apeldoorn - short_name: Apeldoorn - types: - - locality - - political - - long_name: Apeldoorn - short_name: Apeldoorn - types: - - administrative_area_level_2 - - political - - long_name: Gelderland - short_name: GE - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 7333 NR - short_name: 7333 NR - types: - - postal_code - phone_local: 055 543 0691 - phone_international: +31 55 543 0691 - google_place_types: - - museum - - point_of_interest - - establishment - primary_type: museum - business_status: CLOSED_PERMANENTLY - rating: 2 - total_ratings: 1 - reviews: - - author_name: Martijn BjĂśrna - author_uri: https://www.google.com/maps/contrib/115195844070921699430/reviews - rating: 2 - relative_time_description: 10 jaar geleden - text: gesloten, valt onder nieuwe veoligheidsmuseum wat in Almere wordt gebouwd. - niet toegangkelijk in Apeldoorn. - publish_time: '2014-12-21T08:26:13.384Z' - google_maps_url: https://maps.google.com/?cid=6348652056323222577&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.1761233,5.9684650999999995&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/museum_pinlet - icon_background_color: '#13B5C7' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Stichting Korpora, St Eustatius 18, Apeldoorn, Netherlands diff --git a/data/nde/enriched/entries/0255_unknown.yaml b/data/nde/enriched/entries/0255_soerens_archief.yaml similarity index 71% rename from data/nde/enriched/entries/0255_unknown.yaml rename to data/nde/enriched/entries/0255_soerens_archief.yaml index bdc58bb1b3..12a8f41ade 100644 --- a/data/nde/enriched/entries/0255_unknown.yaml +++ b/data/nde/enriched/entries/0255_soerens_archief.yaml @@ -11,8 +11,7 @@ original_entry: - D entry_index: 255 processing_timestamp: '2025-11-27T15:17:46.207779+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id +enrichment_status: enriched google_maps_enrichment: place_id: ChIJdxqpDZm9x0cR2Pu3SsWqU5g name: '''t Sprengenhus' @@ -105,11 +104,11 @@ google_maps_enrichment: hour: 16 minute: 0 weekday_text: - - 'maandag: 09:00â16:00' - - 'dinsdag: 09:00â16:00' - - 'woensdag: 09:00â13:00' - - 'donderdag: 09:00â16:00' - - 'vrijdag: 09:00â16:00' + - 'maandag: 09:00-16:00' + - 'dinsdag: 09:00-16:00' + - 'woensdag: 09:00-13:00' + - 'donderdag: 09:00-16:00' + - 'vrijdag: 09:00-16:00' - 'zaterdag: Gesloten' - 'zondag: Gesloten' rating: 3.9 @@ -119,28 +118,25 @@ google_maps_enrichment: author_uri: https://www.google.com/maps/contrib/109990327469771257968/reviews rating: 5 relative_time_description: 3 jaar geleden - text: Mooie plek waar mensen creatief bezig zijn met af en toe een tentoonstelling - van hun werk bv schilderijen. + text: Mooie plek waar mensen creatief bezig zijn met af en toe een tentoonstelling van hun werk bv schilderijen. publish_time: '2022-05-12T18:55:46.610896Z' - author_name: Lex Van Laren author_uri: https://www.google.com/maps/contrib/113651447438372156010/reviews rating: 5 relative_time_description: 10 maanden geleden - text: Gezellige nieuwjaars borrel met dorpsgenoten genoten. + text: Gezellige nieuwjaars borrel met dorpsgenoten genoten. publish_time: '2025-01-04T23:10:18.412923Z' - author_name: Nelleke Den Boer-Pinxter author_uri: https://www.google.com/maps/contrib/111872506926037538209/reviews rating: 4 relative_time_description: 5 jaar geleden - text: Mooi gebouw jammer dat het gedeeltelijk leeg staat. Twee archieven van de - Oudheidkundige Kring en van Laag- Soeren + text: Mooi gebouw jammer dat het gedeeltelijk leeg staat. Twee archieven van de Oudheidkundige Kring en van Laag- Soeren publish_time: '2020-10-14T13:21:11.147985Z' - author_name: Petra author_uri: https://www.google.com/maps/contrib/103652406524054743865/reviews rating: 4 relative_time_description: 5 jaar geleden - text: Leuke om met vrienden aan de bar te hangen. Persoonlijk vind ik het een - saai gebouw. + text: Leuke om met vrienden aan de bar te hangen. Persoonlijk vind ik het een saai gebouw. publish_time: '2020-07-31T19:11:21.059462Z' - author_name: Govert Nieuwland author_uri: https://www.google.com/maps/contrib/101002128300714452137/reviews @@ -195,5 +191,111 @@ google_maps_enrichment: icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet icon_background_color: '#7B9EB0' utc_offset_minutes: 60 + location_note: Located in 't Sprengenhus community center building google_maps_status: SUCCESS google_maps_search_query: Soerens Archief, Harderwijkerweg 25A, Laag-Soeren, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T15:10:00+00:00' + fetch_status: success + source_url: https://www.soerensarchief.nl/cgi-bin/fotos.pl + language: nl + organization_details: + official_name: Soerens Archief + type: archief / beeldbank (photo archive) + location: Laag-Soeren, Gelderland + municipality: Rheden + physical_location: "'t Sprengenhus, Harderwijkerweg 25A" + legal_status: Not registered with KvK (informal organization) + system: ZCBS (Zcbs Beeldbank Systeem) + description: >- + Local photo archive for the village of Laag-Soeren in Gelderland. Maintains + a digital image bank (beeldbank) with historical and contemporary photographs + of the village and surrounding area. Part of the ZCBS network of local + heritage image banks. + collections: + photo_collection: + name: Beeldbank Soerens Archief + type: photograph_collection + total_photos_online: 651 + total_photos_intranet: 652 + last_update: '2023-12-19' + access: Online via website + categories: + - name: Lokaties/Gebouwen/Bedrijven + count: 473 + subcategories: + - (Water)molens (34) + - Bethesda/Amsterda/Soeria (84) + - Boerderijen (50) + - Hotels/pensions (58) + - Hotels/pensions/campings (104) + - Middenstand (24) + - Monumenten (15) + - Publieke gebouwen (15) + - Woonhuizen (24) + - name: Natuur + count: 170 + subcategories: + - Landschappen (106) + - Sprengen en beken (46) + - Bosbeheer/natuurmonumenten (16) + - name: Cultuur + count: 2 + - name: Verenigingen + count: 2 + - name: Overheden + count: 1 + geographic_coverage: + - Laag-Soeren (639 photos) + - Dieren (4 photos) + - Eerbeek (4 photos) + temporal_coverage: + - Pre-1960 (228 photos) + - 1960-1985 (119 photos) + - 1985-2020 (27 photos) + notable_streets: + - Badhuislaan (169 photos) + - Harderwijkerweg (142 photos) + - Bosgebied (51 photos) + - Priesnitzlaan (50 photos) + objects_collection: + name: Objecten beeldbank + type: object_collection + url: https://www.soerensarchief.nl/cgi-bin/objecten.pl + description: Collection of historical objects from Laag-Soeren + digital_presence: + website: https://www.soerensarchief.nl/ + beeldbank_url: https://www.soerensarchief.nl/cgi-bin/fotos.pl + objects_url: https://www.soerensarchief.nl/cgi-bin/objecten.pl + parent_site: https://laag-soeren.nl/soerens-archief + software: ZCBS (Zcbs Collection/Beeldbank Software) v4.17m + software_developer: Gerard van Nes (Schagerbrug, NH) + related_organizations: + - name: Oudheidkundige Kring + relationship: Shares building ('t Sprengenhus) + note: Mentioned in Google reviews as having separate archive in same building + contact: + address: Harderwijkerweg 25A, 6957 AB Laag-Soeren + building: "'t Sprengenhus" + region: Gelderland + heritage_significance: + type: local_photo_archive + focus: Visual history of Laag-Soeren village + coverage_area: Laag-Soeren and immediate surroundings + special_collections: + - Bethesda/Amsterda/Soeria health resort complex (84 photos) + - Historic hotels and pensions (162 photos combined) + - Sprengen and brooks (46 photos) - local water heritage + - Watermills (34 photos) + historical_themes: + - Health tourism (historic kurort/spa resort history) + - Rural Veluwe landscape + - Village development over time + institution_classification: + primary_type: A + secondary_type: D + type_label: Archive + Digital Platform + subtype: beeldbank + heritage_function: Local visual heritage preservation and access + kvk_status: Not registered + scale: Village-level diff --git a/data/nde/enriched/entries/0261_unknown.yaml b/data/nde/enriched/entries/0261_stichting_behoud_oorlogsherinneringen.yaml similarity index 52% rename from data/nde/enriched/entries/0261_unknown.yaml rename to data/nde/enriched/entries/0261_stichting_behoud_oorlogsherinneringen.yaml index 1d0b47b722..1cb491005c 100644 --- a/data/nde/enriched/entries/0261_unknown.yaml +++ b/data/nde/enriched/entries/0261_stichting_behoud_oorlogsherinneringen.yaml @@ -9,8 +9,7 @@ original_entry: - S entry_index: 261 processing_timestamp: '2025-11-27T15:17:56.956206+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id +enrichment_status: enriched google_maps_enrichment: place_id: ChIJub6F_Bc0xkcR0FUx_4IJNcE name: Stichting behoud oorlogsherinneringen @@ -83,8 +82,7 @@ google_maps_enrichment: author_uri: https://www.google.com/maps/contrib/108401008116803711752/reviews rating: 4 relative_time_description: 3 jaar geleden - text: Altijd goed om deze herinnering aan die tijd te bewaren en tentoon te zetten - . + text: Altijd goed om deze herinnering aan die tijd te bewaren en tentoon te zetten. publish_time: '2021-12-20T13:35:29.225717Z' photo_urls: - https://places.googleapis.com/v1/places/ChIJub6F_Bc0xkcR0FUx_4IJNcE/photos/AWn5SU5KlTINTbqNNAkyfBteOwC1jTXqJOrlB2fufxkX3Zok364bQFRnHkLjrJGNh0eMHpWJhJitNDC1qboJDvTLQKIs4bUn9tgTHPsWdnx0KMRbzdXxYPRTwOL-XBrYUcy2koQSIlLOOmvYWbqGDpVrQjLhDT8FXgpf_prN_tIxlXUjrwfA5ERhEa_Wgp3xuhrrTCB6xn63qmf_X9R-PD8PyUidMepQHTjD48I34QB266-Yc-j8DExoOK298LF4gofqyA9zFeuCglQfKY5iJ6cpKjr5XAGwJC8MwTzOFCJLU-sJHA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 @@ -102,5 +100,95 @@ google_maps_enrichment: icon_background_color: '#7B9EB0' utc_offset_minutes: 60 google_maps_status: SUCCESS -google_maps_search_query: Stichting Behoud Oorlogsherinneringen, Oude Telgterweg 10, - Ermelo, Netherlands +google_maps_search_query: Stichting Behoud Oorlogsherinneringen, Oude Telgterweg 10, Ermelo, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:45:00+00:00' + fetch_status: success + source_url: https://www.oorlogsherinneringen.nl/ + language: nl + organization_details: + official_name: Stichting Behoud Oorlogsherinneringen + abbreviation: SBO + legal_form: stichting + type: platform / oral history archive + location: Ermelo, Gelderland + network_membership: WO2.net + description: >- + Foundation dedicated to preserving World War II memories through oral history + interviews with survivors and witnesses. Maintains an extensive collection of + video interviews organized by Dutch province, making personal WWII experiences + accessible for education and remembrance. + mission: + primary_goal: Preserve personal memories and experiences of World War II + method: Video interviews with WWII survivors and witnesses + audience: General public, educators, researchers + collections: + oral_history: + type: video_interviews + total_count: 400+ + description: Filmed interviews with WWII survivors and witnesses + organization_method: By Dutch province + coverage: + - Drenthe + - Flevoland + - Friesland + - Gelderland + - Groningen + - Limburg + - Noord-Brabant + - Noord-Holland + - Overijssel + - Utrecht + - Zeeland + - Zuid-Holland + topics: + - Personal war experiences + - Resistance activities + - Jewish persecution and survival + - Liberation memories + - Post-war reconstruction + - Daily life during occupation + partnerships: + museums: + - type: museum_partnerships + description: Collaborations with WWII museums across the Netherlands + purpose: Making interview content available for exhibitions + education: + - type: educational_outreach + description: Providing materials for schools and educational programs + digital_presence: + website: https://www.oorlogsherinneringen.nl/ + online_access: Interviews accessible via website + interview_format: Video with transcripts + activities: + - type: oral_history_collection + description: Recording interviews with WWII survivors + status: Ongoing (while witnesses still available) + - type: preservation + description: Digitizing and preserving interview recordings + - type: access + description: Making interviews publicly accessible online + - type: education + description: Supporting WWII education in schools + contact: + address: Oude Telgterweg 10, 3851 LS Ermelo + phone: 06 32452998 + region: Gelderland + heritage_significance: + type: oral_history + focus: World War II personal memories and testimonies + coverage: National (all Dutch provinces) + time_period: 1940-1945 (WWII era) + urgency: Critical - recording last generation of direct witnesses + unique_aspects: + - Provincial organization of testimonies + - Video format preserves voice and expression + - Focus on personal experience rather than military history + - Collaborative approach with museums + institution_classification: + primary_type: S + type_label: Collecting Society / Oral History Organization + subtype: oral_history_platform + heritage_function: WWII oral history preservation and access + in_wo2net: true + scale: National diff --git a/data/nde/enriched/entries/0273_streekarchief_bommelerwaard.yaml b/data/nde/enriched/entries/0273_streekarchief_bommelerwaard.yaml new file mode 100644 index 0000000000..352d3e6a7d --- /dev/null +++ b/data/nde/enriched/entries/0273_streekarchief_bommelerwaard.yaml @@ -0,0 +1,140 @@ +original_entry: + organisatie: Streekarchief Bommelwaard + type_organisatie: archief + opmerkingen_inez: Bestaat niet meer. Per 1 januari 2014 aangesloten bij het Regionaal + Archief Rivierenland (RAR). + time: + - label: 20240101 + type: + - label: end + isil-code_na: NL-ZbmSAB + type: + - A +entry_index: 273 +processing_timestamp: '2025-11-27T15:18:20.917854+00:00' +enrichment_status: enriched +enrichment_type: historical_record +google_maps_enrichment: + place_id: ChIJBZbe4pnzxkcRXQTiwJ0skdE + name: Streekarchief Bommelerwaard + fetch_timestamp: '2025-11-28T09:51:22.658777+00:00' + api_status: OK + coordinates: + latitude: 51.803101299999994 + longitude: 5.253280999999999 + formatted_address: Van Heemstraweg 11A, 5301 PA Zaltbommel + short_address: Van Heemstraweg 11A, Zaltbommel + address_components: + - long_name: 11A + short_name: 11A + types: + - street_number + - long_name: Van Heemstraweg + short_name: Van Heemstraweg + types: + - route + - long_name: Zaltbommel + short_name: Zaltbommel + types: + - locality + - political + - long_name: Zaltbommel + short_name: Zaltbommel + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5301 PA + short_name: 5301 PA + types: + - postal_code + phone_local: 0418 541 105 + phone_international: +31 418 541 105 + google_place_types: + - point_of_interest + - establishment + primary_type: point_of_interest + business_status: CLOSED_PERMANENTLY + google_maps_url: https://maps.google.com/?cid=15100900081607509085&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=51.803101299999994,5.253280999999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Streekarchief Bommelwaard, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T15:15:00+00:00' + fetch_status: not_applicable + source_note: Organization dissolved - now part of Regionaal Archief Rivierenland + organization_details: + official_name: Streekarchief Bommelerwaard + type: archief (regional archive) + status: DEFUNCT + dissolution_date: '2014-01-01' + isil_code: NL-ZbmSAB + former_location: Van Heemstraweg 11A, 5301 PA Zaltbommel + description: >- + Former regional archive for the Bommelerwaard region in Gelderland. + The archive served the municipalities of Zaltbommel and Maasdriel. + Dissolved on January 1, 2014 when it was merged into the Regionaal + Archief Rivierenland (RAR). + dissolution_history: + end_date: '2014-01-01' + reason: Regional archive consolidation + successor_organization: Regionaal Archief Rivierenland (RAR) + successor_website: https://www.regionaalarchiefrivierenland.nl/ + merger_note: >- + The Streekarchief Bommelerwaard was one of several regional archives + in the Rivierenland area that merged to form a larger, more efficient + regional archive serving the entire Rivierenland region. + coverage_area: + region: Bommelerwaard + municipalities: + - Zaltbommel + - Maasdriel + province: Gelderland + access_information: + current_repository: Regionaal Archief Rivierenland + website: https://www.regionaalarchiefrivierenland.nl/ + locations: + - address: J.S. de Jongplein 3, 4001 WG Tiel + type: Main location (Tiel) + - address: Kerkstraat 1, 4153 BB Beesd + type: Study room (Beesd) + note: >- + All collections from the former Streekarchief Bommelerwaard are now + accessible through RAR. Contact RAR for research on Bommelerwaard + municipal records, civil registration, and regional history. + collections_transferred: + - Municipal archives of Zaltbommel + - Municipal archives of Maasdriel + - Civil registration records (Burgerlijke Stand) + - Notarial archives + - Court records + - Church archives from the region + - Private archives and collections + heritage_significance: + type: regional_archive + focus: Local government records and regional history of Bommelerwaard + coverage_area: Bommelerwaard region (between Maas and Waal rivers) + historical_note: >- + The Bommelerwaard is a historic region in Gelderland, located between + the Maas and Waal rivers. The area has a rich history dating back to + medieval times, with Zaltbommel being a fortified city. + institution_classification: + primary_type: A + type_label: Archive (defunct) + subtype: streekarchief + heritage_function: Regional archive (merged into RAR) + current_status: defunct + successor_organization: Regionaal Archief Rivierenland + successor_isil: Contact RAR for current ISIL diff --git a/data/nde/enriched/entries/0273_unknown.yaml b/data/nde/enriched/entries/0273_unknown.yaml deleted file mode 100644 index 1935293839..0000000000 --- a/data/nde/enriched/entries/0273_unknown.yaml +++ /dev/null @@ -1,73 +0,0 @@ -original_entry: - organisatie: Streekarchief Bommelwaard - type_organisatie: archief - opmerkingen_inez: Bestaat niet meer. Per 1 januari 2014 aangesloten bij het Regionaal - Archief Rivierenland (RAR). - time: - - label: 20240101 - type: - - label: end - isil-code_na: NL-ZbmSAB - type: - - A -entry_index: 273 -processing_timestamp: '2025-11-27T15:18:20.917854+00:00' -enrichment_status: skipped -skip_reason: no_wikidata_id -google_maps_enrichment: - place_id: ChIJBZbe4pnzxkcRXQTiwJ0skdE - name: Streekarchief Bommelerwaard - fetch_timestamp: '2025-11-28T09:51:22.658777+00:00' - api_status: OK - coordinates: - latitude: 51.803101299999994 - longitude: 5.253280999999999 - formatted_address: Van Heemstraweg 11A, 5301 PA Zaltbommel - short_address: Van Heemstraweg 11A, Zaltbommel - address_components: - - long_name: 11A - short_name: 11A - types: - - street_number - - long_name: Van Heemstraweg - short_name: Van Heemstraweg - types: - - route - - long_name: Zaltbommel - short_name: Zaltbommel - types: - - locality - - political - - long_name: Zaltbommel - short_name: Zaltbommel - types: - - administrative_area_level_2 - - political - - long_name: Gelderland - short_name: GE - types: - - administrative_area_level_1 - - political - - long_name: Nederland - short_name: NL - types: - - country - - political - - long_name: 5301 PA - short_name: 5301 PA - types: - - postal_code - phone_local: 0418 541 105 - phone_international: +31 418 541 105 - google_place_types: - - point_of_interest - - establishment - primary_type: point_of_interest - business_status: CLOSED_PERMANENTLY - google_maps_url: https://maps.google.com/?cid=15100900081607509085&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA - street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=51.803101299999994,5.253280999999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 - icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet - icon_background_color: '#7B9EB0' - utc_offset_minutes: 60 -google_maps_status: SUCCESS -google_maps_search_query: Streekarchief Bommelwaard, Netherlands diff --git a/data/nde/enriched/entries/0278_tempel_kerkmuseum.yaml b/data/nde/enriched/entries/0278_tempel_kerkmuseum.yaml new file mode 100644 index 0000000000..1474023a27 --- /dev/null +++ b/data/nde/enriched/entries/0278_tempel_kerkmuseum.yaml @@ -0,0 +1,186 @@ +original_entry: + plaatsnaam_bezoekadres: Elst + straat_en_huisnummer_bezoekadres: Grote Molenstraat 2 + organisatie: Protestantse gemeente te Elst + webadres_organisatie: https://tempelkerkmuseum.nl/ + type_organisatie: museum + samenwerkingsverband_platform: Collectie Gelderland + type: + - M +entry_index: 278 +processing_timestamp: '2025-11-27T15:18:29.515845+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJAQBQIyumx0cRHntYSbEaWcc + name: Grote Kerk⪠+ fetch_timestamp: '2025-11-28T09:51:25.731207+00:00' + api_status: OK + coordinates: + latitude: 51.9198376 + longitude: 5.8494331 + formatted_address: Grote Molenstraat 2, 6661 DJ Elst + short_address: Grote Molenstraat 2, Elst + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Grote Molenstraat + short_name: Grote Molenstraat + types: + - route + - long_name: Elst + short_name: Elst + types: + - locality + - political + - long_name: Overbetuwe + short_name: Overbetuwe + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6661 DJ + short_name: 6661 DJ + types: + - postal_code + website: https://pg-elst.nl/ + google_place_types: + - church + - place_of_worship + - point_of_interest + - establishment + primary_type: church + business_status: OPERATIONAL + rating: 4.9 + total_ratings: 7 + reviews: + - author_name: Dienie van Wijngaarden + author_uri: https://www.google.com/maps/contrib/107230612813473442375/reviews + rating: 5 + relative_time_description: 2 maanden geleden + text: Op korte termijn konden we toch een rondleiding krijgen van Ron. En wat + voor een! In de kerk, onder de kerk, rondom de kerk. Van de Romeinse tempels + via de middeleeuwse- naar de huidige kerk, tot de van oorsprong Lutherse preekstoel. + We hebben genoten van de kennis, verhalen en anekdotes. Zeer de moeite waard. + publish_time: '2025-09-02T09:35:43.058756360Z' + - author_name: rob giskes + author_uri: https://www.google.com/maps/contrib/111241425251559108621/reviews + rating: 5 + relative_time_description: 3 jaar geleden + text: Wij kregen van de aanwezige vrijwilliger spontaan een toelichting op de + tentoongestelde artefacten. + publish_time: '2022-08-07T15:33:03.790361Z' + - author_name: Harold + author_uri: https://www.google.com/maps/contrib/104061521992753358222/reviews + rating: 5 + relative_time_description: 4 jaar geleden + text: Zeer mooie kerk! + publish_time: '2021-03-31T20:34:36.863997Z' + - author_name: Tineke Mook + author_uri: https://www.google.com/maps/contrib/102458638736089825434/reviews + rating: 5 + relative_time_description: 3 maanden geleden + text: null + publish_time: '2025-08-14T09:13:33.161104058Z' + - author_name: Hermie + author_uri: https://www.google.com/maps/contrib/118261330956726185254/reviews + rating: 4 + relative_time_description: 7 maanden geleden + text: null + publish_time: '2025-04-09T17:26:01.788935Z' + photo_urls: + - https://places.googleapis.com/v1/places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU7lz80ZU5MX8QmMBgOJCVwEmZRHrZXxHSkfPjvTVzUUE7EN1Sv_-6s5EuykU-tE7rkqiY65j7h1hc1jo6WwYkkZEXIJL1_aDTg-hM4KR2lHQyb5B9E0-e3OIkWwOLmChsRkN5D7SdaG6ULnnwNf2WF56358ClixkwTFwiohc6xMeyvIG-joWNcyShv-hbXZPzjVV0_fwwCzTN9ug-kKPG9rQwy2lJpLhvNODfdw3T8A3rzFnLI1r2oTS8HxWx1ve5-VoeuwY1o4SlL0NH1arpb8liqMiQtck60DcDO6nEE_CPN7uVMHG1PVhBMQHBlql59ETj-I4DaUz-iFnpbM3gwOHzkJGp25COOv1pacfYZcW59t58evIsSCpJ8yAtiU_D_CYTmCLr8347cezBS9zDzXNQIkZfgIprvA1NoU7_CPMw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + - https://places.googleapis.com/v1/places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU6hdv3wX-7dw4XTuDJKL9DiFn5kZHOA4s4ymO95u0VBeDN2VOKPKKmwYqlLyTJJNLXUeK9L9Od6C1pGttKbPPh3yaAXOFh6niygqqyGqKaTyWTp6AhBn_l_gn0rhbAdjOUEwU5AF9oejgDsQNsQmfgzOltX2IlVLW8lXCk27I3eJF9PLDJLoNVyDLJ_0r0m-lEJHrpNEyGko2LhlesXC8CO2YxcVWbXzQZV3czbp1yUQ8TjKkeXqhSrTQfODufGnDC75uh9QIUF9VPheVepCKJSwULSMpqqeZhmUfvshQGcXjsX9E_r4sG3rQ84u7bqc80GUQuJ7fFOd5qjDJBqxPotVPMubuhcsfoR7d3kaKMEeHpEd0C4mAPhyf75yRv4pYAa-vzn9RfjZdanOS_jeDEftnQgFkT3dCWcz0irPz9Gag/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + - https://places.googleapis.com/v1/places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU5a5ulCQidlWmwNkKlFk7fvuI6eWWoMfxzSqBAboMobzmzBTlgbXYtBNsVz-5wmIRsYKOQFuOKQBeaB0gy3ENwlfoKOOp5A76a1AK58LguEG5oNKNLOksrAQKUl65bh8XUDiiEwdqOvLzMuyb7nNs6061GsqvY7ihaLm052D2QAHG3_HN_LPicJ-2G_SoonWX_xrWonzzUuv518g8kA7V90qKxHU4qKuym2iAtJEePovIIcdDsQMESwqZsqSYlhOHjIJOSvBAoOeBwYvLIzFYld2g5jUoi9BiVNHjxXX1dBqgGFuXlYdp4tyIZHv68_I2GuqwbPzlB_rX4smDDWT_d7YJ0x1GJdlbHCEFJExUDzsxmaB9KTq6SXQ6Kec8K5m7GvQQlBudOkUNtnDT01JroNm5RtGHsmZTs6HQ9ltIh6X8DV/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + - https://places.googleapis.com/v1/places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU7qw2gTo5Qo-6rkKGMEAo04Mib9K3BvvwVNZX0Ed5LvhIAgjg5T2BSqEuvC2dels7j5nVi6MxkrBaRgPyi0WAEDSDOeqLt8bD6Zs6r4D0foXd2ryJf8_PCwIt4T4Sg6DaxUkCMjMELJ9gohPhpE9b9MDYd3acdFgCoYIqCf3IpkO7B4yMGcSxdwCUSeGJagCRUR7_NF6-wHSLq8N15OE2Ylu2-giUq9Vfn152UiqsrGKhXqv8c-C7npDv2kDQLcXcuCcHKbjAeh3LAQ76Ch2o3VrWC_tqGMnGOfHxQ1FJQSmHhiDokNSmRF1xQ7UWPqmMQo8m4mWEcLjIwcCwZONlc3D2aCtS_-9668yEDqbjTpHf0deBSlhdH39VefTpJ-UnKWKeviafFNR102hwDuOWNHXqW3x3A2WIMKv0OLEOU_kkAq/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + - https://places.googleapis.com/v1/places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU6vC8fkqeq0fpy8H4CYeSkdZ1FkcpnFWn9KU9jBhWJsqpDNx53Eo8DRiyN5tvHBWGZD2iZz1cI2LGS2v8ehFqzxidoG_gZuE33V6DrPm63Df5xVgL3brkqUWnAQI0myfPm0sa8dbHAh8-fTEGANSTmUROm0WckW1oB0mndK9Q8QsdHl7xajZTOZFWL13pqsOCwVrS9L58NBv5l-7mTOIgG4FOzeSjwW5-etLZwf_RHWz-k4V7Wl6PBT7gF-Y-voFu1c4M1V1zSz072vFYXA-DhlqVjT0qN4nA7gyLtYC22QDn0EsLba0_zvRvZUnoDFuDN9EfiNs13aJSYI3HAUwKYZ1sPwvVtFYOVaJDDjB27-Wop_5sG6iXDklmZJZ6FoQ8-iF4KMOeQjuq-jjdJfrWVGC_o40S6zsHi5b_SdH3A0bRx01daSVEYwWHQc6A/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + photos_metadata: + - name: places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU7lz80ZU5MX8QmMBgOJCVwEmZRHrZXxHSkfPjvTVzUUE7EN1Sv_-6s5EuykU-tE7rkqiY65j7h1hc1jo6WwYkkZEXIJL1_aDTg-hM4KR2lHQyb5B9E0-e3OIkWwOLmChsRkN5D7SdaG6ULnnwNf2WF56358ClixkwTFwiohc6xMeyvIG-joWNcyShv-hbXZPzjVV0_fwwCzTN9ug-kKPG9rQwy2lJpLhvNODfdw3T8A3rzFnLI1r2oTS8HxWx1ve5-VoeuwY1o4SlL0NH1arpb8liqMiQtck60DcDO6nEE_CPN7uVMHG1PVhBMQHBlql59ETj-I4DaUz-iFnpbM3gwOHzkJGp25COOv1pacfYZcW59t58evIsSCpJ8yAtiU_D_CYTmCLr8347cezBS9zDzXNQIkZfgIprvA1NoU7_CPMw + height: 4032 + width: 3024 + author_attributions: + - displayName: Bharanidhar Reddy + uri: https://maps.google.com/maps/contrib/102034641662868507925 + photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXrUu7KSpcxBsQmocUrokLWI27Na1ps-n7aWxiraZG7fuFAY2ivjQ=s100-p-k-no-mo + - name: places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU6hdv3wX-7dw4XTuDJKL9DiFn5kZHOA4s4ymO95u0VBeDN2VOKPKKmwYqlLyTJJNLXUeK9L9Od6C1pGttKbPPh3yaAXOFh6niygqqyGqKaTyWTp6AhBn_l_gn0rhbAdjOUEwU5AF9oejgDsQNsQmfgzOltX2IlVLW8lXCk27I3eJF9PLDJLoNVyDLJ_0r0m-lEJHrpNEyGko2LhlesXC8CO2YxcVWbXzQZV3czbp1yUQ8TjKkeXqhSrTQfODufGnDC75uh9QIUF9VPheVepCKJSwULSMpqqeZhmUfvshQGcXjsX9E_r4sG3rQ84u7bqc80GUQuJ7fFOd5qjDJBqxPotVPMubuhcsfoR7d3kaKMEeHpEd0C4mAPhyf75yRv4pYAa-vzn9RfjZdanOS_jeDEftnQgFkT3dCWcz0irPz9Gag + height: 3024 + width: 4032 + author_attributions: + - displayName: Bharanidhar Reddy + uri: https://maps.google.com/maps/contrib/102034641662868507925 + photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXrUu7KSpcxBsQmocUrokLWI27Na1ps-n7aWxiraZG7fuFAY2ivjQ=s100-p-k-no-mo + - name: places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU5a5ulCQidlWmwNkKlFk7fvuI6eWWoMfxzSqBAboMobzmzBTlgbXYtBNsVz-5wmIRsYKOQFuOKQBeaB0gy3ENwlfoKOOp5A76a1AK58LguEG5oNKNLOksrAQKUl65bh8XUDiiEwdqOvLzMuyb7nNs6061GsqvY7ihaLm052D2QAHG3_HN_LPicJ-2G_SoonWX_xrWonzzUuv518g8kA7V90qKxHU4qKuym2iAtJEePovIIcdDsQMESwqZsqSYlhOHjIJOSvBAoOeBwYvLIzFYld2g5jUoi9BiVNHjxXX1dBqgGFuXlYdp4tyIZHv68_I2GuqwbPzlB_rX4smDDWT_d7YJ0x1GJdlbHCEFJExUDzsxmaB9KTq6SXQ6Kec8K5m7GvQQlBudOkUNtnDT01JroNm5RtGHsmZTs6HQ9ltIh6X8DV + height: 2250 + width: 4000 + author_attributions: + - displayName: jan de jong + uri: https://maps.google.com/maps/contrib/104789952571969831423 + photoUri: https://lh3.googleusercontent.com/a-/ALV-UjWSVqFMUpKVTS9_L1_s7O_tN98ezAtE25Hr5BQcKye3ek201FBxEA=s100-p-k-no-mo + - name: places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU7qw2gTo5Qo-6rkKGMEAo04Mib9K3BvvwVNZX0Ed5LvhIAgjg5T2BSqEuvC2dels7j5nVi6MxkrBaRgPyi0WAEDSDOeqLt8bD6Zs6r4D0foXd2ryJf8_PCwIt4T4Sg6DaxUkCMjMELJ9gohPhpE9b9MDYd3acdFgCoYIqCf3IpkO7B4yMGcSxdwCUSeGJagCRUR7_NF6-wHSLq8N15OE2Ylu2-giUq9Vfn152UiqsrGKhXqv8c-C7npDv2kDQLcXcuCcHKbjAeh3LAQ76Ch2o3VrWC_tqGMnGOfHxQ1FJQSmHhiDokNSmRF1xQ7UWPqmMQo8m4mWEcLjIwcCwZONlc3D2aCtS_-9668yEDqbjTpHf0deBSlhdH39VefTpJ-UnKWKeviafFNR102hwDuOWNHXqW3x3A2WIMKv0OLEOU_kkAq + height: 2147 + width: 3818 + author_attributions: + - displayName: jan de jong + uri: https://maps.google.com/maps/contrib/104789952571969831423 + photoUri: https://lh3.googleusercontent.com/a-/ALV-UjWSVqFMUpKVTS9_L1_s7O_tN98ezAtE25Hr5BQcKye3ek201FBxEA=s100-p-k-no-mo + - name: places/ChIJAQBQIyumx0cRHntYSbEaWcc/photos/AWn5SU6vC8fkqeq0fpy8H4CYeSkdZ1FkcpnFWn9KU9jBhWJsqpDNx53Eo8DRiyN5tvHBWGZD2iZz1cI2LGS2v8ehFqzxidoG_gZuE33V6DrPm63Df5xVgL3brkqUWnAQI0myfPm0sa8dbHAh8-fTEGANSTmUROm0WckW1oB0mndK9Q8QsdHl7xajZTOZFWL13pqsOCwVrS9L58NBv5l-7mTOIgG4FOzeSjwW5-etLZwf_RHWz-k4V7Wl6PBT7gF-Y-voFu1c4M1V1zSz072vFYXA-DhlqVjT0qN4nA7gyLtYC22QDn0EsLba0_zvRvZUnoDFuDN9EfiNs13aJSYI3HAUwKYZ1sPwvVtFYOVaJDDjB27-Wop_5sG6iXDklmZJZ6FoQ8-iF4KMOeQjuq-jjdJfrWVGC_o40S6zsHi5b_SdH3A0bRx01daSVEYwWHQc6A + height: 4000 + width: 3000 + author_attributions: + - displayName: Rodrish Winckler + uri: https://maps.google.com/maps/contrib/114377763674792557494 + photoUri: https://lh3.googleusercontent.com/a-/ALV-UjX3ivn5bCz4sLzOI3R0iuWwCAtTLxfi5VQwTZnX6zQk0DyXPHjKtQ=s100-p-k-no-mo + google_maps_url: https://maps.google.com/?cid=14364541835216976670&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=51.9198376,5.8494331&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/worship_christian_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Protestantse gemeente te Elst, Grote Molenstraat 2, Elst, + Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T10:30:00+00:00' + fetch_status: SUCCESS + source_url: https://tempelkerkmuseum.nl/ + organization_details: + name: Tempel-Kerkmuseum + description: >- + Unique museum located in the Grote Kerk (Protestant Church) of Elst, built directly + on top of ancient Roman temples. The site is part of the UNESCO World Heritage + Limes (Roman frontier). Features archaeological remains of Roman-Batavian temples + beneath the medieval church, with guided tours covering the Roman temples, medieval + church, and current Protestant church. The museum houses Roman artifacts discovered + at the site. + heritage_significance: >- + UNESCO World Heritage Site (part of the Lower Germanic Limes). The church was built + on the foundations of two Roman-Batavian temples dating from the 1st-4th century AD. + Archaeological excavations revealed unique temple remains under the current church. + collections: + - Roman artifacts from temple excavations + - Archaeological finds from the Limes frontier + - Church historical objects + - Originally Lutheran pulpit + activities: + - Guided tours (church interior, underground, and surroundings) + - Roman temple archaeology tours + - Medieval to modern church history tours + visitor_reviews: + - "Tours cover the Roman temples, medieval church, and current church including the Lutheran pulpit" + - "Excellent volunteer guides with deep knowledge and anecdotes" + - "Very beautiful church with fascinating archaeological remains" + location: + municipality: Overbetuwe + province: Gelderland + region: Betuwe + network_affiliations: + - Collectie Gelderland diff --git a/data/nde/enriched/entries/0282_vereniging_historisch_ermeloo.yaml b/data/nde/enriched/entries/0282_vereniging_historisch_ermeloo.yaml new file mode 100644 index 0000000000..a6eeb78f53 --- /dev/null +++ b/data/nde/enriched/entries/0282_vereniging_historisch_ermeloo.yaml @@ -0,0 +1,197 @@ +original_entry: + plaatsnaam_bezoekadres: Ermelo + straat_en_huisnummer_bezoekadres: Hamburgerweg 189 + organisatie: Vereniging Historisch Ermeloo + webadres_organisatie: https://vh-ermeloo.nl/ + type_organisatie: historische vereniging + systeem: ZCBS + type: + - S +entry_index: 282 +processing_timestamp: '2025-11-27T15:18:36.027953+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJm0sDStw1xkcRm6NAnqeO6hU + name: Vereniging Historisch Ermeloo + fetch_timestamp: '2025-11-28T09:51:28.186580+00:00' + api_status: OK + coordinates: + latitude: 52.296585099999994 + longitude: 5.613346099999999 + formatted_address: Hamburgerweg 189, 3851 EL Ermelo + short_address: Hamburgerweg 189, Ermelo + address_components: + - long_name: '189' + short_name: '189' + types: + - street_number + - long_name: Hamburgerweg + short_name: Hamburgerweg + types: + - route + - long_name: Ermelo + short_name: Ermelo + types: + - locality + - political + - long_name: Ermelo + short_name: Ermelo + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3851 EL + short_name: 3851 EL + types: + - postal_code + phone_local: 06 30520423 + phone_international: +31 6 30520423 + website: http://www.vh-ermeloo.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + open_now: false + periods: + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 11 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 11 + minute: 30 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: Gesloten' + - 'woensdag: 09:30â11:30' + - 'donderdag: 09:30â11:30' + - 'vrijdag: Gesloten' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 16 + reviews: + - author_name: paul onderwater + author_uri: https://www.google.com/maps/contrib/112677577362902617555/reviews + rating: 5 + relative_time_description: 2 jaar geleden + text: 'Een fantastische website is dit geworden met o.a. heel veel historische + informatie en afbeeldingen. + + Prachtig en overzichtelijk gepresenteerd en een enorme bron van gegevens voor + de websitebezoeker. Wat een werk hebben jullie daar aan gehad!! + + Chapeau, mede namens heel Oud Zoeterwoude.' + publish_time: '2023-06-05T10:02:39.637366Z' + - author_name: Egbert Vonkeman + author_uri: https://www.google.com/maps/contrib/102776798215422725641/reviews + rating: 4 + relative_time_description: 3 jaar geleden + text: De Open Dag van De Fabriek valt samen met de Open Monumentendag zaterdag + 10 september 2022 + publish_time: '2022-04-22T06:45:52.581315Z' + - author_name: Jos Van Den Brink + author_uri: https://www.google.com/maps/contrib/101982039446631114282/reviews + rating: 5 + relative_time_description: 5 jaar geleden + text: Oudejaarsbijeenkomst werkgroep Archeologie was heel gezellig met bijdrage + van regioarcheoloog over opgravingen Rimpelerveld Putten. + publish_time: '2019-12-12T19:30:03.149153Z' + - author_name: w de jong + author_uri: https://www.google.com/maps/contrib/104644358249927694796/reviews + rating: 5 + relative_time_description: 3 jaar geleden + text: Ben met restaureren bezig van een dakpannen machine .van gietijzer moet + voorzichtig gebeuren. + publish_time: '2022-11-20T22:18:38.194640Z' + - author_name: Jack Dikker + author_uri: https://www.google.com/maps/contrib/114653983869086513189/reviews + rating: 5 + relative_time_description: 2 jaar geleden + text: Met name mevrouw Schrievers heeft me een enorme dienst bewezen... Hulde + ! + publish_time: '2023-02-18T12:52:00.319867Z' + photo_urls: + - https://places.googleapis.com/v1/places/ChIJm0sDStw1xkcRm6NAnqeO6hU/photos/AWn5SU5kLDphyIjFyf089yFzYyx_M6f4zgPosg2k0EWM4N9onrEJrVE4pyvANiuIeMU6I4VFlU1bYFX3doFVagvmbV_2GI8UrWF0OHri8puA31_bL8JLJMUAFDdveSQ-2ASFIABDrKS6tIYTvyMR7sPtmNbtKx5VYfs8uDKHU1YS7Oc79dvml0BkDWEzCqLFCKy2u8WGJHFjIRJ720BiRohBgnNPQd9UGsuC4fdb97dgqoagIJFLFe2U9h0gfPcpET_1g6xDpu1vqjG6_32AaSuUYtZLBXRWB7lqhmy3dyg26MHjfcpO3Y43q_FO5K44e_PDkRkiHC6QtC8kKCakhfVP29XF2KMwhaTb40AW-5jPs-92k1JF-iQmQFVqIB-UIt_65WpVYDa0ooMcXnrnJa8ArO8B5F629-Hj4DO2iNPj12rAWw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + - https://places.googleapis.com/v1/places/ChIJm0sDStw1xkcRm6NAnqeO6hU/photos/AWn5SU4vFW07JcYx3aOt5rNaZUxRUXfWTaRKTH0IgjJpKoZbdSSf3QvWQWTTvBushuR_SI8PLxaDzWJM0uUeuU59t3gXVR9D3JSQ8JJV-49Wtz-DkfqDEu6fO-dL6NtSjx0diQobxBEDIDrbThfekoRGlhus9ZcEIOv_yLYsmnmltzSFiTRv9p85hkRCb8ExZhqy5wEhLqTQ73vR5vo6qs_9ZtAH-2FmYcKJro3VQWvKDvppaK99a14qkEVXp82_iBHkb_uWRYNizxDTyXANPqkSTknlc38fVoQBJ94L3LdlArBAIw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + photos_metadata: + - name: places/ChIJm0sDStw1xkcRm6NAnqeO6hU/photos/AWn5SU5kLDphyIjFyf089yFzYyx_M6f4zgPosg2k0EWM4N9onrEJrVE4pyvANiuIeMU6I4VFlU1bYFX3doFVagvmbV_2GI8UrWF0OHri8puA31_bL8JLJMUAFDdveSQ-2ASFIABDrKS6tIYTvyMR7sPtmNbtKx5VYfs8uDKHU1YS7Oc79dvml0BkDWEzCqLFCKy2u8WGJHFjIRJ720BiRohBgnNPQd9UGsuC4fdb97dgqoagIJFLFe2U9h0gfPcpET_1g6xDpu1vqjG6_32AaSuUYtZLBXRWB7lqhmy3dyg26MHjfcpO3Y43q_FO5K44e_PDkRkiHC6QtC8kKCakhfVP29XF2KMwhaTb40AW-5jPs-92k1JF-iQmQFVqIB-UIt_65WpVYDa0ooMcXnrnJa8ArO8B5F629-Hj4DO2iNPj12rAWw + height: 3594 + width: 4789 + author_attributions: + - displayName: Egbert Vonkeman + uri: https://maps.google.com/maps/contrib/102776798215422725641 + photoUri: https://lh3.googleusercontent.com/a-/ALV-UjXRAlXgwnQQQvWkR7L4MIRtLS4tn8iz88bCQHL9yfu5LUECGqWPRw=s100-p-k-no-mo + - name: places/ChIJm0sDStw1xkcRm6NAnqeO6hU/photos/AWn5SU4vFW07JcYx3aOt5rNaZUxRUXfWTaRKTH0IgjJpKoZbdSSf3QvWQWTTvBushuR_SI8PLxaDzWJM0uUeuU59t3gXVR9D3JSQ8JJV-49Wtz-DkfqDEu6fO-dL6NtSjx0diQobxBEDIDrbThfekoRGlhus9ZcEIOv_yLYsmnmltzSFiTRv9p85hkRCb8ExZhqy5wEhLqTQ73vR5vo6qs_9ZtAH-2FmYcKJro3VQWvKDvppaK99a14qkEVXp82_iBHkb_uWRYNizxDTyXANPqkSTknlc38fVoQBJ94L3LdlArBAIw + height: 747 + width: 1196 + author_attributions: + - displayName: Vereniging Historisch Ermeloo + uri: https://maps.google.com/maps/contrib/107063011252856386232 + photoUri: https://lh3.googleusercontent.com/a/ACg8ocI_L1V6-aSgKrhe0iXNxi06nhYopWfyVc-oSuHGXFAIBHyJpw=s100-p-k-no-mo + google_maps_url: https://maps.google.com/?cid=1579231469912499099&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.296585099999994,5.613346099999999&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Vereniging Historisch Ermeloo, Hamburgerweg 189, Ermelo, + Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T10:30:00+00:00' + fetch_status: SUCCESS + source_url: https://vh-ermeloo.nl/ + organization_details: + name: Vereniging Historisch Ermeloo + short_name: VHE + founded: 1978 + description: >- + Historical society dedicated to preserving and documenting the history of Ermelo. + Founded in 1978, the organization operates from "De Fabriek" building on the + Hamburgerweg. Known for its comprehensive website with extensive historical + information and images about Ermelo's history. + location_name: De Fabriek + activities: + - Research and documentation of Ermelo history + - Maintaining historical archives and collections + - Publishing historical articles and information + - Open days during Open Monumentendag + - Archaeological workgroup activities + - Historical machine restoration projects + workgroups: + - Archaeology workgroup (collaborates with regional archaeologist) + - Restoration workgroup (including historical machinery) + opening_hours: + wednesday: '09:30-11:30' + thursday: '09:30-11:30' + contact: + phone: '+31 6 30520423' + collection_management_system: ZCBS + location: + municipality: Ermelo + province: Gelderland + region: Veluwe + visitor_highlights: + - Extensive website with historical information and images + - Open days at "De Fabriek" + - Archaeological research activities + - Historical machine restoration (including cast iron tile machine) diff --git a/data/nde/enriched/entries/0283_vereniging_oudheidkunde_lichtenvoorde.yaml b/data/nde/enriched/entries/0283_vereniging_oudheidkunde_lichtenvoorde.yaml new file mode 100644 index 0000000000..808712ed28 --- /dev/null +++ b/data/nde/enriched/entries/0283_vereniging_oudheidkunde_lichtenvoorde.yaml @@ -0,0 +1,105 @@ +original_entry: + plaatsnaam_bezoekadres: Lichtenvoorde + straat_en_huisnummer_bezoekadres: Saturnus 5 + organisatie: Vereniging voor Oudheidkunde te Lichtenvoorde. + webadres_organisatie: https://lichtenvoorde.erfgoedcms.nl/ + type_organisatie: historische vereniging + systeem: ZCBS + type: + - S +entry_index: 283 +processing_timestamp: '2025-11-27T15:18:36.029669+00:00' +enrichment_status: enriched +google_maps_enrichment: + place_id: ChIJkRZ6rAR4uEcRVDjD_106cOQ + name: Oudheidkundige Vereniging Zuwent + fetch_timestamp: '2025-11-28T09:51:28.801723+00:00' + api_status: OK + coordinates: + latitude: 52.0052555 + longitude: 6.5217022 + formatted_address: De Haare 32, 7136 MK Zieuwent + short_address: De Haare 32, Zieuwent + address_components: + - long_name: '32' + short_name: '32' + types: + - street_number + - long_name: De Haare + short_name: De Haare + types: + - route + - long_name: Zieuwent + short_name: Zieuwent + types: + - locality + - political + - long_name: Oost Gelre + short_name: Oost Gelre + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7136 MK + short_name: 7136 MK + types: + - postal_code + phone_local: 0544 351 970 + phone_international: +31 544 351 970 + website: http://www.zuwent.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + google_maps_url: https://maps.google.com/?cid=16460720813436516436&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA + street_view_url: https://maps.googleapis.com/maps/api/streetview?size=600x400&location=52.0052555,6.5217022&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0 + icon_mask_uri: https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet + icon_background_color: '#7B9EB0' + utc_offset_minutes: 60 +google_maps_status: SUCCESS +google_maps_search_query: Vereniging voor Oudheidkunde te Lichtenvoorde., Saturnus + 5, Lichtenvoorde, Netherlands +google_maps_note: >- + Note: Google Maps returned a different organization (Oudheidkundige Vereniging Zuwent + in Zieuwent) instead of the Vereniging voor Oudheidkunde te Lichtenvoorde. These may + be related organizations in the same region (Oost Gelre municipality) but are distinct. +website_enrichment: + fetch_timestamp: '2025-11-28T10:30:00+00:00' + fetch_status: EMPTY_RESPONSE + source_url: https://lichtenvoorde.erfgoedcms.nl/ + organization_details: + name: Vereniging voor Oudheidkunde te Lichtenvoorde + description: >- + Historical society for the town of Lichtenvoorde. Uses ErfgoedCMS for collection + management, a modern content management system specifically designed for local + heritage organizations including local museums, heritage rooms, and historical + societies. ErfgoedCMS integrates with the NDE Termennetwerk (Network Digital + Heritage terminology network). + collection_management_system: ErfgoedCMS (via ZCBS interface) + digital_platform: + name: ErfgoedCMS + platform_url: https://lichtenvoorde.erfgoedcms.nl/ + description: >- + ErfgoedCMS is a SaaS content management system for local heritage organizations. + Features include NDE Termennetwerk integration, co-creation modules for public + contributions, genealogy integration via TNG, and historical map visualization. + features: + - Collection management + - Public website and discovery + - NDE Termennetwerk integration + - Co-creation/crowdsourcing + - QR code generation for walking tours + location: + municipality: Oost Gelre + province: Gelderland + region: Achterhoek + town: Lichtenvoorde diff --git a/data/nde/enriched/entries/0335_unknown.yaml b/data/nde/enriched/entries/0335_groninger_museum.yaml similarity index 100% rename from data/nde/enriched/entries/0335_unknown.yaml rename to data/nde/enriched/entries/0335_groninger_museum.yaml diff --git a/data/nde/enriched/entries/0453_Q59962312.yaml b/data/nde/enriched/entries/0453_Q59962312.yaml index 531a82eadd..63cc91c646 100644 --- a/data/nde/enriched/entries/0453_Q59962312.yaml +++ b/data/nde/enriched/entries/0453_Q59962312.yaml @@ -5,6 +5,7 @@ original_entry: wikidata_id: Q59962312 type: - L + isil_code_kb: NL-0801440000 entry_index: 453 processing_timestamp: '2025-11-27T15:23:37.487163+00:00' wikidata_enrichment: @@ -832,3 +833,17 @@ google_maps_enrichment: utc_offset_minutes: 60 google_maps_status: SUCCESS google_maps_search_query: Bibliotheek Midden-Brabant, Tilburg, Netherlands +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_name_matching + isil_code: NL-0801440000 + name: Bibliotheek Midden-Brabant + city: Tilburg + registry: KB Netherlands Library Network + country: Netherlands +kb_enrichment_added: true +kb_enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' diff --git a/data/nde/enriched/entries/0951_Q2489765.yaml b/data/nde/enriched/entries/0951_Q2489765.yaml index 029eff2438..ca4322cb8c 100644 --- a/data/nde/enriched/entries/0951_Q2489765.yaml +++ b/data/nde/enriched/entries/0951_Q2489765.yaml @@ -6,6 +6,7 @@ original_entry: type: - L - O + isil_code_kb: NL-0830940000 entry_index: 951 processing_timestamp: '2025-11-27T16:42:10.738126+00:00' wikidata_enrichment: @@ -481,3 +482,17 @@ google_maps_enrichment: utc_offset_minutes: 60 google_maps_status: SUCCESS google_maps_search_query: Stadkamer, Zwolle, Netherlands +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_name_matching + isil_code: NL-0830940000 + name: Stadkamer + city: Zwolle + registry: KB Netherlands Library Network + country: Netherlands +kb_enrichment_added: true +kb_enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' diff --git a/data/nde/enriched/entries/1019_Q59962322.yaml b/data/nde/enriched/entries/1019_Q59962322.yaml index e4bc484ec2..7ae09a9147 100644 --- a/data/nde/enriched/entries/1019_Q59962322.yaml +++ b/data/nde/enriched/entries/1019_Q59962322.yaml @@ -5,6 +5,7 @@ original_entry: wikidata_id: Q59962322 type: - L + isil_code_kb: NL-0800970000 entry_index: 1019 processing_timestamp: '2025-11-27T16:43:55.465626+00:00' wikidata_enrichment: @@ -750,3 +751,17 @@ google_maps_enrichment: utc_offset_minutes: 60 google_maps_status: SUCCESS google_maps_search_query: Bibliotheek Utrecht, Utrecht, Netherlands +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_name_matching + isil_code: NL-0800970000 + name: Bibliotheek Utrecht + city: Utrecht + registry: KB Netherlands Library Network + country: Netherlands +kb_enrichment_added: true +kb_enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' diff --git a/data/nde/enriched/entries/1353_kb_isil.yaml b/data/nde/enriched/entries/1353_kb_isil.yaml new file mode 100644 index 0000000000..b8c022c903 --- /dev/null +++ b/data/nde/enriched/entries/1353_kb_isil.yaml @@ -0,0 +1,232 @@ +original_entry: + plaatsnaam_bezoekadres: Den Haag + organisatie: KB, nationale bibliotheek + type_organisatie: bibliotheek + isil_code_kb: NL-0100030000 + type: + - L + opmerkingen: KB, Nationale Bibliotheek +entry_index: 1353 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0100030000 + name: KB, nationale bibliotheek + city: Den Haag + registry: KB Netherlands Library Network + notes: KB, Nationale Bibliotheek + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q1526131 + wikidata_label: KB nationale bibliotheek van Nederland + wikidata_description: nationale bibliotheek van Nederland + fetch_timestamp: '2025-11-28T12:22:38.584156+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.081666666 + longitude: 4.3275 + wikidata_inception: '1798-11-08' + wikidata_identifiers: + VIAF: '102145970121932251120' + Website: https://www.kb.nl +google_maps_enrichment: + place_id: ChIJbWlcthC3xUcRO0coXgjAdSE + name: Koninklijke Bibliotheek + fetch_timestamp: '2025-11-28T12:24:27.884026+00:00' + api_status: OK + coordinates: + latitude: 52.080998799999996 + longitude: 4.3279920999999995 + formatted_address: Prins Willem-Alexanderhof 5, 2595 BE Den Haag + short_address: Prins Willem-Alexanderhof 5, Den Haag + address_components: + - long_name: '5' + short_name: '5' + types: + - street_number + - long_name: Prins Willem-Alexanderhof + short_name: Prins Willem-Alexanderhof + types: + - route + - long_name: Haagse Hout + short_name: Haagse Hout + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - locality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2595 BE + short_name: 2595 BE + types: + - postal_code + phone_local: 070 314 0911 + phone_international: +31 70 314 0911 + website: https://www.kb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 87 + google_maps_url: https://maps.google.com/?cid=2411044317698737979&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: KB, nationale bibliotheek, Den Haag, Netherlands +website_enrichment: + extraction_timestamp: '2025-11-28T14:30:00+00:00' + extraction_method: exa_web_search + confidence_score: 0.95 + source_urls: + - https://www.kb.nl/en/about-us/our-mission + - https://www.kb.nl/en/about-us + - https://www.kb.nl/en/news/kb-publishes-its-2024-2030-collection-strategy + description: > + The KB is the National Library of the Netherlands. Since its foundation in 1798, + we have developed into a broad, versatile organisation that makes the National + Library collection visible, usable and sustainable for all Dutch people. We bring + research, reading, discovery and lifelong learning within reach of everyone in the + Netherlands. At home and in the library, online and offline. + mission_statement: > + A smarter, more skilled and more creative Netherlands. The KB, the national library + of the Netherlands, has been a source of inspiration and development for centuries. + We care for the written word, especially Dutch publications, and enable everyone to + read, learn and do research. + founding_year: '1798' + history_summary: > + Founded in 1798, the KB has been collecting publications written in or about the + Netherlands - from mediaeval manuscripts to newspapers, and from Donald Duck + magazine to historical and present-day novels. + collection_types: + - books + - newspapers + - magazines + - manuscripts + - digital_born + - websites + - photographs + collection_scope: national + collection_extent: > + Over 120 kilometres of written heritage in physical storage. The e-Depot contains + some 40 million digital newspapers, books, magazines, e-books and websites. + digitization_status: PARTIAL + digital_platforms: + - name: Delpher + url: https://www.delpher.nl + type: DISCOVERY_PORTAL + - name: DBNL (Digital Library for Dutch Literature) + url: https://www.dbnl.org + type: DISCOVERY_PORTAL + - name: Online Library + url: https://www.onlinebibliotheek.nl + type: DISCOVERY_PORTAL + metadata_standards: + - Dublin Core + - MARC21 + services: + - Reading room + - Research support + - Digital access + - Exhibitions + - Special collections reading room + accessibility_info: Wheelchair friendly + social_media: + facebook: https://www.facebook.com/KB.nationalebibliotheek/ + instagram: https://www.instagram.com/kbnationalebibliotheek/ + twitter: https://www.twitter.com/kb_nederland + linkedin: https://www.linkedin.com/company/164625 + guiding_principles: + - Value to society is central + - Digital at the forefront + - Thinking in networks + core_values: + - open + - unifying + - innovative + - reliable + parent_organization: null diff --git a/data/nde/enriched/entries/1354_kb_isil.yaml b/data/nde/enriched/entries/1354_kb_isil.yaml new file mode 100644 index 0000000000..ee3030ab65 --- /dev/null +++ b/data/nde/enriched/entries/1354_kb_isil.yaml @@ -0,0 +1,230 @@ +original_entry: + plaatsnaam_bezoekadres: Amsterdam + organisatie: OBA + type_organisatie: bibliotheek + isil_code_kb: NL-0800070000 + type: + - L +entry_index: 1354 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800070000 + name: OBA + city: Amsterdam + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q50413436 + wikidata_label: Oosterdokskade 143 + wikidata_description: hoofdgebouw van de bibliotheek in Amsterdam, Nederland + fetch_timestamp: '2025-11-28T12:22:38.586037+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.37616 + longitude: 4.9082 + wikidata_inception: '2007-01-01' + wikidata_identifiers: + Website: https://www.oba.nl/vestigingen/centrale-oba.html +google_maps_enrichment: + place_id: ChIJT0cNwNcJxkcRlLTs5pP2l2s + name: OBA Oosterdok + fetch_timestamp: '2025-11-28T12:24:28.532025+00:00' + api_status: OK + coordinates: + latitude: 52.375852599999995 + longitude: 4.9083853 + formatted_address: Oosterdokskade 143, 1011 DL Amsterdam + short_address: Oosterdokskade 143, Amsterdam + address_components: + - long_name: '143' + short_name: '143' + types: + - street_number + - long_name: Oosterdokskade + short_name: Oosterdokskade + types: + - route + - long_name: Amsterdam-Centrum + short_name: Amsterdam-Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Amsterdam + short_name: Amsterdam + types: + - locality + - political + - long_name: Amsterdam + short_name: Amsterdam + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1011 DL + short_name: 1011 DL + types: + - postal_code + phone_local: 020 523 0900 + phone_international: +31 20 523 0900 + website: http://www.oba.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 20 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 22 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 22 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 22 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 22 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 22 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 20 + minute: 0 + weekday_text: + - 'maandag: 08:00â22:00' + - 'dinsdag: 08:00â22:00' + - 'woensdag: 08:00â22:00' + - 'donderdag: 08:00â22:00' + - 'vrijdag: 08:00â22:00' + - 'zaterdag: 10:00â20:00' + - 'zondag: 10:00â20:00' + rating: 4.5 + total_ratings: 1725 + google_maps_url: https://maps.google.com/?cid=7752936398636496020&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek OBA, Amsterdam, Netherlands +website_enrichment: + extraction_timestamp: '2025-11-28T14:35:00+00:00' + extraction_method: exa_web_search + confidence_score: 0.95 + source_urls: + - https://oba.nl/nl/english + - https://www.iamsterdam.com/en/whats-on/calendar/attractions-and-sights/attractions/amsterdam-public-library-oba + - https://en.wikipedia.org/wiki/Openbare_Bibliotheek_Amsterdam + - https://www.ifla.org/files/assets/metropolitan-libraries/conferences/metlib-2013/metlib-2013_van-velzen_openbare-bibliotheek-amsterdam.pdf + description: > + The OBA (Openbare Bibliotheek Amsterdam) is the largest public library in the + Netherlands. The Central Branch is located on Oosterdokseiland, just east of + Amsterdam Central Station. Founded on 8 February 1919, it serves Amsterdam, + Diemen, Ouder-Amstel and surrounding areas. + full_name: Openbare Bibliotheek Amsterdam + founding_year: '1919' + founding_date: '1919-02-08' + building_architect: Jo Coenen + building_opened: 2007 + building_details: + surface_area: 28000 m2 + floors: 9 floors for the public + seating: 1000 seats (500 with PCs/Internet) + information_desks: 8 + parking: 1200 cars + bicycle_parking: 2000 bicycles (guarded) + network: + central_library: 1 + regional_libraries: 6 + neighbourhood_libraries: 20 + total_branches: 30 + collection: + books: 1.6 million + cds_dvds_games: 200000 + total_items: 1.3 million objects + annual_circulation: 3 million objects + e_music_tracks: 900000 free downloads + members: 177000 + annual_visitors: 3.8 million + budget: + total_costs: 35000000 + subsidy: 30500000 + own_income: 4500000 + employees: + full_time_units: 235 + total_persons: 300 + collection_types: + - books + - digital_born + - magazines + - music + services: + - Reading room + - Digital access + - Wi-Fi + - Events + - Exhibitions + - Tours + - Copying + - Scanning services + - Theater + - Catering + accessibility_info: Wheelchair friendly, accessible for physically disabled + membership_info: Membership available, various subscription types + legal_status: ANBI (cultural public benefit organization) diff --git a/data/nde/enriched/entries/1355_kb_isil.yaml b/data/nde/enriched/entries/1355_kb_isil.yaml new file mode 100644 index 0000000000..4cc66b0cdf --- /dev/null +++ b/data/nde/enriched/entries/1355_kb_isil.yaml @@ -0,0 +1,202 @@ +original_entry: + plaatsnaam_bezoekadres: Middelburg + organisatie: Zeeuwse Bibliotheken + type_organisatie: bibliotheek + isil_code_kb: NL-0700130000 + type: + - L + opmerkingen: POI +entry_index: 1355 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0700130000 + name: Zeeuwse Bibliotheken + city: Middelburg + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961947 + wikidata_label: Westfriese Bibliotheken + wikidata_description: bibliotheekorganisatie in de regio West-Friesland, gemeenten + Drechterland, Enkhuizen, Koggenland, Medemblik, Opmeer en Stede Broec, Nederland + fetch_timestamp: '2025-11-28T12:22:38.623067+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.westfriesebibliotheken.nl/ + match_confidence: 0.791 +google_maps_enrichment: + place_id: ChIJywhwVtmQxEcRWn0zWYmPLF0 + name: ZB Bibliotheek van Zeeland + fetch_timestamp: '2025-11-28T12:24:29.233070+00:00' + api_status: OK + coordinates: + latitude: 51.496538 + longitude: 3.6161459 + formatted_address: Kousteensedijk 7, 4331 JE Middelburg + short_address: Kousteensedijk 7, Middelburg + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Kousteensedijk + short_name: Kousteensedijk + types: + - route + - long_name: Middelburg + short_name: Middelburg + types: + - locality + - political + - long_name: Middelburg + short_name: Middelburg + types: + - administrative_area_level_2 + - political + - long_name: Zeeland + short_name: ZE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4331 JE + short_name: 4331 JE + types: + - postal_code + phone_local: 0118 654 000 + phone_international: +31 118 654 000 + website: https://www.dezb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 09:00â16:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 156 + google_maps_url: https://maps.google.com/?cid=6713898964572405082&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Zeeuwse Bibliotheken, Middelburg, Netherlands +website_enrichment: + extraction_timestamp: '2025-11-28T14:35:00+00:00' + extraction_method: exa_web_search + confidence_score: 0.90 + source_urls: + - https://www.dezb.nl/ + - https://www.dezb.nl/bibliotheek/catalogus.html + - https://www.dezb.nl/bibliotheek/bibliobussen.html + - https://en.wikipedia.org/wiki/Zeeland_Library + description: > + ZB Bibliotheek van Zeeland (Zeeland Library) is the provincial library network + serving the Zeeland province of the Netherlands. The main location is in + Middelburg. The library offers a comprehensive collection and services including + mobile library buses (Bibliobussen) to reach remote communities. + full_name: ZB Bibliotheek van Zeeland + collection_types: + - books + - digital_born + - magazines + services: + - Reading room + - Digital access + - Interlibrary loan + - Events + - Study spaces + - Infoplaza (information center) + - Bibliobussen (mobile library service) + - Magazijn en kluis (archive storage) + branches: + - ZB Vlissingen + - Bibliobussen (mobile service) + special_services: + - 80 jaar vrijheid (80 years of freedom commemoration activities) + - Student services for University College Roosevelt + mobile_library: true + mobile_service_name: Bibliobussen + mobile_routes: + - Borssele + - Nieuwdorp + - Kortgene + - Colijnsplaat + - Kamperland + - Geersdijk + - Wissenkerke + membership_info: Membership available + digital_platforms: + - name: ZB-app + type: MOBILE_APP + - name: Online catalog + url: https://iguana.zebi.nl + type: CATALOG diff --git a/data/nde/enriched/entries/1356_kb_isil.yaml b/data/nde/enriched/entries/1356_kb_isil.yaml new file mode 100644 index 0000000000..67e10d9e17 --- /dev/null +++ b/data/nde/enriched/entries/1356_kb_isil.yaml @@ -0,0 +1,174 @@ +original_entry: + plaatsnaam_bezoekadres: Leeuwarden + organisatie: FERS Friesland + type_organisatie: bibliotheek + isil_code_kb: NL-0702860000 + type: + - L + opmerkingen: POI +entry_index: 1356 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702860000 + name: FERS Friesland + city: Leeuwarden + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.660417+00:00' +google_maps_enrichment: + place_id: ChIJ6QpNj7f_yEcRHuKzr0-95Cg + name: Fers + fetch_timestamp: '2025-11-28T12:24:29.894557+00:00' + api_status: OK + coordinates: + latitude: 53.193478899999995 + longitude: 5.8453968 + formatted_address: Zuiderkruisweg 4, 8938 AP Leeuwarden + short_address: Zuiderkruisweg 4, Leeuwarden + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Zuiderkruisweg + short_name: Zuiderkruisweg + types: + - route + - long_name: Leeuwarden + short_name: Leeuwarden + types: + - locality + - political + - long_name: Leeuwarden + short_name: Leeuwarden + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8938 AP + short_name: 8938 AP + types: + - postal_code + phone_local: 058 284 7784 + phone_international: +31 58 284 7784 + website: https://fers.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â17:00' + - 'dinsdag: 08:30â17:00' + - 'woensdag: 08:30â17:00' + - 'donderdag: 08:30â17:00' + - 'vrijdag: 08:30â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 5 + total_ratings: 2 + google_maps_url: https://maps.google.com/?cid=2946688206155014686&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek FERS Friesland, Leeuwarden, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://fers.nl/ + organization_type: POI (Provinciale Ondersteuningsinstelling) + description: >- + Fers is the Provincial Support Institution (POI) for Friesland. They work with + partners in the cultural and social sector to make Friesland a better place where + everyone can participate and grow. Fers acts as an innovator and space-maker + (vernieuwer en ruimtemaker) for cultural organizations in the province. + mission: >- + "Samen naar de allerbeste versie van Fryslân" - Together towards the best version + of Friesland. Supporting partners to make a difference in the province where + everyone can participate and further develop. + services: + - Library support and innovation + - Interbibliothecair Leenverkeer (interlibrary loan) + - Knowledge sharing and workshops + - Connection between local and national library policy + - Cultural organization support + programs: + - name: Fries Leesoffensief + description: >- + Ambitious 10-year program to combat illiteracy in Friesland. Goal: no child + leaves school with reading deficits and all inhabitants are sufficiently literate. + 13.4% of Friesland residents struggle with reading/writing (top 3 worst provinces). + - name: Taalkaarten + description: Language cards helping children learn languages and support multilingual families + - name: Waardenzegger + description: >- + Physical installation developed with Studio Sociaal Centraal to stimulate + dialogue about digital dilemmas + - name: Dyn taal Myn taal + description: Frisian language and literacy program + network_coverage: + province: Friesland + supported_libraries: 4 Frisian library organizations + contact: + website: https://fers.nl/ + phone: +31 58 284 7784 + address: Zuiderkruisweg 4, 8938 AP Leeuwarden + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1357_kb_isil.yaml b/data/nde/enriched/entries/1357_kb_isil.yaml new file mode 100644 index 0000000000..38b07c1729 --- /dev/null +++ b/data/nde/enriched/entries/1357_kb_isil.yaml @@ -0,0 +1,182 @@ +original_entry: + plaatsnaam_bezoekadres: Deventer + organisatie: Rijnbrink Gelderland + type_organisatie: bibliotheek + isil_code_kb: NL-0702870000 + type: + - L + opmerkingen: POI +entry_index: 1357 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702870000 + name: Rijnbrink Gelderland + city: Deventer + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.698302+00:00' +google_maps_enrichment: + place_id: ChIJA2oOEwj6x0cRNg2JT5NK0m0 + name: Rijnbrink + fetch_timestamp: '2025-11-28T12:24:30.538712+00:00' + api_status: OK + coordinates: + latitude: 52.2530212 + longitude: 6.1785111 + formatted_address: Hunneperkade 70, 7418 BT Deventer + short_address: Hunneperkade 70, Deventer + address_components: + - long_name: '70' + short_name: '70' + types: + - street_number + - long_name: Hunneperkade + short_name: Hunneperkade + types: + - route + - long_name: Deventer + short_name: Deventer + types: + - locality + - political + - long_name: Deventer + short_name: Deventer + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7418 BT + short_name: 7418 BT + types: + - postal_code + phone_local: 088 197 0300 + phone_international: +31 88 197 0300 + website: https://www.rijnbrink.nl/ + google_place_types: + - cultural_center + - library + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â17:00' + - 'dinsdag: 08:30â17:00' + - 'woensdag: 08:30â17:00' + - 'donderdag: 08:30â17:00' + - 'vrijdag: 08:30â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 9 + google_maps_url: https://maps.google.com/?cid=7913469491798412598&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rijnbrink Gelderland, Deventer, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://www.rijnbrink.nl/ + organization_type: POI (Provinciale Ondersteuningsinstelling) + description: >- + Rijnbrink is the Provincial Support Institution (POI) for libraries in Overijssel + and Gelderland. They support and advise libraries and cultural organizations in + Eastern Netherlands. Founded in 1948, they celebrated their 75th anniversary in 2023. + services: + - Library support and innovation + - Developing renewed library services + - Advising on library-related matters (HRM, ICT, finance, marketing) + - Cultural education support + - Media transport between libraries + - Interbibliothecair Leenverkeer (interlibrary loan) + - Display posters and marketing materials for libraries + - Training and knowledge sharing + programs: + - name: Toekomstkracht Overijsselse bibliotheken + description: Future-proofing program for Overijssel libraries + - name: Klooilab + description: Innovation lab - "tinkering gives results" + - name: Impactgerichte subsidieafspraken + description: Impact-oriented subsidy agreements between libraries, MFOs, and municipalities + sub_organizations: + - name: Musidesk + description: Music library service providing sheet music and repertoire advice + website: https://www.musidesk.nl/ + network_coverage: + provinces: + - Gelderland + - Overijssel + locations: + - Arnhem (headquarters) + - Deventer + - Nijverdal + contact: + website: https://www.rijnbrink.nl/ + phone: +31 88 197 0300 + address_arnhem: Zeelandsingel 40, 6845 BH Arnhem + address_deventer: Hunneperkade 70, 7418 BT Deventer + email: info@rijnbrink.nl + history: + founded: 1948 + anniversary_2023: 75 years of service + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1358_kb_isil.yaml b/data/nde/enriched/entries/1358_kb_isil.yaml new file mode 100644 index 0000000000..e1dcfbd1c4 --- /dev/null +++ b/data/nde/enriched/entries/1358_kb_isil.yaml @@ -0,0 +1,202 @@ +original_entry: + plaatsnaam_bezoekadres: Groningen + organisatie: Biblionet Groningen + type_organisatie: bibliotheek + isil_code_kb: NL-0702880000 + type: + - L +entry_index: 1358 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702880000 + name: Biblionet Groningen + city: Groningen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61196248 + wikidata_label: Hoofdkantoor Biblionet Groningen + wikidata_description: Hoofdkantoor/hoofdkwartier van Biblionet Groningen, de provinciale + ondersteuningsinstelling voor de basisbibliotheken in de provincie Groningen, + Nederland. + fetch_timestamp: '2025-11-28T12:22:38.700126+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 53.2430882 + longitude: 6.5290584 + wikidata_identifiers: + Website: https://biblionetgroningen.nl +google_maps_enrichment: + place_id: ChIJrQvyPh3NyUcRhPfCB2NI4lU + name: Biblionet Groningen + fetch_timestamp: '2025-11-28T12:24:31.196921+00:00' + api_status: OK + coordinates: + latitude: 53.243140200000006 + longitude: 6.5292183999999995 + formatted_address: De Mudden 18, 9747 AW Groningen + short_address: De Mudden 18, Groningen + address_components: + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: De Mudden + short_name: De Mudden + types: + - route + - long_name: Oranjewijk + short_name: Oranjewijk + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Groningen + short_name: Groningen + types: + - locality + - political + - long_name: Groningen + short_name: Groningen + types: + - administrative_area_level_2 + - political + - long_name: Groningen + short_name: GR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9747 AW + short_name: 9747 AW + types: + - postal_code + phone_local: 088 506 1900 + phone_international: +31 88 506 1900 + website: https://biblionetgroningen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 6 + google_maps_url: https://maps.google.com/?cid=6188588428129662852&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Biblionet Groningen, Groningen, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:00:00+00:00' + source_url: https://www.biblionetgroningen.nl/ + enrichment_method: exa_web_search + description: >- + Biblionet Groningen is the provincial support organization (POI) for public libraries + in the province of Groningen, Netherlands. It provides library services, digital + resources, educational programs, and supports multiple library locations across the + province including Forum Groningen. + services: + - Collectie zoeken (catalog search) + - E-books en luisterboeken (e-books and audiobooks) + - Tijdschriften & kranten (magazines and newspapers) + - Wetenschappelijke boeken (scientific books via interlibrary loan) + - Digitale cursussen (digital courses, Digisterker, Klik en Tik) + - Jeugd & Jongeren programmas (youth and young adult programs) + - Onderwijs ondersteuning (education support) + - BookTok collectie (TikTok-famous English books) + digital_platforms: + - platform_name: Online Bibliotheek + platform_type: DISCOVERY_PORTAL + description: E-books, audiobooks, and digital magazines collection + - platform_name: Biblionet Groningen App + platform_type: MOBILE_APP + description: Mobile app for catalog search, reservations, and notifications + - platform_name: Muziekweb + platform_type: DISCOVERY_PORTAL + description: CD and DVD collection from Centrale Discotheek Rotterdam + collections: + - collection_name: Provincial Collection + description: Combined collection of Biblionet Groningen and Forum Groningen + - collection_name: Landelijke bibliotheekcollectie + description: National library collection accessible via interlibrary loan + - collection_name: E-books Collection + description: Digital books available for online lending + target_audiences: + - Jeugd (children) + - Jongeren (young adults) + - Volwassenen (adults) + - Onderwijs (education sector) + programs: + - De Reis van de Regen (current program) + - Boekstart (early literacy for young children) + - Europese Verkiezingen 2024 (civic engagement) + network_members: + - Bibliotheek Marum (nominated for best library in Netherlands) + - Eenrum afhaalpunt (pickup point) + - Forum Groningen + contact: + website: https://biblionetgroningen.nl/ + customer_service: https://biblionetgroningen.nl/klantenservice.html + organization_type: POI (Provinciale Ondersteuningsinstelling) diff --git a/data/nde/enriched/entries/1359_kb_isil.yaml b/data/nde/enriched/entries/1359_kb_isil.yaml new file mode 100644 index 0000000000..c3ad067ee3 --- /dev/null +++ b/data/nde/enriched/entries/1359_kb_isil.yaml @@ -0,0 +1,181 @@ +original_entry: + plaatsnaam_bezoekadres: Heerlen + organisatie: Cubiss Limburg + type_organisatie: bibliotheek + isil_code_kb: NL-0702890000 + type: + - L + opmerkingen: POI +entry_index: 1359 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702890000 + name: Cubiss Limburg + city: Heerlen + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.722868+00:00' +google_maps_enrichment: + place_id: ChIJxetvygK-xkcRrk5Hqdtrnq8 + name: Cubiss + fetch_timestamp: '2025-11-28T12:24:31.811779+00:00' + api_status: OK + coordinates: + latitude: 51.573307 + longitude: 5.0544829 + formatted_address: Statenlaan 4, 5042 RX Tilburg + short_address: Statenlaan 4, Tilburg + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Statenlaan + short_name: Statenlaan + types: + - route + - long_name: Tilburg West + short_name: Tilburg West + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Tilburg + short_name: Tilburg + types: + - locality + - political + - long_name: Tilburg + short_name: Tilburg + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5042 RX + short_name: 5042 RX + types: + - postal_code + website: http://www.cubiss.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:00â17:00' + - 'dinsdag: 08:00â17:00' + - 'woensdag: 08:00â17:00' + - 'donderdag: 08:00â17:00' + - 'vrijdag: 08:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 10 + google_maps_url: https://maps.google.com/?cid=12654670594139705006&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Cubiss Limburg, Heerlen, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:05:00+00:00' + source_url: https://www.cubiss.nl/ + enrichment_method: exa_web_search + description: >- + Cubiss is the Provincial Support Organization (POI) for public libraries in + Limburg and Noord-Brabant. Supporting approximately 30 library organizations + with around 230 locations across both provinces for over 60 years. Cubiss helps + libraries transform from traditional lending facilities ("uitleenfabriek") into + modern information brokers ("informatiemakelaar"). + mission: >- + Droombeeld van Cubiss is dat iedereen voluit deelneemt aan onze samenleving. + (Cubiss's dream is that everyone fully participates in our society.) + services: + - Advies en ondersteuning voor bibliotheekorganisaties + - Geletterde samenleving programmas (literacy society programs) + - Participatie in de informatiesamenleving (participation in information society) + - Leven lang ontwikkelen (lifelong learning) + - Toekomstbestendige bibliotheek ontwikkeling (future-proof library development) + - Interbibliothecair leenverkeer (interlibrary loan) + - Impactgericht werken (impact-focused work) + - Masterclass 'Toekomstbestendige bibliotheken' (with TIAS) + themes: + - Geletterde samenleving (literate society) + - Participatie in de informatiesamenleving (participation in information society) + - Leven lang ontwikkelen (lifelong development) + - Toekomstbestendige bibliotheek (future-proof library) + network_coverage: + provinces: + - Limburg + library_organizations: ~15 + locations: ~115 + programs: + - Gratis bibliotheeklidmaatschap voor mensen met kleine beurs (free membership for low income) + - Tekstloze prentenboeken (wordless picture books) + - De kracht van beeldtaal (power of visual language) + - Literaire zomer (Literary summer) + - ArtificiĂŤle Intelligentie maand (AI month) + contact: + website: https://www.cubiss.nl/ + programmaleider_limburg: Marleen van Rijnsbergen + organization_type: POI (Provinciale Ondersteuningsinstelling) + commissioner: Provincie Limburg, directie Cultuur + legal_entity: Stichting Cubiss Limburg diff --git a/data/nde/enriched/entries/1360_kb_isil.yaml b/data/nde/enriched/entries/1360_kb_isil.yaml new file mode 100644 index 0000000000..296e6636d1 --- /dev/null +++ b/data/nde/enriched/entries/1360_kb_isil.yaml @@ -0,0 +1,181 @@ +original_entry: + plaatsnaam_bezoekadres: Tilburg + organisatie: Cubiss Noord-Brabant + type_organisatie: bibliotheek + isil_code_kb: NL-0702900000 + type: + - L + opmerkingen: POI +entry_index: 1360 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702900000 + name: Cubiss Noord-Brabant + city: Tilburg + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.756228+00:00' +google_maps_enrichment: + place_id: ChIJxetvygK-xkcRrk5Hqdtrnq8 + name: Cubiss + fetch_timestamp: '2025-11-28T12:24:32.568626+00:00' + api_status: OK + coordinates: + latitude: 51.573307 + longitude: 5.0544829 + formatted_address: Statenlaan 4, 5042 RX Tilburg + short_address: Statenlaan 4, Tilburg + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Statenlaan + short_name: Statenlaan + types: + - route + - long_name: Tilburg West + short_name: Tilburg West + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Tilburg + short_name: Tilburg + types: + - locality + - political + - long_name: Tilburg + short_name: Tilburg + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5042 RX + short_name: 5042 RX + types: + - postal_code + website: http://www.cubiss.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:00â17:00' + - 'dinsdag: 08:00â17:00' + - 'woensdag: 08:00â17:00' + - 'donderdag: 08:00â17:00' + - 'vrijdag: 08:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 10 + google_maps_url: https://maps.google.com/?cid=12654670594139705006&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Cubiss Noord-Brabant, Tilburg, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:05:00+00:00' + source_url: https://www.cubiss.nl/ + enrichment_method: exa_web_search + description: >- + Cubiss is the Provincial Support Organization (POI) for public libraries in + Noord-Brabant and Limburg. Supporting approximately 30 library organizations + with around 230 locations across both provinces for over 60 years. Cubiss helps + libraries transform from traditional lending facilities ("uitleenfabriek") into + modern information brokers ("informatiemakelaar"). + mission: >- + We bouwen samen verder aan een open, vaardige en inclusieve Brabantse samenleving. + (Together we continue to build an open, skilled, and inclusive Brabant society.) + services: + - Advies en ondersteuning voor bibliotheekorganisaties + - Geletterde samenleving programmas (literacy society programs) + - Participatie in de informatiesamenleving (participation in information society) + - Leven lang ontwikkelen (lifelong learning) + - Toekomstbestendige bibliotheek ontwikkeling (future-proof library development) + - Interbibliothecair leenverkeer (interlibrary loan) + - Impactgericht werken (impact-focused work) + - Masterclass 'Toekomstbestendige bibliotheken' (with TIAS) + themes: + - Geletterde samenleving (literate society) + - Participatie in de informatiesamenleving (participation in information society) + - Leven lang ontwikkelen (lifelong development) + - Toekomstbestendige bibliotheek (future-proof library) + network_coverage: + provinces: + - Noord-Brabant + library_organizations: ~15 + locations: ~115 + programs: + - Tekstloze prentenboeken (wordless picture books) + - De kracht van beeldtaal (power of visual language) + - Literaire zomer (Literary summer) + - ArtificiĂŤle Intelligentie maand (AI month) + - Taalverwerving tijdens de eerste duizend dagen (language acquisition first 1000 days) + contact: + website: https://www.cubiss.nl/ + programmaleider_brabant: Anneke Oonincx + organization_type: POI (Provinciale Ondersteuningsinstelling) + commissioner: Provincie Noord-Brabant, directie Cultuur + legal_entity: Stichting Cubiss Brabant diff --git a/data/nde/enriched/entries/1361_kb_isil.yaml b/data/nde/enriched/entries/1361_kb_isil.yaml new file mode 100644 index 0000000000..fe7d431738 --- /dev/null +++ b/data/nde/enriched/entries/1361_kb_isil.yaml @@ -0,0 +1,189 @@ +original_entry: + plaatsnaam_bezoekadres: Hoofddorp + organisatie: Probiblio + type_organisatie: bibliotheek + isil_code_kb: NL-0702910000 + type: + - L + opmerkingen: POI +entry_index: 1361 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702910000 + name: Probiblio + city: Hoofddorp + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q124445455 + wikidata_label: Probiblio + wikidata_description: Nederlandse ondersteuningsorganisatie voor bibliotheken + fetch_timestamp: '2025-11-28T12:22:38.758459+00:00' + match_method: isil_code_match + wikidata_identifiers: + VIAF: '194369125' + Website: https://www.probiblio.nl +google_maps_enrichment: + place_id: ChIJi1Ebe7vnxUcRO0lCLhh1Y1I + name: Probiblio + fetch_timestamp: '2025-11-28T12:24:33.186890+00:00' + api_status: OK + coordinates: + latitude: 52.29120030000001 + longitude: 4.7075244 + formatted_address: Spicalaan 55, 2132 JG Hoofddorp + short_address: Spicalaan 55, Hoofddorp + address_components: + - long_name: '55' + short_name: '55' + types: + - street_number + - long_name: Spicalaan + short_name: Spicalaan + types: + - route + - long_name: Hoofddorp + short_name: Hoofddorp + types: + - locality + - political + - long_name: Haarlemmermeer + short_name: Haarlemmermeer + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2132 JG + short_name: 2132 JG + types: + - postal_code + phone_local: 023 554 6100 + phone_international: +31 23 554 6100 + website: http://www.probiblio.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + weekday_text: + - 'maandag: 08:30â17:30' + - 'dinsdag: 08:30â17:30' + - 'woensdag: 08:30â17:30' + - 'donderdag: 08:30â17:30' + - 'vrijdag: 08:30â17:30' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=5936717480520206651&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Probiblio, Hoofddorp, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:05:00+00:00' + source_url: https://www.probiblio.nl/ + enrichment_method: exa_web_search + description: >- + Probiblio is the Provincial Support Organization (POI) for public libraries in + Noord-Holland and Zuid-Holland. Together they create the library of the future + by deploying knowledge and expertise on important themes and business operations. + Probiblio ensures libraries can optimally fulfill their unique role in society. + mission: >- + Samen creĂŤren we de bibliotheek van de toekomst. + (Together we create the library of the future.) + services: + - Advies en ondersteuning voor bibliotheekorganisaties + - Leesbevordering (reading promotion) + - Meertaligheid ondersteuning (multilingualism support) + - Digitale geletterdheid (digital literacy) + - Burgerschap en democratie (citizenship and democracy) + - Marketing en communicatie advies + - Leergang merkpositionering (brand positioning course) + - Biebboost - Digitaal verder (digital advancement) + themes: + - Leesbevordering (reading promotion) + - Meertaligheid (multilingualism) + - Digitale geletterdheid (digital literacy) + - Burgerschap (citizenship) + - Contentmarketing + - Online marketing + network_coverage: + provinces: + - Noord-Holland + - Zuid-Holland + programs: + - Bibliotheek op school (library in school) + - Pilot academische duo's + - Leergang publieke dienstverlening + - Leerteams Educatie + - Meertalige BoekToer collecties + - Educatiedag 2025 'Verbreed je horizon!' + - Adviseur op locatie + digital_platforms: + - platform_name: Probiblio Website + platform_type: DISCOVERY_PORTAL + description: Main information portal with diensten, nieuws, and agenda + contact: + website: https://www.probiblio.nl/ + email: info@probiblio.nl + phone: 023 - 55 46 100 + organization_type: POI (Provinciale Ondersteuningsinstelling) diff --git a/data/nde/enriched/entries/1362_kb_isil.yaml b/data/nde/enriched/entries/1362_kb_isil.yaml new file mode 100644 index 0000000000..e200bd45ef --- /dev/null +++ b/data/nde/enriched/entries/1362_kb_isil.yaml @@ -0,0 +1,188 @@ +original_entry: + plaatsnaam_bezoekadres: Deventer + organisatie: Rijnbrink Overijssel + type_organisatie: bibliotheek + isil_code_kb: NL-0702920000 + type: + - L + opmerkingen: POI +entry_index: 1362 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702920000 + name: Rijnbrink Overijssel + city: Deventer + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.786187+00:00' +google_maps_enrichment: + place_id: ChIJA2oOEwj6x0cRNg2JT5NK0m0 + name: Rijnbrink + fetch_timestamp: '2025-11-28T12:24:33.841886+00:00' + api_status: OK + coordinates: + latitude: 52.2530212 + longitude: 6.1785111 + formatted_address: Hunneperkade 70, 7418 BT Deventer + short_address: Hunneperkade 70, Deventer + address_components: + - long_name: '70' + short_name: '70' + types: + - street_number + - long_name: Hunneperkade + short_name: Hunneperkade + types: + - route + - long_name: Deventer + short_name: Deventer + types: + - locality + - political + - long_name: Deventer + short_name: Deventer + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7418 BT + short_name: 7418 BT + types: + - postal_code + phone_local: 088 197 0300 + phone_international: +31 88 197 0300 + website: https://www.rijnbrink.nl/ + google_place_types: + - cultural_center + - library + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â17:00' + - 'dinsdag: 08:30â17:00' + - 'woensdag: 08:30â17:00' + - 'donderdag: 08:30â17:00' + - 'vrijdag: 08:30â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 9 + google_maps_url: https://maps.google.com/?cid=7913469491798412598&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rijnbrink Overijssel, Deventer, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:15:00+00:00' + source_url: https://www.rijnbrink.nl/ + enrichment_method: exa_web_search + description: >- + Rijnbrink is the Provincial Support Organization (POI) for public libraries in + Overijssel and Gelderland. Working together with libraries, governments, schools, + cultural and social organizations to build a society where everyone can participate. + Supporting libraries to be attractive and relevant for society. + mission: >- + Samen bouwen aan een vaardiger, creatiever en slimmer Overijssel en Gelderland. + (Together building a more skilled, creative, and smarter Overijssel and Gelderland.) + services: + - Advies en ondersteuning voor bibliotheekorganisaties + - Bibliotheek op school (dBos) programmas + - BoekStart leesbevordering + - Toekomstbestendige bibliotheek ontwikkeling + - BTW-advies voor bibliotheken (BTW-handboek) + - Bibliotheekautomatisering + - Subsidieaanvragen ondersteuning + themes: + - Jeugd & Onderwijs (youth and education) + - Participatie & Zelfredzaamheid (participation and self-reliance) + - Persoonlijke ontwikkeling (personal development) + - Veranderen & Verbreden (change and broaden) + network_coverage: + provinces: + - Overijssel + - Gelderland + associations: + - Vereniging Samenwerkende Gelderse Bibliotheken (SGB) + - Gelders Bibliotheeknetwerk + programs: + - Toekomstkracht Overijsselse bibliotheken + - dBos (de Bibliotheek op school) + - BoekStart + - Zorgplicht bibliotheken voorbereiding + - Subsidieregeling provincie Overijssel (max âŹ95.000) + digital_platforms: + - platform_name: www.geldersebibliotheken.nl + platform_type: DISCOVERY_PORTAL + description: Practical information portal for Gelderland libraries + funding: + - Structurele financiering dBos en BoekStart (âŹ38M 2027, âŹ50M/jaar vanaf 2028) + - Decentralisatie-uitkering zorgplicht (âŹ2.95 per inwoner, min âŹ100.000/gemeente) + contact: + website: https://www.rijnbrink.nl/ + phone: 088 197 0300 + relatiemanager_gelderland: + - Willy Blom (06 82 60 02 16) + - Lotte Hemme (06 30 80 85 19) + organization_type: POI (Provinciale Ondersteuningsinstelling) diff --git a/data/nde/enriched/entries/1363_kb_isil.yaml b/data/nde/enriched/entries/1363_kb_isil.yaml new file mode 100644 index 0000000000..5d3b3f562a --- /dev/null +++ b/data/nde/enriched/entries/1363_kb_isil.yaml @@ -0,0 +1,191 @@ +original_entry: + plaatsnaam_bezoekadres: Houten + organisatie: BiSC Utrecht + type_organisatie: bibliotheek + isil_code_kb: NL-0702940000 + type: + - L + opmerkingen: POI +entry_index: 1363 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702940000 + name: BiSC Utrecht + city: Houten + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.808890+00:00' +google_maps_enrichment: + place_id: ChIJd3CnRPhmxkcRCkQsNtznxtI + name: BiSC + fetch_timestamp: '2025-11-28T12:24:34.534295+00:00' + api_status: OK + coordinates: + latitude: 52.063488899999996 + longitude: 5.2116562 + formatted_address: Fruitweg 48, 3981 PA Bunnik + short_address: De Rumpst, Fruitweg 48, Bunnik + address_components: + - long_name: '48' + short_name: '48' + types: + - street_number + - long_name: Fruitweg + short_name: Fruitweg + types: + - route + - long_name: Bunnik + short_name: Bunnik + types: + - locality + - political + - long_name: Bunnik + short_name: Bunnik + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3981 PA + short_name: 3981 PA + types: + - postal_code + phone_local: 030 635 4635 + phone_international: +31 30 635 4635 + website: http://www.biscutrecht.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 3 + google_maps_url: https://maps.google.com/?cid=15188081726341268490&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek BiSC Utrecht, Houten, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:15:00+00:00' + source_url: https://www.biscutrecht.nl/ + enrichment_method: exa_web_search + description: >- + BiSC Utrecht is the Provincial Support Organization (POI) for the 8 public libraries + in the province of Utrecht. As of January 2025, the network includes 65 branches, + 3 service points, and 15 biebpunten (library points). BiSC works on innovation and + renewal of libraries for the benefit of provincial residents. + mission: >- + Naar de maatschappelijke bibliotheek - working toward the societal library where + reading, learning, meeting, and debating are all possible. + services: + - Advies en ondersteuning voor bibliotheekorganisaties + - Interbibliothecair leenverkeer (IBL) logistiek en transport + - Bibliotheekautomatisering standaardisatie + - CRM en klantenrelaties + - Organisatie- en beleidsvraagstukken ('de basis op orde') + themes: + - Geletterde samenleving (literate society) + - Participatie in de Informatiesamenleving (participation in information society) + - Leven Lang Ontwikkelen (lifelong learning) + - Leesplezier (reading enjoyment) + - Democratie en burgerschap (democracy and citizenship) + - Positieve gezondheid (positive health) + network_coverage: + provinces: + - Utrecht + library_organizations: 8 + branches: 65 + service_points: 3 + biebpunten: 15 + network_members: + - Bibliotheek Utrechtse Venen (16 vestigingen, 1 bibliotheekpunt) + - Bibliotheek Lek en IJssel (12 vestigingen) + - Bibliotheek Veenendaal (1 vestiging) + - Bibliotheek Z-O-U-T (11 vestigingen) + - Bibliotheek Utrecht (12 vestigingen) + - Kunstenhuis Idea (6 vestigingen, 14 bibliotheekpunten) + - Bibliotheek Nieuwegein (1 vestiging) + - Bibliotheek Eemland (7 vestigingen, 3 servicepunten) + roles: + - Verkenner (explorer) + - Facilitator + - Gids (guide) + - Expert + - Verbinder (connector) + partnerships: + - KB (Koninklijke Bibliotheek) + - SPN (Stichting Samenwerkende POI's Nederland) + - VOB (Vereniging van Openbare Bibliotheken) + - Cubiss (bestuurlijk gefuseerd sinds 1 januari 2023) + strategic_plans: + - Uitvoeringsplan 2025-2028 + contact: + website: https://www.biscutrecht.nl/ + phone: 030 635 4635 + organization_type: POI (Provinciale Ondersteuningsinstelling) diff --git a/data/nde/enriched/entries/1364_kb_isil.yaml b/data/nde/enriched/entries/1364_kb_isil.yaml new file mode 100644 index 0000000000..41814f877e --- /dev/null +++ b/data/nde/enriched/entries/1364_kb_isil.yaml @@ -0,0 +1,185 @@ +original_entry: + plaatsnaam_bezoekadres: Assen + organisatie: Biblionet Drenthe + type_organisatie: bibliotheek + isil_code_kb: NL-0702970000 + type: + - L +entry_index: 1364 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0702970000 + name: Biblionet Drenthe + city: Assen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.837754+00:00' +google_maps_enrichment: + place_id: ChIJMe9MReIkyEcRPqgmfpxQyQg + name: Biblionet Drenthe + fetch_timestamp: '2025-11-28T12:24:35.211455+00:00' + api_status: OK + coordinates: + latitude: 52.994964499999995 + longitude: 6.558255099999999 + formatted_address: Weiersstraat 1 E, 9401 ET Assen + short_address: Weiersstraat 1 E, Assen + address_components: + - long_name: 1 E + short_name: 1 E + types: + - street_number + - long_name: Weiersstraat + short_name: Weiersstraat + types: + - route + - long_name: Assen + short_name: Assen + types: + - locality + - political + - long_name: Assen + short_name: Assen + types: + - administrative_area_level_2 + - political + - long_name: Drenthe + short_name: DR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9401 ET + short_name: 9401 ET + types: + - postal_code + phone_local: 088 012 8000 + phone_international: +31 88 012 8000 + website: http://www.biblionetdrenthe.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 14 + google_maps_url: https://maps.google.com/?cid=633125855683848254&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Biblionet Drenthe, Assen, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:15:00+00:00' + source_url: https://poi.biblionetdrenthe.nl/ + enrichment_method: exa_web_search + description: >- + Biblionet Drenthe is the Provincial Support Organization (POI) for public libraries + in the province of Drenthe. They coordinate collection development, analysis, and + innovation for the four library organizations in Drenthe. Working under the Gezamenlijk + Drents Collectieplan (Joint Drenthe Collection Plan) to serve library customers + in their search for knowledge, information, and culture. + services: + - Collectioneren (collection selection and acquisition) + - Collectie analyse en advies (collection analysis and advice) + - Bewaar-, project-, en wisselcollectie beheer (preservation, project, rotating collections) + - Portefeuilleoverleg collectie (POC) coordination + - Provinciaal collectieplan ontwikkeling + - Digitale collectie ondersteuning + collections: + - collection_name: Gezamenlijk Drents Collectieplan + description: Provincial collection plan coordinating acquisitions across Drenthe + - collection_name: Bewaarcollectie + description: Preservation collection managed for four library organizations + - collection_name: Projectcollecties + description: Thematic project collections + - collection_name: Wisselcollecties + description: Rotating collections between branches + - collection_name: Digitale Collectie + description: E-books, audiobooks, and digital resources per Handboek Digitaal Aanbod + digital_platforms: + - platform_name: Handboek Digitaal Aanbod + platform_type: DOCUMENTATION + description: Overview of nationally purchased digital content for libraries + themes: + - Jeugd lezen en leren (youth reading and learning) + - Volwassenen leren & ontwikkelen (adult learning and development) + - Lezen & luisteren (reading and listening) + - Ontdekken & onderzoeken (discovery and research) + programs: + - Basiscursus Collectioneren (with NBD Biblion and FERS) + - Collectie-innovatie maatschappelijk-educatieve taak + partnerships: + - FERS (Friese POI) + - NBD Biblion + - KB (Koninklijke Bibliotheek) + contact: + website: https://poi.biblionetdrenthe.nl/ + phone: 088 012 8000 + organization_type: POI (Provinciale Ondersteuningsinstelling) + network_coverage: + provinces: + - Drenthe + library_organizations: 4 diff --git a/data/nde/enriched/entries/1365_kb_isil.yaml b/data/nde/enriched/entries/1365_kb_isil.yaml new file mode 100644 index 0000000000..6bdd008fd2 --- /dev/null +++ b/data/nde/enriched/entries/1365_kb_isil.yaml @@ -0,0 +1,170 @@ +original_entry: + plaatsnaam_bezoekadres: Groningen + organisatie: Biblionet Groningen POI + type_organisatie: bibliotheek + isil_code_kb: NL-0703880000 + type: + - L + opmerkingen: POI +entry_index: 1365 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0703880000 + name: Biblionet Groningen POI + city: Groningen + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59940713 + wikidata_label: Biblionet Groningen + wikidata_description: provinciale ondersteuningsinstelling (POI) voor de basisbibliotheken + in de provincie Groningen, Nederland + fetch_timestamp: '2025-11-28T12:22:38.869167+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://biblionetgroningen.nl/ + match_confidence: 1.055 +google_maps_enrichment: + place_id: ChIJrQvyPh3NyUcRhPfCB2NI4lU + name: Biblionet Groningen + fetch_timestamp: '2025-11-28T12:24:35.928765+00:00' + api_status: OK + coordinates: + latitude: 53.243140200000006 + longitude: 6.5292183999999995 + formatted_address: De Mudden 18, 9747 AW Groningen + short_address: De Mudden 18, Groningen + address_components: + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: De Mudden + short_name: De Mudden + types: + - route + - long_name: Oranjewijk + short_name: Oranjewijk + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Groningen + short_name: Groningen + types: + - locality + - political + - long_name: Groningen + short_name: Groningen + types: + - administrative_area_level_2 + - political + - long_name: Groningen + short_name: GR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9747 AW + short_name: 9747 AW + types: + - postal_code + phone_local: 088 506 1900 + phone_international: +31 88 506 1900 + website: https://biblionetgroningen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 6 + google_maps_url: https://maps.google.com/?cid=6188588428129662852&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Biblionet Groningen POI, Groningen, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:15:00+00:00' + source_url: https://www.biblionetgroningen.nl/ + enrichment_method: exa_web_search + description: >- + Biblionet Groningen POI is the Provincial Support Organization (POI) for public + libraries in the province of Groningen, Netherlands. It provides library services, + digital resources, educational programs, and supports multiple library locations + across the province including Forum Groningen. + note: >- + This is the POI (Provincial Support) entry for Biblionet Groningen. See also + entry 1358 (NL-0702880000) for the main Biblionet Groningen library network. + services: + - Collectie zoeken (catalog search) + - E-books en luisterboeken (e-books and audiobooks) + - Digitale cursussen (Digisterker, Klik en Tik) + - Jeugd & Jongeren programmas + - Onderwijs ondersteuning + organization_type: POI (Provinciale Ondersteuningsinstelling) + contact: + website: https://biblionetgroningen.nl/ diff --git a/data/nde/enriched/entries/1366_kb_isil.yaml b/data/nde/enriched/entries/1366_kb_isil.yaml new file mode 100644 index 0000000000..d29943a85e --- /dev/null +++ b/data/nde/enriched/entries/1366_kb_isil.yaml @@ -0,0 +1,135 @@ +original_entry: + plaatsnaam_bezoekadres: Assen + organisatie: Biblionet Drenthe POI + type_organisatie: bibliotheek + isil_code_kb: NL-0703970000 + type: + - L + opmerkingen: POI +entry_index: 1366 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0703970000 + name: Biblionet Drenthe POI + city: Assen + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.890442+00:00' +google_maps_enrichment: + place_id: ChIJMe9MReIkyEcRPqgmfpxQyQg + name: Biblionet Drenthe + fetch_timestamp: '2025-11-28T12:24:36.566899+00:00' + api_status: OK + coordinates: + latitude: 52.994964499999995 + longitude: 6.558255099999999 + formatted_address: Weiersstraat 1 E, 9401 ET Assen + short_address: Weiersstraat 1 E, Assen + address_components: + - long_name: 1 E + short_name: 1 E + types: + - street_number + - long_name: Weiersstraat + short_name: Weiersstraat + types: + - route + - long_name: Assen + short_name: Assen + types: + - locality + - political + - long_name: Assen + short_name: Assen + types: + - administrative_area_level_2 + - political + - long_name: Drenthe + short_name: DR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9401 ET + short_name: 9401 ET + types: + - postal_code + phone_local: 088 012 8000 + phone_international: +31 88 012 8000 + website: http://www.biblionetdrenthe.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 14 + google_maps_url: https://maps.google.com/?cid=633125855683848254&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Biblionet Drenthe POI, Assen, Netherlands diff --git a/data/nde/enriched/entries/1367_kb_isil.yaml b/data/nde/enriched/entries/1367_kb_isil.yaml new file mode 100644 index 0000000000..e370b09e2b --- /dev/null +++ b/data/nde/enriched/entries/1367_kb_isil.yaml @@ -0,0 +1,132 @@ +original_entry: + plaatsnaam_bezoekadres: Lelystad + organisatie: Bibliotheeknetwerk Flevoland + type_organisatie: bibliotheek + isil_code_kb: NL-0707900000 + type: + - L + opmerkingen: POI +entry_index: 1367 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0707900000 + name: Bibliotheeknetwerk Flevoland + city: Lelystad + registry: KB Netherlands Library Network + notes: POI + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.910551+00:00' +google_maps_enrichment: + place_id: ChIJVVUV2sIlxkcRJIwXDvwq-P4 + name: Bibliotheeknetwerk Flevoland + fetch_timestamp: '2025-11-28T12:24:37.176988+00:00' + api_status: OK + coordinates: + latitude: 52.4781359 + longitude: 5.5014629 + formatted_address: Albert Einsteinweg 4, 8218 NH Lelystad + short_address: Albert Einsteinweg 4, Lelystad + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Albert Einsteinweg + short_name: Albert Einsteinweg + types: + - route + - long_name: Lelystad + short_name: Lelystad + types: + - locality + - political + - long_name: Lelystad + short_name: Lelystad + types: + - administrative_area_level_2 + - political + - long_name: Flevoland + short_name: FL + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8218 NH + short_name: 8218 NH + types: + - postal_code + phone_local: 088 008 0720 + phone_international: +31 88 008 0720 + website: https://www.bibliotheeknetwerkflevoland.nl/contact/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + rating: 5 + total_ratings: 1 + google_maps_url: https://maps.google.com/?cid=18372481941914487844&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheeknetwerk Flevoland, Lelystad, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://www.bibliotheeknetwerkflevoland.nl/ + organization_type: POI (Provinciale Ondersteuningsinstelling) + tagline: "Sterk in het Netwerk!" + description: >- + Bibliotheeknetwerk Flevoland (BNF) is the Provincial Support Institution for + FlevoMeer Bibliotheek and De Nieuwe Bibliotheek in the youngest province of + the Netherlands (Flevoland, created from the Zuiderzee/IJsselmeer). BNF supports + Flevoland libraries with network tasks, shares information about national + developments, and strengthens cooperation. + services: + - Network task support + - National development information sharing + - Strengthening library cooperation + - Interbibliothecair Leenverkeer (interlibrary loan) + - Innovation development + - Customer journey research + programs: + - name: De Nationale Voorleeswedstrijd + description: >- + National reading competition provincial finals - hosts reading champions + competition in De Kubus Lelystad + - name: Klantreis Voorlezen in de bibliotheek + description: >- + Customer journey program to help parents/caregivers with low literacy skills + support their children's language development + supported_libraries: + - name: FlevoMeer Bibliotheek (FMB) + description: Library network serving Flevoland communities + - name: De Nieuwe Bibliotheek (DNB) + description: Library in Almere, innovative library concept + network_coverage: + province: Flevoland + main_cities: + - Lelystad + - Almere + - Dronten + approach: >- + Continuously connected with libraries, Province, and national network. + Provides customized support based on Flevoland library sector needs + and provincial developments. + contact: + website: https://www.bibliotheeknetwerkflevoland.nl/ + phone: +31 88 008 0720 + address: Albert Einsteinweg 4, 8218 NH Lelystad + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1368_kb_isil.yaml b/data/nde/enriched/entries/1368_kb_isil.yaml new file mode 100644 index 0000000000..7b9ba6d4b1 --- /dev/null +++ b/data/nde/enriched/entries/1368_kb_isil.yaml @@ -0,0 +1,192 @@ +original_entry: + plaatsnaam_bezoekadres: Rotterdam + organisatie: Muziekweb + type_organisatie: bibliotheek + isil_code_kb: NL-0735650000 + type: + - L + opmerkingen: landelijke bibliotheekorganisatie +entry_index: 1368 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0735650000 + name: Muziekweb + city: Rotterdam + registry: KB Netherlands Library Network + notes: landelijke bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q18088607 + wikidata_label: Muziekweb + wikidata_description: Nederlandse muziekbibliotheek en databank + fetch_timestamp: '2025-11-28T12:22:38.929895+00:00' + match_method: fuzzy_name_match + wikidata_inception: '1961-10-14' + wikidata_identifiers: + Website: https://www.muziekweb.nl + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJzZbxneIzxEcRW0-z0LIP1dU + name: Muziekweb + fetch_timestamp: '2025-11-28T12:24:37.814940+00:00' + api_status: OK + coordinates: + latitude: 51.9210944 + longitude: 4.489188599999999 + formatted_address: Hoogstraat 110, 3011 PV Rotterdam + short_address: Hoogstraat 110, Rotterdam + address_components: + - long_name: '110' + short_name: '110' + types: + - street_number + - long_name: Hoogstraat + short_name: Hoogstraat + types: + - route + - long_name: Centrum + short_name: Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Rotterdam + short_name: Rotterdam + types: + - locality + - political + - long_name: Rotterdam + short_name: Rotterdam + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3011 PV + short_name: 3011 PV + types: + - postal_code + phone_local: 035 677 5555 + phone_international: +31 35 677 5555 + website: https://www.muziekweb.nl/ + google_place_types: + - point_of_interest + - store + - establishment + primary_type: store + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + google_maps_url: https://maps.google.com/?cid=15408238960798027611&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Muziekweb, Rotterdam, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:20:00+00:00' + source_url: https://www.muziekweb.nl/ + enrichment_method: exa_web_search + description: >- + Muziekweb is the national music library of the Netherlands (de muziekbibliotheek + van Nederland). Founded on October 14, 1961, it provides endless new music, + surprising genres, and information about favorite artists. The platform offers + streaming, discovery tools, and curated playlists for music lovers. + tagline: >- + Eindeloos veel nieuwe muziek, verrassende genres en informatie over je favoriete + artiesten - de muziekbibliotheek van Nederland. + services: + - Muziek streaming (music streaming) + - Nieuwe releases ontdekken (discover new releases) + - Playlists (curated playlists with full tracks) + - Cover zoeken (cover search) + - Artiestadvies (artist recommendations) + - Albumadvies (album recommendations) + - Bijzondere collecties (special collections) + - Intro's (artist introductions) + collections: + - collection_name: Populair + description: Popular music collection + - collection_name: Klassiek + description: Classical music collection + - collection_name: Jazz + description: Jazz music collection + - collection_name: Wereld + description: World music collection + - collection_name: Landen + description: Music by country + - collection_name: Klassieke LP's + description: Classical vinyl LP collection + digital_platforms: + - platform_name: Muziekweb + platform_type: STREAMING_PLATFORM + platform_url: https://www.muziekweb.nl + description: National music streaming and discovery platform + contact: + website: https://www.muziekweb.nl/ + phone: 035 677 5555 + address: Hoogstraat 110, 3011 PV Rotterdam + organization_type: landelijke bibliotheekorganisatie (national library organization) + founding_date: '1961-10-14' diff --git a/data/nde/enriched/entries/1369_kb_isil.yaml b/data/nde/enriched/entries/1369_kb_isil.yaml new file mode 100644 index 0000000000..f9a5b5899f --- /dev/null +++ b/data/nde/enriched/entries/1369_kb_isil.yaml @@ -0,0 +1,181 @@ +original_entry: + plaatsnaam_bezoekadres: Utrecht + organisatie: CoĂśperatie SDI + type_organisatie: bibliotheek + isil_code_kb: NL-0770040000 + type: + - L + opmerkingen: landelijke bibliotheekorganisatie +entry_index: 1369 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0770040000 + name: CoĂśperatie SDI + city: Utrecht + registry: KB Netherlands Library Network + notes: landelijke bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.950954+00:00' +google_maps_enrichment: + place_id: ChIJ3ZdECwBvxkcRH54SXJdant4 + name: CoĂśperatie Samen Digitaal Innoveren SDI + fetch_timestamp: '2025-11-28T12:24:38.445587+00:00' + api_status: OK + coordinates: + latitude: 52.089150499999995 + longitude: 5.1227882 + formatted_address: Hamburgerstraat 28A, 3512 NS Utrecht + short_address: Hamburgerstraat 28A, Utrecht + address_components: + - long_name: 28A + short_name: 28A + types: + - street_number + - long_name: Hamburgerstraat + short_name: Hamburgerstraat + types: + - route + - long_name: Binnenstad + short_name: Binnenstad + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Utrecht + short_name: Utrecht + types: + - locality + - political + - long_name: Utrecht + short_name: Utrecht + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3512 NS + short_name: 3512 NS + types: + - postal_code + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:00â17:00' + - 'dinsdag: 08:00â17:00' + - 'woensdag: 08:00â17:00' + - 'donderdag: 08:00â17:00' + - 'vrijdag: 08:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + google_maps_url: https://maps.google.com/?cid=16041358528871570975&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek CoĂśperatie SDI, Utrecht, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:20:00+00:00' + source_url: https://www.sdi.nl/ + enrichment_method: exa_web_search + description: >- + CoĂśperatie Samen Digitaal Innoveren U.A. (SDI) is a cooperative founded in May 2024 + for and by public libraries to advance digital innovation in the library sector. + The cooperative was founded by ProBiblio, Rijnbrink and Cubiss-Bisc, with 110 + library organizations joining within a short time. SDI is responsible for the + procurement of a Common Library System (Gemeenschappelijk Bibliotheek Systeem - GBS). + mission: >- + De sector mee te laten gaan in de digitale innovatie. Om bibliotheken beter te + laten profiteren van moderne ICT-diensten, die passen in een toekomstbestendige + infrastructuur. (To help the sector participate in digital innovation and help + libraries benefit from modern ICT services in a future-proof infrastructure.) + services: + - Gemeenschappelijk Bibliotheek Systeem (GBS) aanbesteding + - Digitale veiligheid (CERT - Computer Emergency Response Team) + - Functioneel beheer bibliotheeksystemen + - Migratie- en implementatieondersteuning + - Cyberveiligheid collectieve voorziening + achievements: + - Europese aanbestedingsprocedure voor GBS (completed 2024) + - Gunning toegewezen aan OCLC + - âŹ5.7 miljoen voor versterking digitale infrastructuur (OCW funding) + governance: + legal_form: CoĂśperatie U.A. + directeur_bestuurder: Jesse Burkunk (vanaf 1 februari 2025) + raad_van_commissarissen_voorzitter: Erik Fledderus (voormalig SURF-voorzitter) + founding_board: + - Peter van Eijk + - Albert Kivits + - Frans Bergfeld + - Benard Fransen + founding_partners: + - ProBiblio + - Rijnbrink + - Cubiss-Bisc + membership: + member_count: 110 + member_type: bibliotheekorganisaties en multifunctionele organisaties + contact: + address: Hamburgerstraat 28A, 3512 NS Utrecht + organization_type: landelijke bibliotheekorganisatie (national library organization) + founding_date: '2024-05' diff --git a/data/nde/enriched/entries/1370_kb_isil.yaml b/data/nde/enriched/entries/1370_kb_isil.yaml new file mode 100644 index 0000000000..0bdce2869a --- /dev/null +++ b/data/nde/enriched/entries/1370_kb_isil.yaml @@ -0,0 +1,203 @@ +original_entry: + plaatsnaam_bezoekadres: Den Haag + organisatie: online bibliotheek + type_organisatie: bibliotheek + isil_code_kb: NL-0773600000 + type: + - L + opmerkingen: landelijke bibliotheekorganisatie +entry_index: 1370 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0773600000 + name: online bibliotheek + city: Den Haag + registry: KB Netherlands Library Network + notes: landelijke bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.966290+00:00' +google_maps_enrichment: + place_id: ChIJ6fiDoyO3xUcR5_5hZ29r5NA + name: Centrale Bibliotheek + fetch_timestamp: '2025-11-28T12:24:39.210842+00:00' + api_status: OK + coordinates: + latitude: 52.0774671 + longitude: 4.3161551 + formatted_address: Spui 68, 2511 BT Den Haag + short_address: Spui 68, Den Haag + address_components: + - long_name: '68' + short_name: '68' + types: + - street_number + - long_name: Spui + short_name: Spui + types: + - route + - long_name: Centrum + short_name: Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - locality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2511 BT + short_name: 2511 BT + types: + - postal_code + phone_local: 070 353 4455 + phone_international: +31 70 353 4455 + website: http://bibliotheekdenhaag.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 18 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 21 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 18 + minute: 0 + weekday_text: + - 'maandag: 10:00â21:00' + - 'dinsdag: 10:00â21:00' + - 'woensdag: 10:00â21:00' + - 'donderdag: 10:00â21:00' + - 'vrijdag: 10:00â21:00' + - 'zaterdag: 10:00â18:00' + - 'zondag: 10:00â18:00' + rating: 4.4 + total_ratings: 511 + google_maps_url: https://maps.google.com/?cid=15052273980799057639&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: online bibliotheek, Den Haag, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T16:25:00+00:00' + source_url: https://www.onlinebibliotheek.nl/ + enrichment_method: exa_web_search + description: >- + De online Bibliotheek is the national digital library platform of the Netherlands, + offering e-books, audiobooks (luisterboeken), and digital magazines. The service + provides the same reading experience digitally - "Hetzelfde verhaal, maar dan + digitaal" (The same story, but digital). Available for âŹ42/year, or free with + most library memberships. + tagline: Digitaal lezen, altijd en overal. (Digital reading, always and everywhere.) + services: + - E-books lenen (borrow e-books) + - Luisterboeken (audiobooks) + - Digitale tijdschriften (digital magazines) + - Jeugdcollectie (youth collection) + - Leestips (reading tips) + - Leren (learning resources) + - Podcasts + collections: + - collection_name: E-books + description: Digital book collection for lending + - collection_name: Luisterboeken + description: Audiobook collection + - collection_name: Tijdschriften + description: Digital magazine collection + - collection_name: Jeugd + description: Youth and children's digital collection + digital_platforms: + - platform_name: de online Bibliotheek + platform_type: DIGITAL_LIBRARY + platform_url: https://www.onlinebibliotheek.nl/ + description: National e-book and audiobook lending platform + - platform_name: de online Bibliotheek App + platform_type: MOBILE_APP + description: Mobile app for reading and listening + pricing: + standalone: âŹ42 per jaar + with_library_membership: Meestal gratis (usually free) + target_audiences: + - Volwassenen (adults) + - Jeugd (youth) + contact: + website: https://www.onlinebibliotheek.nl/ + organization_type: landelijke bibliotheekorganisatie (national library organization) + operator: KB (Koninklijke Bibliotheek) diff --git a/data/nde/enriched/entries/1371_kb_isil.yaml b/data/nde/enriched/entries/1371_kb_isil.yaml new file mode 100644 index 0000000000..fef61bc458 --- /dev/null +++ b/data/nde/enriched/entries/1371_kb_isil.yaml @@ -0,0 +1,226 @@ +original_entry: + plaatsnaam_bezoekadres: Den Haag + organisatie: Passend Lezen + type_organisatie: bibliotheek + isil_code_kb: NL-0774500000 + type: + - L + opmerkingen: landelijke bibliotheekorganisatie +entry_index: 1371 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0774500000 + name: Passend Lezen + city: Den Haag + registry: KB Netherlands Library Network + notes: landelijke bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:38.990894+00:00' +google_maps_enrichment: + place_id: ChIJDytDeU23xUcRK7r6yHiAW6E + name: Passend Lezen + fetch_timestamp: '2025-11-28T12:24:39.846150+00:00' + api_status: OK + coordinates: + latitude: 52.087972699999995 + longitude: 4.320062399999999 + formatted_address: Zuid Hollandlaan 7, 2596 AL Den Haag + short_address: Zuid Hollandlaan 7, Den Haag + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Zuid Hollandlaan + short_name: Zuid Hollandlaan + types: + - route + - long_name: Haagse Hout + short_name: Haagse Hout + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - locality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2596 AL + short_name: 2596 AL + types: + - postal_code + phone_local: 070 338 1500 + phone_international: +31 70 338 1500 + website: https://www.passendlezen.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 12 + minute: 0 + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 16 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 12 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 12 + minute: 0 + - open: + day: 3 + hour: 13 + minute: 0 + close: + day: 3 + hour: 16 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 12 + minute: 0 + - open: + day: 4 + hour: 13 + minute: 0 + close: + day: 4 + hour: 16 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 12 + minute: 0 + - open: + day: 5 + hour: 13 + minute: 0 + close: + day: 5 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â12:00, 13:00â16:00' + - 'dinsdag: 09:00â12:00' + - 'woensdag: 09:00â12:00, 13:00â16:00' + - 'donderdag: 09:00â12:00, 13:00â16:00' + - 'vrijdag: 09:00â12:00, 13:00â16:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 3.9 + total_ratings: 24 + google_maps_url: https://maps.google.com/?cid=11627028119243373099&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Passend Lezen, Den Haag, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://nieuw.passendlezen.nl/ + organization_type: Landelijke bibliotheekorganisatie (National Library Organization) + tagline: Blijf lezen (Keep reading) + description: >- + Passend Lezen is THE library for everyone with a reading disability in the Netherlands. + They provide accessible reading formats for people who are blind, visually impaired, + dyslexic, or have other print disabilities. The service offers over 110,000 books, + newspapers, and magazines in various accessible formats. + target_audience: + - People who are blind or visually impaired + - People with dyslexia + - People with physical disabilities affecting reading + - People with cognitive disabilities + - People with ADHD affecting reading + collections: + spoken_books: 110,000+ + braille_books: 22,000+ + newspapers: National and regional dailies + magazines: Various periodicals + formats: + - DAISY audio books + - Braille + - Streaming audio + - App-based reading + services: + - Gesproken boeken (spoken books) + - Brailleboeken (braille books) + - Kranten en tijdschriften (newspapers and magazines) + - Personal reading assistance + - Free mobile app for listening + - Streaming service + pricing: + youth_under_18: Free + adults: 33 EUR per year + via_public_library: Free (with public library membership) + organizations: 33 EUR per year + customer_satisfaction: 8.5 out of 10 + digital_platforms: + - name: Passend Lezen App + description: Free mobile app for streaming audio books + - name: Website streaming + description: Online access to entire collection + youth_services: + website: Special youth section for children with reading difficulties + focus: Making reading enjoyable despite ADHD, dyslexia, or other challenges + partnership: + - Openbare Bibliotheken (public libraries) + - Integration with public library membership + contact: + website: https://nieuw.passendlezen.nl/ + phone: +31 70 338 1500 + address: Zuid Hollandlaan 7, 2596 AL Den Haag + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1372_kb_isil.yaml b/data/nde/enriched/entries/1372_kb_isil.yaml new file mode 100644 index 0000000000..a45ff2c120 --- /dev/null +++ b/data/nde/enriched/entries/1372_kb_isil.yaml @@ -0,0 +1,199 @@ +original_entry: + plaatsnaam_bezoekadres: Grave + organisatie: Dedicon + type_organisatie: bibliotheek + isil_code_kb: NL-0774550000 + type: + - L + opmerkingen: landelijke bibliotheekorganisatie +entry_index: 1372 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0774550000 + name: Dedicon + city: Grave + registry: KB Netherlands Library Network + notes: landelijke bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.004185+00:00' +google_maps_enrichment: + place_id: ChIJi2sWX_UEx0cRMUm1AjFY6Js + name: Stichting Dedicon + fetch_timestamp: '2025-11-28T12:24:40.481833+00:00' + api_status: OK + coordinates: + latitude: 51.754853499999996 + longitude: 5.7330328999999995 + formatted_address: Traverse 175, 5361 TD Grave + short_address: Traverse 175, Grave + address_components: + - long_name: '175' + short_name: '175' + types: + - street_number + - long_name: Traverse + short_name: Traverse + types: + - route + - long_name: Grave + short_name: Grave + types: + - locality + - political + - long_name: Land van Cuijk + short_name: Land van Cuijk + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5361 TD + short_name: 5361 TD + types: + - postal_code + phone_local: 0486 486 486 + phone_international: +31 486 486 486 + website: https://www.dedicon.nl/ + google_place_types: + - corporate_office + - point_of_interest + - establishment + primary_type: corporate_office + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 25 + google_maps_url: https://maps.google.com/?cid=11234326237997779249&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Dedicon, Grave, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://www.dedicon.nl/ + organization_type: Landelijke bibliotheekorganisatie (National Library Organization) + legal_form: Non-profit organization (Stichting) + description: >- + Dedicon is a non-profit organization and the largest producer of alternative reading + formats in the Netherlands. They provide access to information for persons with visual + or other print impairments. Dedicon makes existing text and images accessible through + various formats: braille, audio, digital text, large print, tactile images, and hybrid variants. + mission: >- + Dedicon believes in a society where everyone can participate fully. Access to text + and images is key to this. They make existing content accessible for people with + reading disabilities. + target_audience: + - People who are blind or visually impaired + - People with dyslexia + - People with physical disabilities affecting reading + - Students with print disabilities + production_statistics: + braille_pages: 3,484,400 per year + braille_music_pages: 1,100 per year + tactile_images: 85,200 per year + large_print_productions: 14,900 per year + audio_books: 4,500 per year + audio_collection: 70,000 books + audio_minutes: 1,500,000 per year + streams_downloads: 1,170,000 per year + formats_produced: + - Braille books and documents + - Braille music notation + - Tactile images and graphics + - Large print books + - DAISY audio books + - Digital text files + - Hybrid format combinations + facilities: + recording_studios: 27 high-tech studios + staff: 130 experts + volunteer_readers: 350+ + services: + - Educational material adaptation + - School textbook conversion + - Publisher training programs + - Distribution services + - Image descriptions (audio description) + - Didactic modifications for accessibility + - Conversion services + funding: + - Ministry of Education, Culture and Science + - KB (Royal National Library) + international: + - DAISY Consortium member + - Marrakesh Treaty implementation + - European accessibility initiatives + - Project SIDPT (Supporting Inclusive Digital Publishing through Training) + history: + experience: 65+ years of expertise + contact: + website: https://www.dedicon.nl/ + phone: +31 486 486 486 + address: Traverse 175, 5361 TD Grave + postal: PO Box 24, NL 5360 AA Grave + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1373_kb_isil.yaml b/data/nde/enriched/entries/1373_kb_isil.yaml new file mode 100644 index 0000000000..527cec0722 --- /dev/null +++ b/data/nde/enriched/entries/1373_kb_isil.yaml @@ -0,0 +1,189 @@ +original_entry: + plaatsnaam_bezoekadres: Deventer + organisatie: Rijnbrink Musidesk Gelderland + type_organisatie: bibliotheek + isil_code_kb: NL-0792870000 + type: + - L + opmerkingen: provinciale bibliotheekorganisatie +entry_index: 1373 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0792870000 + name: Rijnbrink Musidesk Gelderland + city: Deventer + registry: KB Netherlands Library Network + notes: provinciale bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.031067+00:00' +google_maps_enrichment: + place_id: ChIJA2oOEwj6x0cRmVi1RIep898 + name: Musidesk Rijnbrink + fetch_timestamp: '2025-11-28T12:24:41.221173+00:00' + api_status: OK + coordinates: + latitude: 52.2530171 + longitude: 6.1791009 + formatted_address: Hunneperkade 70, 7418 BT Deventer + short_address: Hunneperkade 70, Deventer + address_components: + - long_name: '70' + short_name: '70' + types: + - street_number + - long_name: Hunneperkade + short_name: Hunneperkade + types: + - route + - long_name: Deventer + short_name: Deventer + types: + - locality + - political + - long_name: Deventer + short_name: Deventer + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7418 BT + short_name: 7418 BT + types: + - postal_code + phone_local: 088 197 0306 + phone_international: +31 88 197 0306 + website: https://www.musidesk.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 16 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 16 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 16 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 16 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 13:00â16:00' + - 'dinsdag: 09:00â16:00' + - 'woensdag: 09:00â16:00' + - 'donderdag: 09:00â16:00' + - 'vrijdag: 09:00â13:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 2 + google_maps_url: https://maps.google.com/?cid=16137428288237033625&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rijnbrink Musidesk Gelderland, Deventer, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://www.musidesk.nl/ + organization_type: Provinciale bibliotheekorganisatie (Provincial Music Library) + parent_organization: Rijnbrink + tagline: Op elke muziekvraag een klinkend antwoord! (A sounding answer to every music question!) + description: >- + Musidesk is the music library service of Rijnbrink, providing sheet music (bladmuziek) + collection services for musicians, music associations, and music educators in Gelderland + and Overijssel. They offer access to a comprehensive catalog of sheet music for lending, + plus repertoire advice and support for musical organizations. + services: + - Sheet music lending (Catalogus) + - Repertoire advice + - Youth music inspiration (Jeugdinspiratie) + - Association support (Verenigingsondersteuning) + - Knowledge sharing and webinars + - LDB (Landelijke Dienstverlening Bladmuziek) - National Sheet Music Service + - e-Musidesk digital services + programs: + - name: Jeugdfestivals + description: Youth music festivals + - name: Hanzefestivals + description: Hanseatic music festivals + - name: HRFSTWND + description: Autumn wind music events + - name: MIDI-ators + description: Digital music innovation program + network_coverage: + provinces: + - Gelderland + - Overijssel + national_service: LDB (Landelijke Dienstverlening Bladmuziek) + membership: + organization: NVMB (Nederlandse Vereniging van Muziekbibliotheken) + international: IAML (International Association of Music Libraries) + digital_platforms: + - name: e-Musidesk + description: Digital music library service + - name: Online Catalogus + description: Searchable sheet music catalog + contact: + website: https://www.musidesk.nl/ + phone: +31 88 197 0306 + address: Hunneperkade 70, 7418 BT Deventer + postal: Postbus 35, 7400 AJ Deventer + email: (via website contact form) + social_media: + facebook: https://www.facebook.com/musidesk/ + youtube: https://www.youtube.com/@musideskrijnbrink8200 + instagram: https://www.instagram.com/musidesk/ + business_registration: + kvk: 57849390 + btw: NL8527.63.232.B01 + iban: NL69RABO0129970956 + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1374_kb_isil.yaml b/data/nde/enriched/entries/1374_kb_isil.yaml new file mode 100644 index 0000000000..2eea974862 --- /dev/null +++ b/data/nde/enriched/entries/1374_kb_isil.yaml @@ -0,0 +1,133 @@ +original_entry: + plaatsnaam_bezoekadres: Deventer + organisatie: Rijnbrink Musidesk Overijssel + type_organisatie: bibliotheek + isil_code_kb: NL-0792920000 + type: + - L + opmerkingen: provinciale bibliotheekorganisatie +entry_index: 1374 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0792920000 + name: Rijnbrink Musidesk Overijssel + city: Deventer + registry: KB Netherlands Library Network + notes: provinciale bibliotheekorganisatie + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.059583+00:00' +google_maps_enrichment: + place_id: ChIJA2oOEwj6x0cRmVi1RIep898 + name: Musidesk Rijnbrink + fetch_timestamp: '2025-11-28T12:24:41.851828+00:00' + api_status: OK + coordinates: + latitude: 52.2530171 + longitude: 6.1791009 + formatted_address: Hunneperkade 70, 7418 BT Deventer + short_address: Hunneperkade 70, Deventer + address_components: + - long_name: '70' + short_name: '70' + types: + - street_number + - long_name: Hunneperkade + short_name: Hunneperkade + types: + - route + - long_name: Deventer + short_name: Deventer + types: + - locality + - political + - long_name: Deventer + short_name: Deventer + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7418 BT + short_name: 7418 BT + types: + - postal_code + phone_local: 088 197 0306 + phone_international: +31 88 197 0306 + website: https://www.musidesk.nl/ + google_place_types: + - point_of_interest + - establishment + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 16 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 16 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 16 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 16 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 13:00â16:00' + - 'dinsdag: 09:00â16:00' + - 'woensdag: 09:00â16:00' + - 'donderdag: 09:00â16:00' + - 'vrijdag: 09:00â13:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 2 + google_maps_url: https://maps.google.com/?cid=16137428288237033625&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rijnbrink Musidesk Overijssel, Deventer, Netherlands diff --git a/data/nde/enriched/entries/1375_kb_isil.yaml b/data/nde/enriched/entries/1375_kb_isil.yaml new file mode 100644 index 0000000000..136725003a --- /dev/null +++ b/data/nde/enriched/entries/1375_kb_isil.yaml @@ -0,0 +1,157 @@ +original_entry: + plaatsnaam_bezoekadres: Rotterdam + organisatie: Bibliotheek Rotterdam + type_organisatie: bibliotheek + isil_code_kb: NL-0800120000 + type: + - L +entry_index: 1375 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800120000 + name: Bibliotheek Rotterdam + city: Rotterdam + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q13439237 + wikidata_label: Centrale Bibliotheek Rotterdam + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek Rotterdam + fetch_timestamp: '2025-11-28T12:22:39.061706+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.92106 + longitude: 4.48911 + wikidata_inception: '1983-01-01' + wikidata_identifiers: + VIAF: '240149106265268492170' + Website: https://www.bibliotheek.rotterdam.nl/locaties-2/bibliotheek-rotterdam-centrale-bibliotheek +google_maps_enrichment: + place_id: ChIJW_dCYigzxEcRyWUzz1U1IPU + name: Centrale Bibliotheek Rotterdam + fetch_timestamp: '2025-11-28T12:24:42.506249+00:00' + api_status: OK + coordinates: + latitude: 51.9210943 + longitude: 4.489188599999999 + formatted_address: Hoogstraat 110, 3011 MA Rotterdam + short_address: Hoogstraat 110, Rotterdam + address_components: + - long_name: '110' + short_name: '110' + types: + - street_number + - long_name: Hoogstraat + short_name: Hoogstraat + types: + - route + - long_name: Centrum + short_name: Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Rotterdam + short_name: Rotterdam + types: + - locality + - political + - long_name: Rotterdam + short_name: Rotterdam + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3011 MA + short_name: 3011 MA + types: + - postal_code + phone_local: 010 281 6100 + phone_international: +31 10 281 6100 + website: https://www.bibliotheek.rotterdam.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: CLOSED_TEMPORARILY + rating: 4.3 + total_ratings: 740 + google_maps_url: https://maps.google.com/?cid=17663176381211829705&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rotterdam, Rotterdam, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T17:00:00+00:00' + source_url: https://www.bibliotheek.rotterdam.nl/ + organization_type: Openbare Bibliotheek (Public Library) + description: >- + Bibliotheek Rotterdam is one of the largest and most iconic public libraries in the + Netherlands. The Centrale Bibliotheek (Central Library) is a futuristic building designed + by Van den Broek and Bakema (Jaap Bakema and Hans Boot) with striking bright yellow + exterior pipes (the air-conditioning system). The library serves the second largest city + in the Netherlands. + building: + architect: Van den Broek en Bakema (Jaap Bakema, Hans Boot) + opened: 1983 + total_area: 24,000 square meters + floors: 6 + distinctive_features: + - Yellow steel tubing running from roof (HVAC system) + - Glass "waterfall" with crisscrossing escalators + - Block of stacked terraces with cascading cut-off corner + renovation_project: + architect: Snøhetta (2022 design) + concepts: + - Reveal (Openbaren) - exposing hidden interior spaces + - New Waterfall (Nieuwe Waterval) - new tower replacing old escalators + network: + branches: 23 locations throughout Rotterdam + central_library: Centrale Bibliotheek Rotterdam (Hoogstraat 110) + annual_users: 3+ million + collections: + books: 1+ million + special_collections: + - Erasmus Collection + multimedia: Extensive collection + technology: + library_system: OCLC Wise + features: + - Customer activity tracking + - Targeted marketing for events + - Community engagement tools + services: + - Reading and education + - Art and culture introduction + - Community meeting and debate + - Thousands of annual events + - Information services + - Study areas and workplaces + quote: >- + "We're not only about reading and education, but also about art, about community, + about debate, and about whatever you need to be a wise citizen." - Theo Kemperman, + Former General Director + current_status: CLOSED_TEMPORARILY (renovation/reconstruction) + contact: + website: https://www.bibliotheek.rotterdam.nl/ + phone: +31 10 281 6100 + address: Hoogstraat 110, 3011 MA Rotterdam + enrichment_method: exa_web_search diff --git a/data/nde/enriched/entries/1376_kb_isil.yaml b/data/nde/enriched/entries/1376_kb_isil.yaml new file mode 100644 index 0000000000..be23c5876a --- /dev/null +++ b/data/nde/enriched/entries/1376_kb_isil.yaml @@ -0,0 +1,218 @@ +original_entry: + plaatsnaam_bezoekadres: Den Haag + organisatie: Bibliotheek Den Haag + type_organisatie: bibliotheek + isil_code_kb: NL-0800270000 + type: + - L +entry_index: 1376 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800270000 + name: Bibliotheek Den Haag + city: Den Haag + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q58449006 + wikidata_label: Centrale Bibliotheek Den Haag + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek Den Haag + fetch_timestamp: '2025-11-28T12:22:39.062931+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.07743115 + longitude: 4.315999145 + wikidata_identifiers: + Website: https://www.bibliotheekdenhaag.nl/Bibliotheken/Adressen-en-openingstijden/Centrale-Bibliotheek.htm +google_maps_enrichment: + place_id: ChIJ6fiDoyO3xUcR5_5hZ29r5NA + name: Centrale Bibliotheek + fetch_timestamp: '2025-11-28T12:24:43.169611+00:00' + api_status: OK + coordinates: + latitude: 52.0774671 + longitude: 4.3161551 + formatted_address: Spui 68, 2511 BT Den Haag + short_address: Spui 68, Den Haag + address_components: + - long_name: '68' + short_name: '68' + types: + - street_number + - long_name: Spui + short_name: Spui + types: + - route + - long_name: Centrum + short_name: Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - locality + - political + - long_name: Den Haag + short_name: Den Haag + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2511 BT + short_name: 2511 BT + types: + - postal_code + phone_local: 070 353 4455 + phone_international: +31 70 353 4455 + website: http://bibliotheekdenhaag.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 18 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 21 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 18 + minute: 0 + weekday_text: + - 'maandag: 10:00â21:00' + - 'dinsdag: 10:00â21:00' + - 'woensdag: 10:00â21:00' + - 'donderdag: 10:00â21:00' + - 'vrijdag: 10:00â21:00' + - 'zaterdag: 10:00â18:00' + - 'zondag: 10:00â18:00' + rating: 4.4 + total_ratings: 511 + google_maps_url: https://maps.google.com/?cid=15052273980799057639&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Den Haag, Den Haag, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:30:00+00:00' + source: exa_web_search + search_query: Bibliotheek Den Haag official website services collections + description: >- + Bibliotheek Den Haag is the public library system serving The Hague, housed in a striking + Richard Meier-designed building on the Spui. The Central Library spans 6 floors with over + 2.5 million visitors annually, making it one of the largest and most visited public libraries + in the Netherlands. + building: + architect: Richard Meier + year_opened: 1995 + style: Modern/Contemporary + features: + - Six floors of library space + - Iconic white modernist architecture + - Located on the Spui in city center + - Large atrium with natural light + services: + - Book lending and returns + - Digital library access (e-books, audiobooks) + - Study spaces and reading rooms + - Computer and internet access + - Printing and copying facilities + - Meeting rooms for hire + - Cultural programming and events + - Children's library section + - Language learning resources + - Job application support + collections: + - General fiction and non-fiction + - Children's and young adult books + - Foreign language materials + - Newspapers and magazines + - Music CDs and DVDs + - E-books and digital audiobooks + - Local history collection (The Hague) + digital_platforms: + - name: Online Catalog + url: https://www.bibliotheekdenhaag.nl/ + - name: Digital Library (e-books) + url: https://www.bibliotheekdenhaag.nl/digitale-bibliotheek + programs: + - Reading promotion for all ages + - Laaggeletterdheid (low literacy) programs + - Digital skills training + - Cultural events and author readings + - Children's reading programs + network: + locations: 27 locations across The Hague + central_library: Centrale Bibliotheek, Spui 68 + annual_visitors: 2,500,000+ + organization_type: Public Library System diff --git a/data/nde/enriched/entries/1377_kb_isil.yaml b/data/nde/enriched/entries/1377_kb_isil.yaml new file mode 100644 index 0000000000..f3606ba1db --- /dev/null +++ b/data/nde/enriched/entries/1377_kb_isil.yaml @@ -0,0 +1,163 @@ +original_entry: + plaatsnaam_bezoekadres: Schiedam + organisatie: Bibliotheek Schiedam + type_organisatie: bibliotheek + isil_code_kb: NL-0800330000 + type: + - L +entry_index: 1377 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800330000 + name: Bibliotheek Schiedam + city: Schiedam + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915691 + wikidata_label: Bibliotheek Schiedam Korenbeurs + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek Waterweg, de openbare bibliotheekvoorziening in de gemeente Schiedam + fetch_timestamp: '2025-11-28T12:22:39.063980+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.9176272 + longitude: 4.3962976 + wikidata_identifiers: + Website: https://www.debibliotheekschiedam.nl/locaties-en-openingstijden/centrum-korenbeurs +google_maps_enrichment: + place_id: ChIJyxHviBU1xEcRltAWtp8k48U + name: de Bibliotheek Schiedam in de Korenbeurs + fetch_timestamp: '2025-11-28T12:24:43.812972+00:00' + api_status: OK + coordinates: + latitude: 51.9176596 + longitude: 4.396278500000001 + formatted_address: Lange Haven 145, 3111 CD Schiedam + short_address: Lange Haven 145, Schiedam + address_components: + - long_name: '145' + short_name: '145' + types: + - street_number + - long_name: Lange Haven + short_name: Lange Haven + types: + - route + - long_name: Schiedam + short_name: Schiedam + types: + - locality + - political + - long_name: Schiedam + short_name: Schiedam + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3111 CD + short_name: 3111 CD + types: + - postal_code + phone_local: 010 714 6300 + phone_international: +31 10 714 6300 + website: https://www.debibliotheekschiedam.nl/ + google_place_types: + - library + - garden + - park + - pub + - bar + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 10:00â17:00' + rating: 4.6 + total_ratings: 208 + google_maps_url: https://maps.google.com/?cid=14259281113558470806&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Schiedam, Schiedam, Netherlands diff --git a/data/nde/enriched/entries/1378_kb_isil.yaml b/data/nde/enriched/entries/1378_kb_isil.yaml new file mode 100644 index 0000000000..7820f9df9d --- /dev/null +++ b/data/nde/enriched/entries/1378_kb_isil.yaml @@ -0,0 +1,210 @@ +original_entry: + plaatsnaam_bezoekadres: Maastricht + organisatie: Bibliotheek Maastricht Centre CĂŠramique + type_organisatie: bibliotheek + isil_code_kb: NL-0800790000 + type: + - L +entry_index: 1378 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800790000 + name: Bibliotheek Maastricht Centre CĂŠramique + city: Maastricht + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q60224581 + wikidata_label: Bibliotheek Maastricht Centrum + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Centre CĂŠramique, + de openbare bibliotheekvoorziening van de gemeente Maastricht + fetch_timestamp: '2025-11-28T12:22:39.065017+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 50.8459909 + longitude: 5.7010801 + wikidata_identifiers: + Website: https://bibliotheek.centreceramique.nl/openingstijden-adres-en-route?active=1 +google_maps_enrichment: + place_id: ChIJvfMZGZbpwEcRi1G2woZG93A + name: Stadsbibliotheek Maastricht + fetch_timestamp: '2025-11-28T12:24:44.527319+00:00' + api_status: OK + coordinates: + latitude: 50.8459977 + longitude: 5.7010141999999995 + formatted_address: Centre Ceramique, Avenue Ceramique 50, 6221 JP Maastricht + short_address: Centre Ceramique, Avenue Ceramique 50, Maastricht + address_components: + - long_name: Centre Ceramique + short_name: Centre Ceramique + types: + - premise + - long_name: '50' + short_name: '50' + types: + - street_number + - long_name: Avenue Ceramique + short_name: Avenue Ceramique + types: + - route + - long_name: Maastricht-Centrum + short_name: Maastricht-Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Maastricht + short_name: Maastricht + types: + - locality + - political + - long_name: Maastricht + short_name: Maastricht + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6221 JP + short_name: 6221 JP + types: + - postal_code + phone_local: 043 350 5600 + phone_international: +31 43 350 5600 + website: https://bibliotheek.centreceramique.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 10:00â17:00' + rating: 4.4 + total_ratings: 97 + google_maps_url: https://maps.google.com/?cid=8140052396101751179&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Maastricht Centre CĂŠramique, Maastricht, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:30:00+00:00' + source: exa_web_search + search_query: Bibliotheek Maastricht Centre CĂŠramique official website + description: >- + Bibliotheek Maastricht is housed in Centre CĂŠramique, a cultural center on the banks of + the Maas river opened in 1999. The building combines the public library with the city + archives (Regionaal Historisch Centrum Limburg) and exhibition spaces. The library holds + over 250,000 items and serves as a cultural hub for the Maastricht region. + building: + name: Centre CĂŠramique + architect: Jo Coenen + year_opened: 1999 + style: Contemporary + features: + - Located on Avenue CĂŠramique along the Maas river + - Part of CĂŠramique district urban development + - Integrated cultural center with library, archives, exhibitions + - Modern architecture with river views + services: + - Book lending and digital library + - Study spaces and reading rooms + - Computer and internet access + - Cultural programming and exhibitions + - Children's library + - Integration with city archives (RHCL) + - Meeting and event spaces + collections: + - General lending collection (250,000+ items) + - Regional history and Limburg heritage + - Children's and young adult materials + - Newspapers and periodicals + - Music and audiovisual materials + - E-books and digital resources + digital_platforms: + - name: Library Catalog + url: https://bibliotheek.centreceramique.nl/ + - name: Centre CĂŠramique Portal + url: https://www.centreceramique.nl/ + programs: + - Cultural events and exhibitions + - Reading promotion programs + - Children's activities + - Heritage and history programs (with RHCL) + network: + branches: Multiple locations in Maastricht region + central_library: Centre CĂŠramique, Avenue CĂŠramique 50 + founded: 1999 (current building) + organization_type: Public Library (Cultural Center) diff --git a/data/nde/enriched/entries/1379_kb_isil.yaml b/data/nde/enriched/entries/1379_kb_isil.yaml new file mode 100644 index 0000000000..5b8e706a60 --- /dev/null +++ b/data/nde/enriched/entries/1379_kb_isil.yaml @@ -0,0 +1,202 @@ +original_entry: + plaatsnaam_bezoekadres: Haarlem + organisatie: Bibliotheek Zuid-Kennemerland + type_organisatie: bibliotheek + isil_code_kb: NL-0800950000 + type: + - L +entry_index: 1379 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800950000 + name: Bibliotheek Zuid-Kennemerland + city: Haarlem + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61610852 + wikidata_label: Hoofdkantoor Stichting Bibliotheek Zuid-Kennemerland + wikidata_description: Hoofdkantoor/hoofdkwartier van Stichting Bibliotheek Zuid-Kennemerland, + de openbare bibliotheekvoorziening in de regio Zuid-Kennemerland, Nederland + fetch_timestamp: '2025-11-28T12:22:39.066058+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.38054 + longitude: 4.63066 + wikidata_identifiers: + Website: https://www.bibliotheekzuidkennemerland.nl/klantenservice/openingstijden-adressen/detail.163939.html +google_maps_enrichment: + place_id: ChIJz6sEoZrvxUcRYW2Wysl9j28 + name: de Bibliotheek Haarlem Noord + fetch_timestamp: '2025-11-28T12:24:45.248093+00:00' + api_status: OK + coordinates: + latitude: 52.4084614 + longitude: 4.6483656 + formatted_address: Planetenlaan 170, 2024 EX Haarlem + short_address: Planetenlaan 170, Haarlem + address_components: + - long_name: '170' + short_name: '170' + types: + - street_number + - long_name: Planetenlaan + short_name: Planetenlaan + types: + - route + - long_name: Ter Kleef en Te Zaanen + short_name: Ter Kleef en Te Zaanen + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Haarlem + short_name: Haarlem + types: + - locality + - political + - long_name: Haarlem + short_name: Haarlem + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2024 EX + short_name: 2024 EX + types: + - postal_code + phone_local: 023 511 5300 + phone_international: +31 23 511 5300 + website: https://www.bibliotheekzuidkennemerland.nl/ + google_place_types: + - library + - internet_cafe + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 10:00â20:00' + - 'dinsdag: 10:00â17:30' + - 'woensdag: 10:00â17:30' + - 'donderdag: 10:00â17:30' + - 'vrijdag: 10:00â17:30' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 63 + google_maps_url: https://maps.google.com/?cid=8038782165520379233&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Zuid-Kennemerland, Haarlem, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:30:00+00:00' + source: exa_web_search + search_query: Bibliotheek Zuid-Kennemerland Haarlem official website history + description: >- + Stichting Bibliotheek Zuid-Kennemerland is one of the oldest public library systems in + the Netherlands, with roots dating back to 1596 when the Haarlem City Library was founded. + Today it operates 12 locations across the Zuid-Kennemerland region, serving Haarlem and + surrounding municipalities with approximately 950,000 visitors annually. + history: + founded: 1596 (Haarlem City Library) + modern_foundation: Stichting Bibliotheek Zuid-Kennemerland + significance: One of the oldest public libraries in the Netherlands + services: + - Book lending and digital library + - Study spaces and work areas + - Computer and internet access + - Information services + - Children's library sections + - Cultural programming + - Reading promotion activities + - Language courses and integration support + collections: + - General lending collection + - Children's and young adult materials + - Local history and heritage (Haarlem region) + - Newspapers and magazines + - Music and audiovisual materials + - E-books and digital audiobooks + digital_platforms: + - name: Library Website + url: https://www.bibliotheekzuidkennemerland.nl/ + - name: Online Catalog + url: https://www.bibliotheekzuidkennemerland.nl/catalogus + programs: + - VoorleesExpress (reading aloud program) + - BoekStart for babies and toddlers + - Klik & Tik (digital skills) + - Cultural programming and author events + network: + locations: 12 branches + service_area: Zuid-Kennemerland region (Haarlem, Bloemendaal, Heemstede, Zandvoort) + annual_visitors: 950,000+ + organization_type: Public Library Foundation (Stichting) diff --git a/data/nde/enriched/entries/1380_kb_isil.yaml b/data/nde/enriched/entries/1380_kb_isil.yaml new file mode 100644 index 0000000000..0b03882854 --- /dev/null +++ b/data/nde/enriched/entries/1380_kb_isil.yaml @@ -0,0 +1,219 @@ +original_entry: + plaatsnaam_bezoekadres: Eindhoven + organisatie: Bibliotheek Eindhoven + type_organisatie: bibliotheek + isil_code_kb: NL-0800960000 + type: + - L +entry_index: 1380 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0800960000 + name: Bibliotheek Eindhoven + city: Eindhoven + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q22005966 + wikidata_label: Bibliotheek Eindhoven, locatie De Witte Dame, centrum Eindhoven + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek Eindhoven in het gebouw De Witte Dame in het centrum van de stad + fetch_timestamp: '2025-11-28T12:22:39.067581+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.4394388 + longitude: 5.4747474 + wikidata_identifiers: + Website: https://www.bibliotheekeindhoven.nl/over-ons/openingstijden/detail.163860.html +google_maps_enrichment: + place_id: ChIJP0Fl3ATZxkcRnUvd6kviVpA + name: Openbare Bibliotheek Eindhoven + fetch_timestamp: '2025-11-28T12:24:45.872327+00:00' + api_status: OK + coordinates: + latitude: 51.43904 + longitude: 5.4743071 + formatted_address: Emmasingel 22, 5611 XP Eindhoven + short_address: Emmasingel 22, Eindhoven + address_components: + - long_name: '22' + short_name: '22' + types: + - street_number + - long_name: Emmasingel + short_name: Emmasingel + types: + - route + - long_name: Centrum + short_name: Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Eindhoven + short_name: Eindhoven + types: + - locality + - political + - long_name: Eindhoven + short_name: Eindhoven + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5611 XP + short_name: 5611 XP + types: + - postal_code + phone_local: 040 260 4260 + phone_international: +31 40 260 4260 + website: http://www.bibliotheekeindhoven.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 13 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 19 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 19 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 19 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 19 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 19 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â19:00' + - 'dinsdag: 10:00â19:00' + - 'woensdag: 10:00â19:00' + - 'donderdag: 10:00â19:00' + - 'vrijdag: 10:00â19:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 13:00â17:00' + rating: 4.1 + total_ratings: 246 + google_maps_url: https://maps.google.com/?cid=10400749205149535133&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Eindhoven, Eindhoven, Netherlands +website_enrichment: + fetch_timestamp: '2025-11-28T14:30:00+00:00' + source: exa_web_search + search_query: Bibliotheek Eindhoven Witte Dame official website + description: >- + Bibliotheek Eindhoven is the public library system for Eindhoven and surrounding area, + with its main branch housed in the iconic De Witte Dame (The White Lady) building. This + former Philips factory was transformed into a cultural center and has become a symbol of + Eindhoven's transformation from industrial city to design and technology hub. The library + is known for its innovative approach to design thinking and creative programming. + building: + name: De Witte Dame (The White Lady) + original_use: Philips Light Bulb Factory + year_built: 1930 + renovation: 1998 (converted to cultural center) + architect_renovation: Bert Dirrix + features: + - Former industrial heritage building + - Symbol of Eindhoven's industrial past + - Part of Strijp-S creative district connection + - Modern interior in historic shell + services: + - Book lending and digital library + - Design thinking workshops + - Maker spaces and creative facilities + - Study and co-working spaces + - Computer and internet access + - Cultural programming and events + - Children's library + - Innovation and technology programs + collections: + - General lending collection + - Design and technology focus + - Children's and young adult materials + - Digital resources and e-books + - Newspapers and periodicals + - Music and audiovisual materials + digital_platforms: + - name: Library Website + url: https://www.bibliotheekeindhoven.nl/ + - name: Online Catalog + url: https://www.bibliotheekeindhoven.nl/catalogus + programs: + - Design thinking and innovation workshops + - Technology and maker programs + - Reading promotion for all ages + - Children's programming + - Cultural events and exhibitions + - Digital skills training + network: + locations: Multiple branches across Eindhoven + central_library: De Witte Dame, Emmasingel 22 + service_area: Eindhoven and surrounding municipalities + organization_type: Public Library (Innovation Focus) diff --git a/data/nde/enriched/entries/1381_kb_isil.yaml b/data/nde/enriched/entries/1381_kb_isil.yaml new file mode 100644 index 0000000000..6c85c857dd --- /dev/null +++ b/data/nde/enriched/entries/1381_kb_isil.yaml @@ -0,0 +1,177 @@ +original_entry: + plaatsnaam_bezoekadres: Groningen + organisatie: Forum Bibliotheek Groningen + type_organisatie: bibliotheek + isil_code_kb: NL-0802880000 + type: + - L +entry_index: 1381 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0802880000 + name: Forum Bibliotheek Groningen + city: Groningen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q60221508 + wikidata_label: Forumbibliotheek Groningen Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Groninger + Forum, de openbare bibliotheekvoorziening van de gemeente Groningen + fetch_timestamp: '2025-11-28T12:22:39.069146+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 53.218833333 + longitude: 6.570083333 + wikidata_identifiers: + Website: https://forum.nl/nl/forumbibliotheek-centrum +google_maps_enrichment: + place_id: ChIJ3RqKRFDNyUcREKqf_-WbEzs + name: Forum Groningen + fetch_timestamp: '2025-11-28T12:24:46.555237+00:00' + api_status: OK + coordinates: + latitude: 53.2190227 + longitude: 6.5703667999999995 + formatted_address: Nieuwe Markt 1, 5e verdieping, 9712 KN Groningen + short_address: Groninger Forum, Nieuwe Markt 1, 5e verdieping, Groningen + address_components: + - long_name: 5e verdieping + short_name: 5e verdieping + types: + - subpremise + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Nieuwe Markt + short_name: Nieuwe Markt + types: + - route + - long_name: Binnenstad + short_name: Binnenstad + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Groningen + short_name: Groningen + types: + - locality + - political + - long_name: Groningen + short_name: Groningen + types: + - administrative_area_level_2 + - political + - long_name: Groningen + short_name: GR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9712 KN + short_name: 9712 KN + types: + - postal_code + phone_local: 050 368 3683 + phone_international: +31 50 368 3683 + website: http://www.forum.nl/ + google_place_types: + - cultural_center + - movie_theater + - tourist_information_center + - museum + - tour_agency + - travel_agency + - library + - restaurant + - food + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 23 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 22 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 22 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 22 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 22 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 23 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 23 + minute: 0 + weekday_text: + - 'maandag: 09:00â22:00' + - 'dinsdag: 09:00â22:00' + - 'woensdag: 09:00â22:00' + - 'donderdag: 09:00â22:00' + - 'vrijdag: 09:00â23:00' + - 'zaterdag: 09:00â23:00' + - 'zondag: 10:00â23:00' + rating: 4.6 + total_ratings: 5768 + google_maps_url: https://maps.google.com/?cid=4256917484933720592&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Forum Bibliotheek Groningen, Groningen, Netherlands diff --git a/data/nde/enriched/entries/1382_kb_isil.yaml b/data/nde/enriched/entries/1382_kb_isil.yaml new file mode 100644 index 0000000000..77d3c24e3f --- /dev/null +++ b/data/nde/enriched/entries/1382_kb_isil.yaml @@ -0,0 +1,166 @@ +original_entry: + plaatsnaam_bezoekadres: Enschede + organisatie: H.B. Blijdensteinstichting Bibliotheek Enschede-Haaksbergen + type_organisatie: bibliotheek + isil_code_kb: NL-0807580000 + type: + - L +entry_index: 1382 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0807580000 + name: H.B. Blijdensteinstichting Bibliotheek Enschede-Haaksbergen + city: Enschede + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q28925574 + wikidata_label: Centrale bibliotheek Enschede + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de openbare + bibliotheek Enschede, Nederland + fetch_timestamp: '2025-11-28T12:22:39.070022+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.2191018 + longitude: 6.8933855 + wikidata_identifiers: + Website: https://www.bibliotheekenschede.nl/service/vestigingen-en-openingstijden#163875 +google_maps_enrichment: + place_id: ChIJJW5IG3QUuEcR5ltrb0F0ot8 + name: de Bibliotheek Enschede Centrale + fetch_timestamp: '2025-11-28T12:24:47.233836+00:00' + api_status: OK + coordinates: + latitude: 52.2190845 + longitude: 6.893422 + formatted_address: Pijpenstraat 15, 7511 GM Enschede + short_address: Pijpenstraat 15, Enschede + address_components: + - long_name: '15' + short_name: '15' + types: + - street_number + - long_name: Pijpenstraat + short_name: Pijpenstraat + types: + - route + - long_name: Binnensingelgebied + short_name: Binnensingelgebied + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Enschede + short_name: Enschede + types: + - locality + - political + - long_name: Enschede + short_name: Enschede + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7511 GM + short_name: 7511 GM + types: + - postal_code + phone_local: 053 480 4804 + phone_international: +31 53 480 4804 + website: http://www.bibliotheekenschede.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â21:00' + - 'dinsdag: 09:00â21:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: 12:00â17:00' + rating: 4.5 + total_ratings: 158 + google_maps_url: https://maps.google.com/?cid=16114570241076059110&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: H.B. Blijdensteinstichting Bibliotheek Enschede-Haaksbergen, + Enschede, Netherlands diff --git a/data/nde/enriched/entries/1383_kb_isil.yaml b/data/nde/enriched/entries/1383_kb_isil.yaml new file mode 100644 index 0000000000..da9e5259c2 --- /dev/null +++ b/data/nde/enriched/entries/1383_kb_isil.yaml @@ -0,0 +1,162 @@ +original_entry: + plaatsnaam_bezoekadres: Nijmegen + organisatie: Bibliotheek Gelderland Zuid + type_organisatie: bibliotheek + isil_code_kb: NL-0807870000 + type: + - L +entry_index: 1383 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0807870000 + name: Bibliotheek Gelderland Zuid + city: Nijmegen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962187 + wikidata_label: Bibliotheek Gelderland Zuid + wikidata_description: bibliotheekorganisatie in de regio Gelderland Zuid, gemeenten + Beuningen, Berg en Dal, Heumen, Lingewaard, Nijmegen en Overbetuwe, Nederland + fetch_timestamp: '2025-11-28T12:22:39.071244+00:00' + match_method: isil_code_match + wikidata_identifiers: + Website: https://www.obgz.nl/ +google_maps_enrichment: + place_id: ChIJkxyVG0UIx0cRnG7obXNT5cY + name: Bibliotheek Gelderland Zuid / Bibliotheek MariĂŤnburg (OBGZ) đ + fetch_timestamp: '2025-11-28T12:24:47.910642+00:00' + api_status: OK + coordinates: + latitude: 51.845366 + longitude: 5.8668258 + formatted_address: MariĂŤnburg 29, 6511 PS Nijmegen + short_address: MariĂŤnburg 29, Nijmegen + address_components: + - long_name: '29' + short_name: '29' + types: + - street_number + - long_name: MariĂŤnburg + short_name: MariĂŤnburg + types: + - route + - long_name: Nijmegen-Centrum + short_name: Nijmegen-Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Nijmegen + short_name: Nijmegen + types: + - locality + - political + - long_name: Nijmegen + short_name: Nijmegen + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6511 PS + short_name: 6511 PS + types: + - postal_code + phone_local: 024 327 4911 + phone_international: +31 24 327 4911 + website: http://www.obgz.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 19 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 19 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 21 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 19 + minute: 0 + weekday_text: + - 'maandag: 09:00â19:00' + - 'dinsdag: 09:00â19:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â21:00' + - 'zaterdag: 09:00â19:00' + - 'zondag: 12:00â17:00' + rating: 4.3 + total_ratings: 143 + google_maps_url: https://maps.google.com/?cid=14331953144406765212&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Gelderland Zuid, Nijmegen, Netherlands diff --git a/data/nde/enriched/entries/1384_kb_isil.yaml b/data/nde/enriched/entries/1384_kb_isil.yaml new file mode 100644 index 0000000000..8d6499cddd --- /dev/null +++ b/data/nde/enriched/entries/1384_kb_isil.yaml @@ -0,0 +1,160 @@ +original_entry: + plaatsnaam_bezoekadres: Amstelveen + organisatie: Bibliotheek Amstelland + type_organisatie: bibliotheek + isil_code_kb: NL-0807880000 + type: + - L +entry_index: 1384 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0807880000 + name: Bibliotheek Amstelland + city: Amstelveen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915720 + wikidata_label: Bibliotheek Amstelveen Stadsplein + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Amstelland Bibliotheken, de openbare bibliotheekvoorziening in de gemeenten Amstelveen, + Aalsmeer en Uithoorn, + fetch_timestamp: '2025-11-28T12:22:39.071960+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3031455 + longitude: 4.8582323 + wikidata_identifiers: + Website: https://www.debibliotheekamstelland.nl/klantenservice/openingstijden/openingstijden-detail.199267.html/bibliotheek-amstelveen-stadsplein/ +google_maps_enrichment: + place_id: ChIJZVQ3a4AKxkcRYT5t2_6Ipm4 + name: Bibliotheek Amstelveen + fetch_timestamp: '2025-11-28T12:24:48.569241+00:00' + api_status: OK + coordinates: + latitude: 52.3029404 + longitude: 4.8589799 + formatted_address: Stadsplein 102, 1181 ZM Amstelveen + short_address: Stadsplein 102, Amstelveen + address_components: + - long_name: '102' + short_name: '102' + types: + - street_number + - long_name: Stadsplein + short_name: Stadsplein + types: + - route + - long_name: Amstelveen + short_name: Amstelveen + types: + - locality + - political + - long_name: Amstelveen + short_name: Amstelveen + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1181 ZM + short_name: 1181 ZM + types: + - postal_code + phone_local: 020 641 4126 + phone_international: +31 20 641 4126 + website: http://www.debibliotheekamstelland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 18 + minute: 0 + weekday_text: + - 'maandag: 10:00â18:00' + - 'dinsdag: 10:00â18:00' + - 'woensdag: 10:00â18:00' + - 'donderdag: 10:00â21:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 10:00â18:00' + - 'zondag: 12:00â17:00' + rating: 4.4 + total_ratings: 159 + google_maps_url: https://maps.google.com/?cid=7973210818490482273&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Amstelland, Amstelveen, Netherlands diff --git a/data/nde/enriched/entries/1385_kb_isil.yaml b/data/nde/enriched/entries/1385_kb_isil.yaml new file mode 100644 index 0000000000..fe781634ac --- /dev/null +++ b/data/nde/enriched/entries/1385_kb_isil.yaml @@ -0,0 +1,159 @@ +original_entry: + plaatsnaam_bezoekadres: Breda + organisatie: Nieuwe Veste + type_organisatie: bibliotheek + isil_code_kb: NL-0807890000 + type: + - L +entry_index: 1385 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0807890000 + name: Nieuwe Veste + city: Breda + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q60233737 + wikidata_label: Bibliotheek Breda Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek Breda in gebouw De Nieuwe Veste in het centrum van Breda + fetch_timestamp: '2025-11-28T12:22:39.072851+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.58766 + longitude: 4.77856 + wikidata_inception: '1993-01-01' + wikidata_identifiers: + Website: https://www.bibliotheekbreda.nl/iguana/www.main.cls?surl=Centrum +google_maps_enrichment: + place_id: ChIJfaS2x4CfxkcR9HgLnUut7Gs + name: Nieuwe Veste + fetch_timestamp: '2025-11-28T12:24:49.342969+00:00' + api_status: OK + coordinates: + latitude: 51.587736899999996 + longitude: 4.778665 + formatted_address: Molenstraat 6, 4811 GS Breda + short_address: Molenstraat 6, Breda + address_components: + - long_name: '6' + short_name: '6' + types: + - street_number + - long_name: Molenstraat + short_name: Molenstraat + types: + - route + - long_name: Breda Centrum + short_name: Breda Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Breda + short_name: Breda + types: + - locality + - political + - long_name: Breda + short_name: Breda + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4811 GS + short_name: 4811 GS + types: + - postal_code + phone_local: 076 200 3200 + phone_international: +31 76 200 3200 + website: https://www.nieuweveste.nl/?pk_campaign=NV_centrum&pk_source=Google&pk_medium=MijnBedrijf + google_place_types: + - cultural_center + - library + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 22 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 22 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 22 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 22 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 22 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â22:00' + - 'dinsdag: 08:30â22:00' + - 'woensdag: 08:30â22:00' + - 'donderdag: 08:30â22:00' + - 'vrijdag: 08:30â22:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 60 + google_maps_url: https://maps.google.com/?cid=7776781196830931188&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Nieuwe Veste, Breda, Netherlands diff --git a/data/nde/enriched/entries/1386_kb_isil.yaml b/data/nde/enriched/entries/1386_kb_isil.yaml new file mode 100644 index 0000000000..79480972c7 --- /dev/null +++ b/data/nde/enriched/entries/1386_kb_isil.yaml @@ -0,0 +1,153 @@ +original_entry: + plaatsnaam_bezoekadres: Capelle aan den IJssel + organisatie: Bibliotheek Capelle aan den IJssel + type_organisatie: bibliotheek + isil_code_kb: NL-0830720000 + type: + - L +entry_index: 1386 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830720000 + name: Bibliotheek Capelle aan den IJssel + city: Capelle aan den IJssel + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915725 + wikidata_label: Bibliotheek Capelle Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek aan den IJssel, de openbare bibliotheekvoorziening in de gemeenten + Capelle aan den IJssel en Krimpen aan den IJssel + fetch_timestamp: '2025-11-28T12:22:39.075556+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.9317043 + longitude: 4.5886421 + wikidata_identifiers: + Website: https://www.bibliotheekaandenijssel.nl/service-contact/Locaties-openingstijden/detail.199781.html/bibliotheek-capelle-centrum/ +google_maps_enrichment: + place_id: ChIJjWEowVQtxEcR0GxCmDbP1m0 + name: Bibliotheek aan den IJssel - Capelle Centrum + fetch_timestamp: '2025-11-28T12:24:50.029441+00:00' + api_status: OK + coordinates: + latitude: 51.9317138 + longitude: 4.5886527 + formatted_address: Stadsplein 39, 2903 HH Capelle aan den IJssel + short_address: Stadsplein 39, Capelle aan den IJssel + address_components: + - long_name: '39' + short_name: '39' + types: + - street_number + - long_name: Stadsplein + short_name: Stadsplein + types: + - route + - long_name: Capelle aan den IJssel + short_name: Capelle aan den IJssel + types: + - locality + - political + - long_name: Capelle aan Den IJssel + short_name: Capelle aan Den IJssel + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2903 HH + short_name: 2903 HH + types: + - postal_code + phone_local: 010 450 3244 + phone_international: +31 10 450 3244 + website: http://www.bibliotheekaandenijssel.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 30 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â20:30' + - 'woensdag: 10:00â20:30' + - 'donderdag: 10:00â20:30' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â15:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 47 + google_maps_url: https://maps.google.com/?cid=7914741228539899088&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Capelle aan den IJssel, Capelle aan den IJssel, + Netherlands diff --git a/data/nde/enriched/entries/1387_kb_isil.yaml b/data/nde/enriched/entries/1387_kb_isil.yaml new file mode 100644 index 0000000000..6d0fbdc1e5 --- /dev/null +++ b/data/nde/enriched/entries/1387_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Hardenberg + organisatie: Bibliotheek Hardenberg + type_organisatie: bibliotheek + isil_code_kb: NL-0830740000 + type: + - L +entry_index: 1387 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830740000 + name: Bibliotheek Hardenberg + city: Hardenberg + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915729 + wikidata_label: Hoofdkantoor Stichting Openbare Bibliotheken Hardenberg + wikidata_description: Hoofdkantoor/hoofdkwartier van Stichting Openbare Bibliotheken + Hardenberg, de openbare bibliotheekvoorziening in de gemeente Hardenberg, Overijssel + fetch_timestamp: '2025-11-28T12:22:39.076584+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.5758295 + longitude: 6.6228007 + wikidata_identifiers: + Website: https://www.bibliotheekhardenberg.nl/over-de-bibliotheek/anbi +google_maps_enrichment: + place_id: ChIJNR3DZMQByEcRKO40pfJ6qBg + name: Stichting Openbare Bibliotheken Hardenberg + fetch_timestamp: '2025-11-28T12:24:50.776966+00:00' + api_status: OK + coordinates: + latitude: 52.5762947 + longitude: 6.6232796 + formatted_address: Parkweg 1a5, 7772 XP Hardenberg + short_address: Parkweg 1a5, Hardenberg + address_components: + - long_name: 1a5 + short_name: 1a5 + types: + - street_number + - long_name: Parkweg + short_name: Parkweg + types: + - route + - long_name: Hardenberg + short_name: Hardenberg + types: + - locality + - political + - long_name: Hardenberg + short_name: Hardenberg + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7772 XP + short_name: 7772 XP + types: + - postal_code + phone_local: 0523 270 271 + phone_international: +31 523 270 271 + website: http://www.bibliotheekhardenberg.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 12 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 10:00â20:00' + - 'dinsdag: 12:00â18:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 37 + google_maps_url: https://maps.google.com/?cid=1776805235570044456&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Hardenberg, Hardenberg, Netherlands diff --git a/data/nde/enriched/entries/1388_kb_isil.yaml b/data/nde/enriched/entries/1388_kb_isil.yaml new file mode 100644 index 0000000000..4a48111158 --- /dev/null +++ b/data/nde/enriched/entries/1388_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Hoogeveen + organisatie: Bibliotheek Hoogeveen + type_organisatie: bibliotheek + isil_code_kb: NL-0830760000 + type: + - L +entry_index: 1388 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830760000 + name: Bibliotheek Hoogeveen + city: Hoogeveen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764051 + wikidata_label: Bibliotheek Hoogeveen + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek Hoogeveen, de openbare bibliotheekvoorziening in de gemeente Hoogeveen, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.078045+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.7291871 + longitude: 6.4800902 + wikidata_identifiers: + Website: https://www.bibliotheekhoogeveen.nl/openingstijden +google_maps_enrichment: + place_id: ChIJHa4H_JEayEcRADoTalcGCxA + name: Bibliotheek Hoogeveen/Verhalenwerf + fetch_timestamp: '2025-11-28T12:24:51.439573+00:00' + api_status: OK + coordinates: + latitude: 52.729133 + longitude: 6.480067999999999 + formatted_address: Willemskade 27, 7902 AV Hoogeveen + short_address: Willemskade 27, Hoogeveen + address_components: + - long_name: '27' + short_name: '27' + types: + - street_number + - long_name: Willemskade + short_name: Willemskade + types: + - route + - long_name: Hoogeveen + short_name: Hoogeveen + types: + - locality + - political + - long_name: Hoogeveen + short_name: Hoogeveen + types: + - administrative_area_level_2 + - political + - long_name: Drenthe + short_name: DR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7902 AV + short_name: 7902 AV + types: + - postal_code + phone_local: 0528 268 131 + phone_international: +31 528 268 131 + website: http://www.bibliotheekhoogeveen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 90 + google_maps_url: https://maps.google.com/?cid=1156024701862230528&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Hoogeveen, Hoogeveen, Netherlands diff --git a/data/nde/enriched/entries/1389_kb_isil.yaml b/data/nde/enriched/entries/1389_kb_isil.yaml new file mode 100644 index 0000000000..76ced2f2f0 --- /dev/null +++ b/data/nde/enriched/entries/1389_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Nijverdal + organisatie: ZinIn Bibliotheek + type_organisatie: bibliotheek + isil_code_kb: NL-0830790000 + type: + - L +entry_index: 1389 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830790000 + name: ZinIn Bibliotheek + city: Nijverdal + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q76827038 + wikidata_label: Bibliotheek Nijverdal + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van ZINiN Bibliotheek + Hellendoorn-Nijverdal, de openbare bibliotheekvoorziening in de gemeente Hellendoorn + fetch_timestamp: '2025-11-28T12:22:39.079234+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3643464 + longitude: 6.461484 + wikidata_identifiers: + Website: https://www.zininbibliotheek.nl/bibliotheek/vestigingen-en-openingstijden#199707 +google_maps_enrichment: + place_id: ChIJwStysS77x0cRgjoYkM9bjj8 + name: Bibliotheek Nijverdal + fetch_timestamp: '2025-11-28T12:24:52.033602+00:00' + api_status: OK + coordinates: + latitude: 52.364298299999994 + longitude: 6.4613762 + formatted_address: Willem Alexanderstraat 7, 7442 MA Nijverdal + short_address: Willem Alexanderstraat 7, Nijverdal + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Willem Alexanderstraat + short_name: Willem Alexanderstraat + types: + - route + - long_name: Nijverdal + short_name: Nijverdal + types: + - locality + - political + - long_name: Hellendoorn + short_name: Hellendoorn + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7442 MA + short_name: 7442 MA + types: + - postal_code + phone_local: 0548 613 342 + phone_international: +31 548 613 342 + website: http://www.zininbibliotheek.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 30 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:30â17:00' + - 'dinsdag: 09:30â20:00' + - 'woensdag: 09:30â17:00' + - 'donderdag: 09:30â20:00' + - 'vrijdag: 09:30â17:00' + - 'zaterdag: 09:30â16:00' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 11 + google_maps_url: https://maps.google.com/?cid=4579698818116237954&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: ZinIn Bibliotheek, Nijverdal, Netherlands diff --git a/data/nde/enriched/entries/1390_kb_isil.yaml b/data/nde/enriched/entries/1390_kb_isil.yaml new file mode 100644 index 0000000000..f5c27a94d9 --- /dev/null +++ b/data/nde/enriched/entries/1390_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Raalte + organisatie: Bibliotheek Salland + type_organisatie: bibliotheek + isil_code_kb: NL-0830800000 + type: + - L +entry_index: 1390 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830800000 + name: Bibliotheek Salland + city: Raalte + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915741 + wikidata_label: Bibliotheek Raalte + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Salland, de openbare bibliotheekvoorziening in de gemeenten + Raalte en Olst-Wijhe, Overijssel + fetch_timestamp: '2025-11-28T12:22:39.080357+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3858869 + longitude: 6.2768179 + wikidata_identifiers: + Website: https://www.bibliotheeksalland.nl/bibliotheek/vestigingen-en-openingstijden#163928 +google_maps_enrichment: + place_id: ChIJ9ZpkseDlx0cR2JWcCXDoF6k + name: de Bibliotheek Salland (locatie Raalte) + fetch_timestamp: '2025-11-28T12:24:52.660537+00:00' + api_status: OK + coordinates: + latitude: 52.385864399999996 + longitude: 6.2766198 + formatted_address: Marktstraat 19, 8102 CH Raalte + short_address: Marktstraat 19, Raalte + address_components: + - long_name: '19' + short_name: '19' + types: + - street_number + - long_name: Marktstraat + short_name: Marktstraat + types: + - route + - long_name: Raalte + short_name: Raalte + types: + - locality + - political + - long_name: Raalte + short_name: Raalte + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8102 CH + short_name: 8102 CH + types: + - postal_code + phone_local: 085 760 6180 + phone_international: +31 85 760 6180 + website: http://www.bibliotheeksalland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 19 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 19 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 09:00â19:30' + - 'dinsdag: 09:00â17:30' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â17:30' + - 'vrijdag: 09:00â19:30' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 27 + google_maps_url: https://maps.google.com/?cid=12184462884769404376&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Salland, Raalte, Netherlands diff --git a/data/nde/enriched/entries/1391_kb_isil.yaml b/data/nde/enriched/entries/1391_kb_isil.yaml new file mode 100644 index 0000000000..27841b24a2 --- /dev/null +++ b/data/nde/enriched/entries/1391_kb_isil.yaml @@ -0,0 +1,159 @@ +original_entry: + plaatsnaam_bezoekadres: Steenwijk + organisatie: Bibliotheek Kop van Overijssel + type_organisatie: bibliotheek + isil_code_kb: NL-0830830000 + type: + - L +entry_index: 1391 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830830000 + name: Bibliotheek Kop van Overijssel + city: Steenwijk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q76827051 + wikidata_label: Bibliotheek Steenwijk + wikidata_description: Openbare bibliotheekvestiging te Steenwijk en tevens hoofdkantoor + van de Bibliotheek Kop van Overijssel + fetch_timestamp: '2025-11-28T12:22:39.081432+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.7873954 + longitude: 6.1237279 + wikidata_identifiers: + Website: https://www.bibliotheekkopvanoverijssel.nl/vestigingen-en-openingstijden#196727 +google_maps_enrichment: + place_id: ChIJeaF388ZuyEcRwvv0yfQudjo + name: Bibliotheek Steenwijk + fetch_timestamp: '2025-11-28T12:24:53.312386+00:00' + api_status: OK + coordinates: + latitude: 52.78732660000001 + longitude: 6.1239547 + formatted_address: Meppelerweg 47a, 8331 CS Steenwijk + short_address: Meppelerweg 47a, Steenwijk + address_components: + - long_name: 47a + short_name: 47a + types: + - street_number + - long_name: Meppelerweg + short_name: Meppelerweg + types: + - route + - long_name: Steenwijk + short_name: Steenwijk + types: + - locality + - political + - long_name: Steenwijkerland + short_name: Steenwijkerland + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8331 CS + short_name: 8331 CS + types: + - postal_code + phone_local: 0521 513 273 + phone_international: +31 521 513 273 + website: http://www.mijnbieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 14 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 30 + weekday_text: + - 'maandag: 10:00â17:30' + - 'dinsdag: 09:00â17:30' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:30' + - 'zaterdag: 10:00â14:30' + - 'zondag: 14:00â17:00' + rating: 4.6 + total_ratings: 34 + google_maps_url: https://maps.google.com/?cid=4212606130346851266&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Kop van Overijssel, Steenwijk, Netherlands diff --git a/data/nde/enriched/entries/1392_kb_isil.yaml b/data/nde/enriched/entries/1392_kb_isil.yaml new file mode 100644 index 0000000000..5a2ad25e93 --- /dev/null +++ b/data/nde/enriched/entries/1392_kb_isil.yaml @@ -0,0 +1,159 @@ +original_entry: + plaatsnaam_bezoekadres: Apeldoorn + organisatie: CODA + type_organisatie: bibliotheek + isil_code_kb: NL-0830860000 + type: + - L +entry_index: 1392 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830860000 + name: CODA + city: Apeldoorn + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q60222596 + wikidata_label: CODA Centrale Bibliotheek Apeldoorn + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van CODA Bibliotheek, + de openbare bibliotheekvoorziening van de gemeente Apeldoorn + fetch_timestamp: '2025-11-28T12:22:39.082302+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.21538 + longitude: 5.95845 + wikidata_identifiers: + Website: http://www.coda-apeldoorn.nl/nl/bibliotheek +google_maps_enrichment: + place_id: ChIJYat7doHHx0cRuM34tkanv7Q + name: CODA Centrale Bibliotheek + fetch_timestamp: '2025-11-28T12:24:53.996211+00:00' + api_status: OK + coordinates: + latitude: 52.2154354 + longitude: 5.9584487 + formatted_address: Vosselmanstraat 299, 7311 CL Apeldoorn + short_address: Vosselmanstraat 299, Apeldoorn + address_components: + - long_name: '299' + short_name: '299' + types: + - street_number + - long_name: Vosselmanstraat + short_name: Vosselmanstraat + types: + - route + - long_name: Apeldoorn + short_name: Apeldoorn + types: + - locality + - political + - long_name: Apeldoorn + short_name: Apeldoorn + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7311 CL + short_name: 7311 CL + types: + - postal_code + phone_local: 055 526 8400 + phone_international: +31 55 526 8400 + website: http://www.coda-apeldoorn.nl/bibliotheek/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 11 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 30 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â18:00' + - 'dinsdag: 09:00â20:30' + - 'woensdag: 09:00â18:00' + - 'donderdag: 09:00â20:30' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 09:30â17:00' + - 'zondag: 11:00â17:00' + rating: 3.7 + total_ratings: 112 + google_maps_url: https://maps.google.com/?cid=13024312569538071992&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek CODA, Apeldoorn, Netherlands diff --git a/data/nde/enriched/entries/1393_kb_isil.yaml b/data/nde/enriched/entries/1393_kb_isil.yaml new file mode 100644 index 0000000000..211d0353cf --- /dev/null +++ b/data/nde/enriched/entries/1393_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Deventer + organisatie: Bibliotheek Deventer + type_organisatie: bibliotheek + isil_code_kb: NL-0830870000 + type: + - L +entry_index: 1393 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830870000 + name: Bibliotheek Deventer + city: Deventer + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915686 + wikidata_label: Bibliotheek Enter + wikidata_description: Openbare bibliotheekvestiging in Enter, gemeente Wierden + fetch_timestamp: '2025-11-28T12:22:39.102620+00:00' + match_method: fuzzy_name_match + wikidata_coordinates: + latitude: 52.2956093 + longitude: 6.5792184 + wikidata_identifiers: + Website: https://www.bibliotheekwierden.nl/bibliotheek/vestigingen-en-openingstijden#196654 + match_confidence: 0.769 +google_maps_enrichment: + place_id: ChIJBxusf13qx0cRgNTaxp6wF9o + name: de Bibliotheek Deventer + fetch_timestamp: '2025-11-28T12:24:54.654885+00:00' + api_status: OK + coordinates: + latitude: 52.2532867 + longitude: 6.1556922 + formatted_address: Stromarkt 18, 7411 PK Deventer + short_address: Stromarkt 18, Deventer + address_components: + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: Stromarkt + short_name: Stromarkt + types: + - route + - long_name: Deventer + short_name: Deventer + types: + - locality + - political + - long_name: Deventer + short_name: Deventer + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7411 PK + short_name: 7411 PK + types: + - postal_code + phone_local: 0570 675 700 + phone_international: +31 570 675 700 + website: http://www.bibliotheekdeventer.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 22 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 22 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â18:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â22:00' + - 'donderdag: 09:00â22:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 145 + google_maps_url: https://maps.google.com/?cid=15715223620720186496&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Deventer, Deventer, Netherlands diff --git a/data/nde/enriched/entries/1394_kb_isil.yaml b/data/nde/enriched/entries/1394_kb_isil.yaml new file mode 100644 index 0000000000..578754d472 --- /dev/null +++ b/data/nde/enriched/entries/1394_kb_isil.yaml @@ -0,0 +1,156 @@ +original_entry: + plaatsnaam_bezoekadres: Nijkerk + organisatie: Bibliotheek Gemeente Nijkerk + type_organisatie: bibliotheek + isil_code_kb: NL-0830990000 + type: + - L +entry_index: 1394 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0830990000 + name: Bibliotheek Gemeente Nijkerk + city: Nijkerk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962185 + wikidata_label: Bibliotheken Gemeente Nijkerk + wikidata_description: bibliotheekorganisatie in de gemeente Nijkerk, Nederland + fetch_timestamp: '2025-11-28T12:22:39.120107+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheeknijkerk.nl + match_confidence: 0.861 +google_maps_enrichment: + place_id: ChIJMYo6qQlIxkcRLWgz8GXjRWA + name: Bibliotheek Gemeente Nijkerk + fetch_timestamp: '2025-11-28T12:24:55.385652+00:00' + api_status: OK + coordinates: + latitude: 52.2202722 + longitude: 5.4827381 + formatted_address: Frieswijkstraat 99, 3861 BK Nijkerk + short_address: Frieswijkstraat 99, Nijkerk + address_components: + - long_name: '99' + short_name: '99' + types: + - street_number + - long_name: Frieswijkstraat + short_name: Frieswijkstraat + types: + - route + - long_name: Nijkerk + short_name: Nijkerk + types: + - locality + - political + - long_name: Nijkerk + short_name: Nijkerk + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3861 BK + short_name: 3861 BK + types: + - postal_code + phone_local: 033 245 1756 + phone_international: +31 33 245 1756 + website: https://www.bibliotheeknijkerk.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 13 + minute: 30 + close: + day: 0 + hour: 16 + minute: 30 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:30' + - 'dinsdag: 09:00â17:30' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â17:30' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 09:00â14:00' + - 'zondag: 13:30â16:30' + rating: 4.4 + total_ratings: 48 + google_maps_url: https://maps.google.com/?cid=6937200827995220013&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Gemeente Nijkerk, Nijkerk, Netherlands diff --git a/data/nde/enriched/entries/1395_kb_isil.yaml b/data/nde/enriched/entries/1395_kb_isil.yaml new file mode 100644 index 0000000000..9385735a25 --- /dev/null +++ b/data/nde/enriched/entries/1395_kb_isil.yaml @@ -0,0 +1,160 @@ +original_entry: + plaatsnaam_bezoekadres: Drachten + organisatie: Bibliotheek Smallingerland + type_organisatie: bibliotheek + isil_code_kb: NL-0832770000 + type: + - L +entry_index: 1395 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0832770000 + name: Bibliotheek Smallingerland + city: Drachten + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764049 + wikidata_label: Bibliotheek Drachten-Smallingerland + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Smallingerland, de openbare bibliotheekvoorziening in de + gemeente Smallingerland, Nederland + fetch_timestamp: '2025-11-28T12:22:39.121175+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 53.1044062 + longitude: 6.0986522 + wikidata_identifiers: + Website: https://www.bibliotheekdrachten.nl/openingstijden/detail.199409.html/bibliotheek-drachten---smallingerland/ +google_maps_enrichment: + place_id: ChIJZVnp1ypQyEcRyicSBSRRpFI + name: Bibliotheek Drachten | Smallingerland + fetch_timestamp: '2025-11-28T12:24:56.017582+00:00' + api_status: OK + coordinates: + latitude: 53.104462600000005 + longitude: 6.099021 + formatted_address: Museumplein 1, 9203 DG Drachten + short_address: Museumplein 1, Drachten + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Museumplein + short_name: Museumplein + types: + - route + - long_name: Drachten + short_name: Drachten + types: + - locality + - political + - long_name: Smallingerland + short_name: Smallingerland + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9203 DG + short_name: 9203 DG + types: + - postal_code + phone_local: 0512 512 680 + phone_international: +31 512 512 680 + website: http://www.bibliotheekdrachten.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 14 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â17:00' + - 'dinsdag: 08:30â20:00' + - 'woensdag: 08:30â17:00' + - 'donderdag: 08:30â20:00' + - 'vrijdag: 08:30â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 14:00â17:00' + rating: 4.5 + total_ratings: 64 + google_maps_url: https://maps.google.com/?cid=5954973822436386762&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Smallingerland, Drachten, Netherlands diff --git a/data/nde/enriched/entries/1396_kb_isil.yaml b/data/nde/enriched/entries/1396_kb_isil.yaml new file mode 100644 index 0000000000..a5bdb9646f --- /dev/null +++ b/data/nde/enriched/entries/1396_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Hengelo + organisatie: Bibliotheek Twente + type_organisatie: bibliotheek + isil_code_kb: NL-0833230000 + type: + - L +entry_index: 1396 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833230000 + name: Bibliotheek Twente + city: Hengelo + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q28925576 + wikidata_label: Bibliotheek Hengelo Stad + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek Hengelo + fetch_timestamp: '2025-11-28T12:22:39.122186+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.26358 + longitude: 6.79621 + wikidata_inception: '1919-09-13' + wikidata_identifiers: + Website: https://www.bibliotheekhengelo.nl/openingstijden#196704 +google_maps_enrichment: + place_id: ChIJ8Uzik-QRuEcRtuQSoaWRIdg + name: Bibliotheek Hengelo Stad + fetch_timestamp: '2025-11-28T12:24:56.678988+00:00' + api_status: OK + coordinates: + latitude: 52.263558599999996 + longitude: 6.796283300000001 + formatted_address: Beursstraat 34, 7551 DG Hengelo + short_address: Beursplein, Beursstraat 34, Hengelo + address_components: + - long_name: '34' + short_name: '34' + types: + - street_number + - long_name: Beursstraat + short_name: Beursstraat + types: + - route + - long_name: Hengelo + short_name: Hengelo + types: + - locality + - political + - long_name: Hengelo + short_name: Hengelo + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7551 DG + short_name: 7551 DG + types: + - postal_code + phone_local: 074 245 2565 + phone_international: +31 74 245 2565 + website: http://www.bibliotheektwente.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 145 + google_maps_url: https://maps.google.com/?cid=15573889126981887158&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Twente, Hengelo, Netherlands diff --git a/data/nde/enriched/entries/1397_kb_isil.yaml b/data/nde/enriched/entries/1397_kb_isil.yaml new file mode 100644 index 0000000000..0cf10ba3cd --- /dev/null +++ b/data/nde/enriched/entries/1397_kb_isil.yaml @@ -0,0 +1,164 @@ +original_entry: + plaatsnaam_bezoekadres: Roermond + organisatie: Bibliorura + type_organisatie: bibliotheek + isil_code_kb: NL-0833580000 + type: + - L +entry_index: 1397 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833580000 + name: Bibliorura + city: Roermond + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764050 + wikidata_label: Bibliotheek Roermond + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Basisbibliotheek Bibliorura , de openbare bibliotheekvoorziening in de gemeente + Roermond, Nederland + fetch_timestamp: '2025-11-28T12:22:39.123100+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.1942953 + longitude: 5.9857115 + wikidata_identifiers: + Website: https://bibliorura.nl/contact2/adres +google_maps_enrichment: + place_id: ChIJ8RMMNUtLx0cRiaQ0ognzbKs + name: Bibliotheek Bibliorura + fetch_timestamp: '2025-11-28T12:24:57.333370+00:00' + api_status: OK + coordinates: + latitude: 51.19427470000001 + longitude: 5.9857214999999995 + formatted_address: Neerstraat 11, 13, 6041 KA Roermond + short_address: Neerstraat 11, 13, Roermond + address_components: + - long_name: '13' + short_name: '13' + types: + - subpremise + - long_name: '11' + short_name: '11' + types: + - street_number + - long_name: Neerstraat + short_name: Neerstraat + types: + - route + - long_name: Roermond + short_name: Roermond + types: + - locality + - political + - long_name: Roermond + short_name: Roermond + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6041 KA + short_name: 6041 KA + types: + - postal_code + phone_local: 0475 519 000 + phone_international: +31 475 519 000 + website: https://www.bibliorura.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 13 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 11 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 11 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 11 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 11 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 13:00â18:00' + - 'dinsdag: 11:00â20:00' + - 'woensdag: 11:00â18:00' + - 'donderdag: 11:00â18:00' + - 'vrijdag: 11:00â18:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 13:00â17:00' + rating: 4.4 + total_ratings: 71 + google_maps_url: https://maps.google.com/?cid=12352515100672042121&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bibliorura, Roermond, Netherlands diff --git a/data/nde/enriched/entries/1398_kb_isil.yaml b/data/nde/enriched/entries/1398_kb_isil.yaml new file mode 100644 index 0000000000..0650255e1c --- /dev/null +++ b/data/nde/enriched/entries/1398_kb_isil.yaml @@ -0,0 +1,150 @@ +original_entry: + plaatsnaam_bezoekadres: Sittard + organisatie: Bibliotheek Ligne De Domijnen + type_organisatie: bibliotheek + isil_code_kb: NL-0833590000 + type: + - L +entry_index: 1398 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833590000 + name: Bibliotheek Ligne De Domijnen + city: Sittard + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962272 + wikidata_label: Stichting De Domijnen + wikidata_description: Overkoepelende organisatie voor bibliotheek, museum, archief, + erfgoed, theater, film, muziek, amateurkunst en cultuur in de gemeenten Beek, + Echt-Susteren, Sittard-Geleen en Stein, Nederland + fetch_timestamp: '2025-11-28T12:22:39.145720+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.dedomijnen.nl/ + match_confidence: 0.886 +google_maps_enrichment: + place_id: ChIJg0KmE2W4wEcRIsMxr_XvqDg + name: Bibliotheek Ligne Sittard + fetch_timestamp: '2025-11-28T12:24:57.972317+00:00' + api_status: OK + coordinates: + latitude: 50.9997845 + longitude: 5.865950499999999 + formatted_address: Ligne 2, 6131 MT Sittard + short_address: Ligne 2, Sittard + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Ligne + short_name: Ligne + types: + - route + - long_name: Sittard + short_name: Sittard + types: + - locality + - political + - long_name: Sittard-Geleen + short_name: Sittard-Geleen + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6131 MT + short_name: 6131 MT + types: + - postal_code + phone_local: 088 599 5600 + phone_international: +31 88 599 5600 + website: https://www.bibliotheekdedomijnen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 09:00â18:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â18:00' + - 'donderdag: 09:00â18:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 10:00â15:00' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 70 + google_maps_url: https://maps.google.com/?cid=4082776900696654626&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Ligne De Domijnen, Sittard, Netherlands diff --git a/data/nde/enriched/entries/1399_kb_isil.yaml b/data/nde/enriched/entries/1399_kb_isil.yaml new file mode 100644 index 0000000000..5fd7c3ca8a --- /dev/null +++ b/data/nde/enriched/entries/1399_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Landgraaf + organisatie: Bibliotheek Landgraaf-Beekdaelen + type_organisatie: bibliotheek + isil_code_kb: NL-0833600000 + type: + - L +entry_index: 1399 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833600000 + name: Bibliotheek Landgraaf-Beekdaelen + city: Landgraaf + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121502568 + wikidata_label: Bibliotheek Landgraaf-Onderbanken + wikidata_description: bibliotheekorganisatie in de gemeente Landgraaf en de voormalige + gemeente Onderbanken, Nederland + fetch_timestamp: '2025-11-28T12:22:39.168157+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheeklandgraaf.nl/ + match_confidence: 0.833 +google_maps_enrichment: + place_id: ChIJ4U4U-tq8wEcRrO718KhzvXU + name: 'Bibliotheek Landgraaf-Beekdaelen: Bibliotheek Burgerhoes' + fetch_timestamp: '2025-11-28T12:24:58.773294+00:00' + api_status: OK + coordinates: + latitude: 50.9050053 + longitude: 6.0240502 + formatted_address: Sweelinckplein 1, 6371 LB Landgraaf + short_address: Sweelinckplein 1, Landgraaf + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Sweelinckplein + short_name: Sweelinckplein + types: + - route + - long_name: Landgraaf + short_name: Landgraaf + types: + - locality + - political + - long_name: Landgraaf + short_name: Landgraaf + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6371 LB + short_name: 6371 LB + types: + - postal_code + phone_local: 045 569 5660 + phone_international: +31 45 569 5660 + website: http://www.oblb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 19 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â19:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 23 + google_maps_url: https://maps.google.com/?cid=8484064442470231724&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Landgraaf-Beekdaelen, Landgraaf, Netherlands diff --git a/data/nde/enriched/entries/1400_kb_isil.yaml b/data/nde/enriched/entries/1400_kb_isil.yaml new file mode 100644 index 0000000000..4f8f17415c --- /dev/null +++ b/data/nde/enriched/entries/1400_kb_isil.yaml @@ -0,0 +1,198 @@ +original_entry: + plaatsnaam_bezoekadres: Venlo + organisatie: Bibliotheek Venlo + type_organisatie: bibliotheek + isil_code_kb: NL-0833630000 + type: + - L +entry_index: 1400 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833630000 + name: Bibliotheek Venlo + city: Venlo + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.178445+00:00' +google_maps_enrichment: + place_id: ChIJK9JOsr5ax0cRAh60Fg868I4 + name: Bibliotheek Venlo + fetch_timestamp: '2025-11-28T12:24:59.487874+00:00' + api_status: OK + coordinates: + latitude: 51.3694373 + longitude: 6.170061 + formatted_address: Begijnengang 2, 5911 JL Venlo + short_address: Begijnengang 2, Venlo + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Begijnengang + short_name: Begijnengang + types: + - route + - long_name: Venlo + short_name: Venlo + types: + - locality + - political + - long_name: Venlo + short_name: Venlo + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5911 JL + short_name: 5911 JL + types: + - postal_code + phone_local: 077 351 2446 + phone_international: +31 77 351 2446 + website: http://www.bibliotheekvenlo.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â20:00' + - 'dinsdag: 08:30â20:00' + - 'woensdag: 08:30â20:00' + - 'donderdag: 08:30â20:00' + - 'vrijdag: 08:30â20:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: 12:00â17:00' + rating: 4.3 + total_ratings: 112 + google_maps_url: https://maps.google.com/?cid=10299796184276147714&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Venlo, Venlo, Netherlands +website_enrichment: + extraction_timestamp: '2025-11-28T14:30:00+00:00' + extraction_method: exa_web_search + confidence_score: 0.85 + source_urls: + - https://www.bibliotheekvenlo.nl/ + - https://www.bibliotheekvenlo.nl/service/klantenservice.html + - https://www.bibliotheekvenlo.nl/collectie0/collectie/ebooks.html + description: > + Bibliotheek Venlo is a public library serving the Venlo municipality in Limburg, + Netherlands. The library offers a wide range of collections for youth, young adults, + and adults, as well as digital resources and an online library service. + collection_types: + - books + - digital_born + - magazines + collection_categories: + - Jeugd en Jongeren (Youth and Young Adults) + - Volwassenen (Adults) + - Passend Lezen (Accessible Reading) + digitization_status: PARTIAL + digital_platforms: + - name: Online Bibliotheek + url: https://www.onlinebibliotheek.nl + type: DISCOVERY_PORTAL + - name: WorldCat Discovery + type: CATALOG + - name: Digitale bronnen + type: DIGITAL_RESOURCES + services: + - Reading room + - Digital access + - Interlibrary loan + - Events + - Youth programs + - Informatiepunt (Information point) + membership_info: Membership available + branches: + - Stadsbibliotheek Venlo + - Arcen + - Belfeld + - Blerick + - Tegelen + - Velden + social_media: + youtube: http://www.youtube.com/channel/UCQDGxY-e3_6UFT5--7R3TuQ + facebook: http://www.facebook.com/bibliotheekvenlo + linkedin: https://www.linkedin.com/company/10967513/ + instagram: https://www.instagram.com/bibliotheekvenlo/ diff --git a/data/nde/enriched/entries/1401_kb_isil.yaml b/data/nde/enriched/entries/1401_kb_isil.yaml new file mode 100644 index 0000000000..dc765a42f7 --- /dev/null +++ b/data/nde/enriched/entries/1401_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Roosendaal + organisatie: Bibliotheek West-Brabant + type_organisatie: bibliotheek + isil_code_kb: NL-0833800000 + type: + - L +entry_index: 1401 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833800000 + name: Bibliotheek West-Brabant + city: Roosendaal + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q102180353 + wikidata_label: Bibliotheek West-Brabant + wikidata_description: openbare bibliotheek-organisatie in Noord-Brabant + fetch_timestamp: '2025-11-28T12:22:39.205022+00:00' + match_method: fuzzy_name_match + wikidata_inception: '2019-01-01' + wikidata_identifiers: + Website: https://www.bibliotheekwb.nl + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJk_cWKt0WxEcRMAbtBeyYmWE + name: Bibliotheek West-Brabant đ + fetch_timestamp: '2025-11-28T12:25:00.221565+00:00' + api_status: OK + coordinates: + latitude: 51.533272 + longitude: 4.454744900000001 + formatted_address: Markt 54A, 4701 PH Roosendaal + short_address: Emile van Loonhuis, Markt 54A, Roosendaal + address_components: + - long_name: 54A + short_name: 54A + types: + - street_number + - long_name: Markt + short_name: Markt + types: + - route + - long_name: Roosendaal + short_name: Roosendaal + types: + - locality + - political + - long_name: Roosendaal + short_name: Roosendaal + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4701 PH + short_name: 4701 PH + types: + - postal_code + phone_local: 0165 552 080 + phone_international: +31 165 552 080 + website: http://www.bibliotheekwb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:30â17:30' + - 'dinsdag: 09:30â17:30' + - 'woensdag: 09:30â17:30' + - 'donderdag: 09:30â17:30' + - 'vrijdag: 09:30â17:30' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 72 + google_maps_url: https://maps.google.com/?cid=7032820432594863664&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek West-Brabant, Roosendaal, Netherlands diff --git a/data/nde/enriched/entries/1402_kb_isil.yaml b/data/nde/enriched/entries/1402_kb_isil.yaml new file mode 100644 index 0000000000..4f22230782 --- /dev/null +++ b/data/nde/enriched/entries/1402_kb_isil.yaml @@ -0,0 +1,167 @@ +original_entry: + plaatsnaam_bezoekadres: Heerlen + organisatie: SCHUNCK, Bibliotheek Heerlen + type_organisatie: bibliotheek + isil_code_kb: NL-0833900000 + type: + - L +entry_index: 1402 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0833900000 + name: SCHUNCK, Bibliotheek Heerlen + city: Heerlen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121502784 + wikidata_label: SCHUNCK Bibliotheek Heerlen + wikidata_description: bibliotheekorganisatie in de gemeente Heerlen, Nederland + fetch_timestamp: '2025-11-28T12:22:39.232071+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekheerlen.nl/ + match_confidence: 1.15 +google_maps_enrichment: + place_id: ChIJq6oaJru9wEcRKRvL9OIjlak + name: SCHUNCK Bibliotheek Heerlen + fetch_timestamp: '2025-11-28T12:25:00.857725+00:00' + api_status: OK + coordinates: + latitude: 50.8878268 + longitude: 5.979327 + formatted_address: Glaspaleis, Bongerd 18, 6411 JM Heerlen + short_address: Glaspaleis, Bongerd 18, Heerlen + address_components: + - long_name: Glaspaleis + short_name: Glaspaleis + types: + - point_of_interest + - establishment + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: Bongerd + short_name: Bongerd + types: + - route + - long_name: Heerlen-Centrum + short_name: Heerlen-Centrum + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Heerlen + short_name: Heerlen + types: + - locality + - political + - long_name: Heerlen + short_name: Heerlen + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6411 JM + short_name: 6411 JM + types: + - postal_code + phone_local: 045 577 2225 + phone_international: +31 45 577 2225 + website: https://www.schunck.nl/bibliotheek + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 11 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: 11:00â17:00' + rating: 3.8 + total_ratings: 24 + google_maps_url: https://maps.google.com/?cid=12219712621616241449&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: SCHUNCK, Bibliotheek Heerlen, Heerlen, Netherlands diff --git a/data/nde/enriched/entries/1403_kb_isil.yaml b/data/nde/enriched/entries/1403_kb_isil.yaml new file mode 100644 index 0000000000..18cd0cd880 --- /dev/null +++ b/data/nde/enriched/entries/1403_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Doetinchem + organisatie: Bibliotheek West-Achterhoek + type_organisatie: bibliotheek + isil_code_kb: NL-0834060000 + type: + - L +entry_index: 1403 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834060000 + name: Bibliotheek West-Achterhoek + city: Doetinchem + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961989 + wikidata_label: Bibliotheek West-Achterhoek + wikidata_description: bibliotheekorganisatie in de regio West-Achterhoek, gemeenten + Bronckhorst, Doesburg en Doetinchem, Nederland + fetch_timestamp: '2025-11-28T12:22:39.248937+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekwestachterhoek.nl/ + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJk-mvYsmEx0cRl531N4cnx94 + name: Bibliotheek Doetinchem + fetch_timestamp: '2025-11-28T12:25:01.633362+00:00' + api_status: OK + coordinates: + latitude: 51.962371700000006 + longitude: 6.2890193 + formatted_address: IJsselkade 13, 7001 AN Doetinchem + short_address: IJsselkade 13, Doetinchem + address_components: + - long_name: '13' + short_name: '13' + types: + - street_number + - long_name: IJsselkade + short_name: IJsselkade + types: + - route + - long_name: Doetinchem + short_name: Doetinchem + types: + - locality + - political + - long_name: Doetinchem + short_name: Doetinchem + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7001 AN + short_name: 7001 AN + types: + - postal_code + phone_local: 0314 333 445 + phone_international: +31 314 333 445 + website: https://www.bibliotheekwestachterhoek.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 13 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â17:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 13:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 55 + google_maps_url: https://maps.google.com/?cid=16052842858498334103&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek West-Achterhoek, Doetinchem, Netherlands diff --git a/data/nde/enriched/entries/1404_kb_isil.yaml b/data/nde/enriched/entries/1404_kb_isil.yaml new file mode 100644 index 0000000000..de46f2893c --- /dev/null +++ b/data/nde/enriched/entries/1404_kb_isil.yaml @@ -0,0 +1,150 @@ +original_entry: + plaatsnaam_bezoekadres: Weert + organisatie: Bibliocenter + type_organisatie: bibliotheek + isil_code_kb: NL-0834080000 + type: + - L +entry_index: 1404 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834080000 + name: Bibliocenter + city: Weert + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962372 + wikidata_label: Bibliocenter + wikidata_description: bibliotheekorganisatie in de gemeenten gemeenten Leudal, Maasgouw, + Nederweert en Weert, Nederland + fetch_timestamp: '2025-11-28T12:22:39.263994+00:00' + match_method: fuzzy_name_match + wikidata_inception: '2008-07-01' + wikidata_identifiers: + Website: https://www.bibliocenter.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJXyloKIEtx0cRKxjKgpJ5bE4 + name: Bibliocenter Weert + fetch_timestamp: '2025-11-28T12:25:02.281324+00:00' + api_status: OK + coordinates: + latitude: 51.2552284 + longitude: 5.704019799999999 + formatted_address: Wilhelminasingel 250, 6001 GV Weert + short_address: Wilhelminasingel 250, Weert + address_components: + - long_name: '250' + short_name: '250' + types: + - street_number + - long_name: Wilhelminasingel + short_name: Wilhelminasingel + types: + - route + - long_name: Weert + short_name: Weert + types: + - locality + - political + - long_name: Weert + short_name: Weert + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6001 GV + short_name: 6001 GV + types: + - postal_code + phone_local: 088 243 2000 + phone_international: +31 88 243 2000 + website: http://www.bibliocenter.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 30 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 13:00â18:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â18:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 09:30â17:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 69 + google_maps_url: https://maps.google.com/?cid=5651025302609598507&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bibliocenter, Weert, Netherlands diff --git a/data/nde/enriched/entries/1405_kb_isil.yaml b/data/nde/enriched/entries/1405_kb_isil.yaml new file mode 100644 index 0000000000..82babfa99a --- /dev/null +++ b/data/nde/enriched/entries/1405_kb_isil.yaml @@ -0,0 +1,160 @@ +original_entry: + plaatsnaam_bezoekadres: Leeuwarden + organisatie: dbieb + type_organisatie: bibliotheek + isil_code_kb: NL-0834240000 + type: + - L +entry_index: 1405 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834240000 + name: dbieb + city: Leeuwarden + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915776 + wikidata_label: Hoofdkantoor dbieb, Stichting Bibliotheken Midden Fryslân + wikidata_description: Hoofdkantoor/hoofdkwartier van Stichting Bibliotheken Midden + Fryslân (dbieb), de openbare bibliotheekvoorziening in de gemeenten Leeuwarden + en Tietjerksteradeel, Friesland + fetch_timestamp: '2025-11-28T12:22:39.265326+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 53.2001111 + longitude: 5.8005258 + wikidata_identifiers: + Website: https://www.dbieb.nl/openingstijden-overzicht/detail.196746.html +google_maps_enrichment: + place_id: ChIJN10jZYT-yEcRhfkFC-a61Ro + name: dbieb Leeuwarden + fetch_timestamp: '2025-11-28T12:25:02.929346+00:00' + api_status: OK + coordinates: + latitude: 53.2001175 + longitude: 5.8002435000000006 + formatted_address: Blokhuisplein 40, 8911 LJ Leeuwarden + short_address: Blokhuisplein 40, Leeuwarden + address_components: + - long_name: '40' + short_name: '40' + types: + - street_number + - long_name: Blokhuisplein + short_name: Blokhuisplein + types: + - route + - long_name: Leeuwarden + short_name: Leeuwarden + types: + - locality + - political + - long_name: Leeuwarden + short_name: Leeuwarden + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8911 LJ + short_name: 8911 LJ + types: + - postal_code + phone_local: 058 234 7777 + phone_international: +31 58 234 7777 + website: https://www.dbieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 13 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 20 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 20 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 20 + minute: 30 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â20:30' + - 'dinsdag: 08:30â20:30' + - 'woensdag: 08:30â20:30' + - 'donderdag: 08:30â20:30' + - 'vrijdag: 08:30â20:30' + - 'zaterdag: 09:00â17:00' + - 'zondag: 13:00â17:00' + rating: 4.4 + total_ratings: 212 + google_maps_url: https://maps.google.com/?cid=1933657112215681413&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek dbieb, Leeuwarden, Netherlands diff --git a/data/nde/enriched/entries/1406_kb_isil.yaml b/data/nde/enriched/entries/1406_kb_isil.yaml new file mode 100644 index 0000000000..4bb5de0c2f --- /dev/null +++ b/data/nde/enriched/entries/1406_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Den Helder + organisatie: KopGroep Bibliotheken + type_organisatie: bibliotheek + isil_code_kb: NL-0834350000 + type: + - L +entry_index: 1406 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834350000 + name: KopGroep Bibliotheken + city: Den Helder + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961977 + wikidata_label: KopGroep Bibliotheken + wikidata_description: bibliotheekorganisatie in de regio Kop van Noord-Holland, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.285825+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.kopgroepbibliotheken.nl + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJHy0ZUPg3z0cRGwCbvSFEryA + name: Stichting KopGroep Bibliotheken Den Helder + fetch_timestamp: '2025-11-28T12:25:03.601829+00:00' + api_status: OK + coordinates: + latitude: 52.9578291 + longitude: 4.7670802 + formatted_address: Keizersgracht 94, 1781 BZ Den Helder + short_address: Keizersgracht 94, Den Helder + address_components: + - long_name: '94' + short_name: '94' + types: + - street_number + - long_name: Keizersgracht + short_name: Keizersgracht + types: + - route + - long_name: Den Helder + short_name: Den Helder + types: + - locality + - political + - long_name: Den Helder + short_name: Den Helder + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1781 BZ + short_name: 1781 BZ + types: + - postal_code + phone_local: 0223 623 434 + phone_international: +31 223 623 434 + website: http://www.kopgroepbibliotheken.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â20:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â20:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 107 + google_maps_url: https://maps.google.com/?cid=2355176041843720219&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek KopGroep Bibliotheken, Den Helder, Netherlands diff --git a/data/nde/enriched/entries/1407_kb_isil.yaml b/data/nde/enriched/entries/1407_kb_isil.yaml new file mode 100644 index 0000000000..f03d248786 --- /dev/null +++ b/data/nde/enriched/entries/1407_kb_isil.yaml @@ -0,0 +1,156 @@ +original_entry: + plaatsnaam_bezoekadres: Leiden + organisatie: BplusC + type_organisatie: bibliotheek + isil_code_kb: NL-0834480000 + type: + - L +entry_index: 1407 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834480000 + name: BplusC + city: Leiden + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q62836387 + wikidata_label: Bibliotheek BplusC Leiden Nieuwstraat + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van BplusC Bibliotheek, + de openbare bibliotheekvoorziening in de gemeenten Leiden en Leiderdorp + fetch_timestamp: '2025-11-28T12:22:39.286736+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.1584323 + longitude: 4.4931796 + wikidata_identifiers: + Website: https://www.bplusc.nl/bibliotheek/bibliotheek-nieuwstraat/ +google_maps_enrichment: + place_id: ChIJaQSkgo3GxUcR2ZKnZRgDqJg + name: BplusC Nieuwstraat + fetch_timestamp: '2025-11-28T12:25:04.295432+00:00' + api_status: OK + coordinates: + latitude: 52.158264 + longitude: 4.493334 + formatted_address: Nieuwstraat 4, 2312 KB Leiden + short_address: Nieuwstraat 4, Leiden + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Nieuwstraat + short_name: Nieuwstraat + types: + - route + - long_name: Leiden + short_name: Leiden + types: + - locality + - political + - long_name: Leiden + short_name: Leiden + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2312 KB + short_name: 2312 KB + types: + - postal_code + phone_local: 0900 2323000 + phone_international: +31 900 2323000 + website: http://www.bplusc.nl/ + google_place_types: + - library + - coffee_shop + - cafe + - food_store + - food + - point_of_interest + - store + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â21:00' + - 'dinsdag: 09:00â21:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 115 + google_maps_url: https://maps.google.com/?cid=11000045493172015833&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek BplusC, Leiden, Netherlands diff --git a/data/nde/enriched/entries/1408_kb_isil.yaml b/data/nde/enriched/entries/1408_kb_isil.yaml new file mode 100644 index 0000000000..cf2c2ffa1a --- /dev/null +++ b/data/nde/enriched/entries/1408_kb_isil.yaml @@ -0,0 +1,153 @@ +original_entry: + plaatsnaam_bezoekadres: Almelo + organisatie: Bibliotheek Almelo + type_organisatie: bibliotheek + isil_code_kb: NL-0834700000 + type: + - L +entry_index: 1408 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834700000 + name: Bibliotheek Almelo + city: Almelo + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q28925575 + wikidata_label: Bibliotheek Almelo + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Almelo, de openbare bibliotheekvoorziening in de gemeente + Almelo, Nederland + fetch_timestamp: '2025-11-28T12:22:39.288223+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.357444444 + longitude: 6.661611111 + wikidata_inception: '1994-01-01' + wikidata_identifiers: + Website: http://www.bibliotheekalmelo.nl +google_maps_enrichment: + place_id: ChIJozcwiToGuEcRP7HIHRJ8-bE + name: Bibliotheek Almelo + fetch_timestamp: '2025-11-28T12:25:04.959850+00:00' + api_status: OK + coordinates: + latitude: 52.3576852 + longitude: 6.661571800000001 + formatted_address: Het Baken 3, 7607 AA Almelo + short_address: Het Baken 3, Almelo + address_components: + - long_name: '3' + short_name: '3' + types: + - street_number + - long_name: Het Baken + short_name: Het Baken + types: + - route + - long_name: Almelo + short_name: Almelo + types: + - locality + - political + - long_name: Almelo + short_name: Almelo + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7607 AA + short_name: 7607 AA + types: + - postal_code + phone_local: 0546 822 005 + phone_international: +31 546 822 005 + website: https://www.bibliotheekalmelo.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 9 + minute: 30 + close: + day: 6 + hour: 17 + minute: 30 + weekday_text: + - 'maandag: 09:00â17:30' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:30' + - 'zaterdag: 09:30â17:30' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 71 + google_maps_url: https://maps.google.com/?cid=12824417831165145407&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Almelo, Almelo, Netherlands diff --git a/data/nde/enriched/entries/1409_kb_isil.yaml b/data/nde/enriched/entries/1409_kb_isil.yaml new file mode 100644 index 0000000000..81cb7a6cd6 --- /dev/null +++ b/data/nde/enriched/entries/1409_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Hoofddorp + organisatie: C. Bibliotheek Haarlemmermeer + type_organisatie: bibliotheek + isil_code_kb: NL-0834790000 + type: + - L +entry_index: 1409 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834790000 + name: C. Bibliotheek Haarlemmermeer + city: Hoofddorp + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63385161 + wikidata_label: C. Bibliotheek Hoofddorp Centrum + wikidata_description: hoofdvestiging en administratief hoofdkantoor van de C. Bibliotheek + , de openbare bibliotheekvoorziening in de gemeente Haarlemmermeer + fetch_timestamp: '2025-11-28T12:22:39.289501+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3010493 + longitude: 4.6978423 + wikidata_identifiers: + Website: https://www.cpunt.nl/praktisch/c-bibliotheek-hoofddorp-centrum +google_maps_enrichment: + place_id: ChIJ46E7DabnxUcRpxPFs4kDhqM + name: Cpunt Bibliotheek Hoofddorp Centrum + fetch_timestamp: '2025-11-28T12:25:05.624935+00:00' + api_status: OK + coordinates: + latitude: 52.3010673 + longitude: 4.6977114 + formatted_address: Raadhuisplein 7, 2132 TZ Hoofddorp + short_address: Raadhuisplein 7, Hoofddorp + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Raadhuisplein + short_name: Raadhuisplein + types: + - route + - long_name: Hoofddorp + short_name: Hoofddorp + types: + - locality + - political + - long_name: Haarlemmermeer + short_name: Haarlemmermeer + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2132 TZ + short_name: 2132 TZ + types: + - postal_code + phone_local: 023 566 4850 + phone_international: +31 23 566 4850 + website: https://www.cpunt.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 84 + google_maps_url: https://maps.google.com/?cid=11783109365022921639&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: C. Bibliotheek Haarlemmermeer, Hoofddorp, Netherlands diff --git a/data/nde/enriched/entries/1410_kb_isil.yaml b/data/nde/enriched/entries/1410_kb_isil.yaml new file mode 100644 index 0000000000..2d91efa7c5 --- /dev/null +++ b/data/nde/enriched/entries/1410_kb_isil.yaml @@ -0,0 +1,153 @@ +original_entry: + plaatsnaam_bezoekadres: Oosterhout + organisatie: Theek 5 + type_organisatie: bibliotheek + isil_code_kb: NL-0834820000 + type: + - L +entry_index: 1410 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834820000 + name: Theek 5 + city: Oosterhout + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63385168 + wikidata_label: Bibliotheek Oosterhout Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Theek5, + de openbare bibliotheekvoorziening in de gemeente Oosterhout en omstreken + fetch_timestamp: '2025-11-28T12:22:39.290306+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.6458408 + longitude: 4.8608678 + wikidata_identifiers: + Website: https://www.theek5.nl/iguana/www.main.cls?surl=Oosterhout +google_maps_enrichment: + place_id: ChIJG_ikDjiZxkcRIWslaiJT360 + name: Bibliotheek Theek 5 + fetch_timestamp: '2025-11-28T12:25:06.341077+00:00' + api_status: OK + coordinates: + latitude: 51.6458997 + longitude: 4.8608591 + formatted_address: Torenstraat 8, 4901 EJ Oosterhout + short_address: Torenstraat 8, Oosterhout + address_components: + - long_name: '8' + short_name: '8' + types: + - street_number + - long_name: Torenstraat + short_name: Torenstraat + types: + - route + - long_name: Oosterhout + short_name: Oosterhout + types: + - locality + - political + - long_name: Oosterhout + short_name: Oosterhout + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4901 EJ + short_name: 4901 EJ + types: + - postal_code + phone_local: 085 744 1052 + phone_international: +31 85 744 1052 + website: https://www.theek5.nl/?utm_source=google&utm_medium=googlemijnbedrijf + google_place_types: + - library + - movie_rental + - point_of_interest + - store + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â20:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â20:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 66 + google_maps_url: https://maps.google.com/?cid=12528824095642839841&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Theek 5, Oosterhout, Netherlands diff --git a/data/nde/enriched/entries/1411_kb_isil.yaml b/data/nde/enriched/entries/1411_kb_isil.yaml new file mode 100644 index 0000000000..b69080bbd3 --- /dev/null +++ b/data/nde/enriched/entries/1411_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Zeist + organisatie: KunstenHuis Idea + type_organisatie: bibliotheek + isil_code_kb: NL-0834830000 + type: + - L +entry_index: 1411 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834830000 + name: KunstenHuis Idea + city: Zeist + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.315557+00:00' +google_maps_enrichment: + place_id: ChIJw5836x9oxkcRmHgVzUe_ph4 + name: KunstenHuis Idea + fetch_timestamp: '2025-11-28T12:25:06.998493+00:00' + api_status: OK + coordinates: + latitude: 52.0954555 + longitude: 5.240937 + formatted_address: Egelinglaan 2B, 3705 TC Zeist + short_address: Egelinglaan 2B, Zeist + address_components: + - long_name: 2B + short_name: 2B + types: + - street_number + - long_name: Egelinglaan + short_name: Egelinglaan + types: + - route + - long_name: Zeist + short_name: Zeist + types: + - locality + - political + - long_name: Zeist + short_name: Zeist + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3705 TC + short_name: 3705 TC + types: + - postal_code + phone_local: 030 695 8393 + phone_international: +31 30 695 8393 + website: http://www.kunstenhuisidea.nl/ + google_place_types: + - cultural_center + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 22 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 22 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 22 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 22 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 22 + minute: 30 + - open: + day: 6 + hour: 8 + minute: 30 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:30â22:30' + - 'dinsdag: 09:00â22:30' + - 'woensdag: 09:00â22:30' + - 'donderdag: 09:00â22:30' + - 'vrijdag: 09:00â22:30' + - 'zaterdag: 08:30â16:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 122 + google_maps_url: https://maps.google.com/?cid=2208662982376126616&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek KunstenHuis Idea, Zeist, Netherlands diff --git a/data/nde/enriched/entries/1412_kb_isil.yaml b/data/nde/enriched/entries/1412_kb_isil.yaml new file mode 100644 index 0000000000..c32fee27d3 --- /dev/null +++ b/data/nde/enriched/entries/1412_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Nieuwegein + organisatie: Bibliotheek Nieuwegein + type_organisatie: bibliotheek + isil_code_kb: NL-0834850000 + type: + - L +entry_index: 1412 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834850000 + name: Bibliotheek Nieuwegein + city: Nieuwegein + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764054 + wikidata_label: Bibliotheek Nieuwegein + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek Nieuwegein âDe tweede verdiepingâ, de openbare bibliotheekvoorziening + in de gemeente Nieuwegein, Nederland + fetch_timestamp: '2025-11-28T12:22:39.317509+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.0278997 + longitude: 5.0848778 + wikidata_identifiers: + Website: https://www.detweedeverdieping.nu/contact/ +google_maps_enrichment: + place_id: ChIJdz830VlkxkcRm-VqepqWHyE + name: Bibliotheek Nieuwegein + fetch_timestamp: '2025-11-28T12:25:07.645001+00:00' + api_status: OK + coordinates: + latitude: 52.0279811 + longitude: 5.0852786 + formatted_address: Stadsplein 1-C, 3431 HA Nieuwegein + short_address: Stadsplein 1-C, Nieuwegein + address_components: + - long_name: 1-C + short_name: 1-C + types: + - street_number + - long_name: Stadsplein + short_name: Stadsplein + types: + - route + - long_name: Nieuwegein + short_name: Nieuwegein + types: + - locality + - political + - long_name: Nieuwegein + short_name: Nieuwegein + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3431 HA + short_name: 3431 HA + types: + - postal_code + phone_local: 030 604 5834 + phone_international: +31 30 604 5834 + website: https://bibliotheeknieuwegein.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:00â20:00' + - 'dinsdag: 08:00â20:00' + - 'woensdag: 08:00â20:00' + - 'donderdag: 08:00â20:00' + - 'vrijdag: 08:00â20:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 64 + google_maps_url: https://maps.google.com/?cid=2386791917752608155&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Nieuwegein, Nieuwegein, Netherlands diff --git a/data/nde/enriched/entries/1413_kb_isil.yaml b/data/nde/enriched/entries/1413_kb_isil.yaml new file mode 100644 index 0000000000..0dcbd31cc8 --- /dev/null +++ b/data/nde/enriched/entries/1413_kb_isil.yaml @@ -0,0 +1,166 @@ +original_entry: + plaatsnaam_bezoekadres: Amersfoort + organisatie: Bibliotheek Eemland + type_organisatie: bibliotheek + isil_code_kb: NL-0834860000 + type: + - L +entry_index: 1413 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834860000 + name: Bibliotheek Eemland + city: Amersfoort + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63385179 + wikidata_label: Hoofdkantoor Stichting Bibliotheken Eemland + wikidata_description: Hoofdkantoor/hoofdkwartier van Bibliotheek Eemland, de openbare + bibliotheekvoorziening in de gemeenten Amersfoort, Baarn, Leusden, Bunschoten + en Woudenberg + fetch_timestamp: '2025-11-28T12:22:39.319990+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.1589224 + longitude: 5.3824207 + wikidata_identifiers: + Website: https://www.bibliotheekeemland.nl/over-ons/wie-zijn-we/culturele-anbi-status/gegevens-stichting-bibliotheken-eemland.html +google_maps_enrichment: + place_id: ChIJDcDvvx9ExkcRmn23Ikb8CHs + name: de Bibliotheek Eemland + fetch_timestamp: '2025-11-28T12:25:08.320113+00:00' + api_status: OK + coordinates: + latitude: 52.158978 + longitude: 5.3826019 + formatted_address: Eemplein 71, 3812 EA Amersfoort + short_address: Eemplein 71, Amersfoort + address_components: + - long_name: '71' + short_name: '71' + types: + - street_number + - long_name: Eemplein + short_name: Eemplein + types: + - route + - long_name: Industriekwartier + short_name: Industriekwartier + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Amersfoort + short_name: Amersfoort + types: + - locality + - political + - long_name: Amersfoort + short_name: Amersfoort + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3812 EA + short_name: 3812 EA + types: + - postal_code + phone_local: 033 463 1914 + phone_international: +31 33 463 1914 + website: https://www.bibliotheekeemland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 13 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: 13:00â17:00' + rating: 3.9 + total_ratings: 110 + google_maps_url: https://maps.google.com/?cid=8865613244639182234&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Eemland, Amersfoort, Netherlands diff --git a/data/nde/enriched/entries/1414_kb_isil.yaml b/data/nde/enriched/entries/1414_kb_isil.yaml new file mode 100644 index 0000000000..4ee8f71688 --- /dev/null +++ b/data/nde/enriched/entries/1414_kb_isil.yaml @@ -0,0 +1,160 @@ +original_entry: + plaatsnaam_bezoekadres: Veenendaal + organisatie: Bibliotheek Veenendaal + type_organisatie: bibliotheek + isil_code_kb: NL-0834870000 + type: + - L +entry_index: 1414 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834870000 + name: Bibliotheek Veenendaal + city: Veenendaal + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764055 + wikidata_label: Bibliotheek Veenendaal + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Veenendaal, de openbare bibliotheekvoorziening in de gemeente + Veenendaal, Nederland + fetch_timestamp: '2025-11-28T12:22:39.321942+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.0273575 + longitude: 5.5594884 + wikidata_identifiers: + Website: https://www.bibliotheekveenendaal.nl/over-ons/contact.html +google_maps_enrichment: + place_id: ChIJJ-lYly9SxkcR75_LzQ5ssSI + name: Bibliotheek Veenendaal (in De Cultuurfabriek) + fetch_timestamp: '2025-11-28T12:25:08.968033+00:00' + api_status: OK + coordinates: + latitude: 52.0274031 + longitude: 5.5593398999999994 + formatted_address: Kees Stipplein 74, 3901 TP Veenendaal + short_address: Kees Stipplein 74, Veenendaal + address_components: + - long_name: '74' + short_name: '74' + types: + - street_number + - long_name: Kees Stipplein + short_name: Kees Stipplein + types: + - route + - long_name: Veenendaal + short_name: Veenendaal + types: + - locality + - political + - long_name: Veenendaal + short_name: Veenendaal + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3901 TP + short_name: 3901 TP + types: + - postal_code + phone_local: 0318 582 669 + phone_international: +31 318 582 669 + website: http://www.bibliotheekveenendaal.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 21 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â21:00' + - 'dinsdag: 09:00â21:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â21:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 10:00â17:00' + rating: 4.7 + total_ratings: 67 + google_maps_url: https://maps.google.com/?cid=2499898079005351919&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Veenendaal, Veenendaal, Netherlands diff --git a/data/nde/enriched/entries/1415_kb_isil.yaml b/data/nde/enriched/entries/1415_kb_isil.yaml new file mode 100644 index 0000000000..4c92469526 --- /dev/null +++ b/data/nde/enriched/entries/1415_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Helmond + organisatie: Bibliotheek Helmond-Peel + type_organisatie: bibliotheek + isil_code_kb: NL-0834880000 + type: + - L +entry_index: 1415 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834880000 + name: Bibliotheek Helmond-Peel + city: Helmond + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962083 + wikidata_label: Bibliotheek Helmond-Peel + wikidata_description: Bibliotheekorganisatie in de regio Peel, gemeenten Asten, + Deurne, Helmond en Someren, Nederland + fetch_timestamp: '2025-11-28T12:22:39.340767+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekhelmondpeel.nl/ + match_confidence: 1.15 +google_maps_enrichment: + place_id: ChIJsdqMruYjx0cRGqY8fsBYehc + name: Bibliotheek Helmond-Peel + fetch_timestamp: '2025-11-28T12:25:09.622259+00:00' + api_status: OK + coordinates: + latitude: 51.481326599999996 + longitude: 5.655461799999999 + formatted_address: Watermolenwal 11, 5701 RV Helmond + short_address: Watermolenwal 11, Helmond + address_components: + - long_name: '11' + short_name: '11' + types: + - street_number + - long_name: Watermolenwal + short_name: Watermolenwal + types: + - route + - long_name: Helmond + short_name: Helmond + types: + - locality + - political + - long_name: Helmond + short_name: Helmond + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5701 RV + short_name: 5701 RV + types: + - postal_code + phone_local: 0492 522 220 + phone_international: +31 492 522 220 + website: https://www.bibliotheekhelmondpeel.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â20:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 89 + google_maps_url: https://maps.google.com/?cid=1691762193805911578&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Helmond-Peel, Helmond, Netherlands diff --git a/data/nde/enriched/entries/1416_kb_isil.yaml b/data/nde/enriched/entries/1416_kb_isil.yaml new file mode 100644 index 0000000000..efd9a0fe59 --- /dev/null +++ b/data/nde/enriched/entries/1416_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Oss + organisatie: NOBB + type_organisatie: bibliotheek + isil_code_kb: NL-0834890000 + type: + - L +entry_index: 1416 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834890000 + name: NOBB + city: Oss + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.350024+00:00' +google_maps_enrichment: + place_id: ChIJ-TVbNfX8xkcRuu8tMuSQnyc + name: Bibliotheek Oss + fetch_timestamp: '2025-11-28T12:25:10.335901+00:00' + api_status: OK + coordinates: + latitude: 51.7713247 + longitude: 5.5236107 + formatted_address: Koornstraat 14-16, 5341 BR Oss + short_address: Koornstraat 14-16, Oss + address_components: + - long_name: 14-16 + short_name: 14-16 + types: + - street_number + - long_name: Koornstraat + short_name: Koornstraat + types: + - route + - long_name: Oss + short_name: Oss + types: + - locality + - political + - long_name: Oss + short_name: Oss + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5341 BR + short_name: 5341 BR + types: + - postal_code + phone_local: 0412 622 618 + phone_international: +31 412 622 618 + website: https://www.nobb.nl/home/onze-bibliotheken/oss.html + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 16 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â16:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 11:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 80 + google_maps_url: https://maps.google.com/?cid=2855159998544998330&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek NOBB, Oss, Netherlands diff --git a/data/nde/enriched/entries/1417_kb_isil.yaml b/data/nde/enriched/entries/1417_kb_isil.yaml new file mode 100644 index 0000000000..2ab877592f --- /dev/null +++ b/data/nde/enriched/entries/1417_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Voorburg + organisatie: Bibliotheek Aan de Vliet + type_organisatie: bibliotheek + isil_code_kb: NL-0834930000 + type: + - L +entry_index: 1417 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834930000 + name: Bibliotheek Aan de Vliet + city: Voorburg + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962356 + wikidata_label: Bibliotheek aan de Vliet + wikidata_description: bibliotheekorganisatie in de gemeenten Leidschendam-Voorburg + en Rijswijk, Nederland + fetch_timestamp: '2025-11-28T12:22:39.365726+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekaandevliet.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJV3_QyrG3xUcRALT-Cf2sW84 + name: Bibliotheek Voorburg + fetch_timestamp: '2025-11-28T12:25:11.050815+00:00' + api_status: OK + coordinates: + latitude: 52.0761307 + longitude: 4.3605801 + formatted_address: Kon. Julianalaan 257, 2273 JG Voorburg + short_address: Kon. Julianalaan 257, Voorburg + address_components: + - long_name: '257' + short_name: '257' + types: + - street_number + - long_name: Koningin Julianalaan + short_name: Kon. Julianalaan + types: + - route + - long_name: Voorburg + short_name: Voorburg + types: + - locality + - political + - long_name: Leidschendam-Voorburg + short_name: Leidschendam-Voorburg + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2273 JG + short_name: 2273 JG + types: + - postal_code + phone_local: 070 240 0250 + phone_international: +31 70 240 0250 + website: http://bibliotheekaandevliet.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 12 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 12:00â18:00' + - 'dinsdag: 10:00â18:00' + - 'woensdag: 10:00â18:00' + - 'donderdag: 10:00â18:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 57 + google_maps_url: https://maps.google.com/?cid=14869668797488215040&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Aan de Vliet, Voorburg, Netherlands diff --git a/data/nde/enriched/entries/1418_kb_isil.yaml b/data/nde/enriched/entries/1418_kb_isil.yaml new file mode 100644 index 0000000000..362d8837c5 --- /dev/null +++ b/data/nde/enriched/entries/1418_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Beverwijk + organisatie: Bibliotheek IJmond Noord + type_organisatie: bibliotheek + isil_code_kb: NL-0834990000 + type: + - L +entry_index: 1418 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0834990000 + name: Bibliotheek IJmond Noord + city: Beverwijk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63890078 + wikidata_label: Bibliotheek Beverwijk + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Bibliotheek + IJmond Noord, de openbare bibliotheekvoorziening in de gemeenten Beverwijk en + Heemskerk + fetch_timestamp: '2025-11-28T12:22:39.366642+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.4866009 + longitude: 4.658514 + wikidata_identifiers: + Website: https://www.bibliotheekijmondnoord.nl/algemene-informatie/openingstijden-adressen.html +google_maps_enrichment: + place_id: ChIJWaPkEInwxUcRE5mjahC1Q1Y + name: Bibliotheek IJmond Noord, Vestiging Beverwijk + fetch_timestamp: '2025-11-28T12:25:11.659504+00:00' + api_status: OK + coordinates: + latitude: 52.486378599999995 + longitude: 4.6583746999999995 + formatted_address: Kerkplein 5, 1941 HD Beverwijk + short_address: Kerkplein 5, Beverwijk + address_components: + - long_name: '5' + short_name: '5' + types: + - street_number + - long_name: Kerkplein + short_name: Kerkplein + types: + - route + - long_name: Beverwijk + short_name: Beverwijk + types: + - locality + - political + - long_name: Beverwijk + short_name: Beverwijk + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1941 HD + short_name: 1941 HD + types: + - postal_code + phone_local: 0251 228 591 + phone_international: +31 251 228 591 + website: http://www.bibliotheekijmondnoord.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 11:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 57 + google_maps_url: https://maps.google.com/?cid=6216010992814627091&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek IJmond Noord, Beverwijk, Netherlands diff --git a/data/nde/enriched/entries/1419_kb_isil.yaml b/data/nde/enriched/entries/1419_kb_isil.yaml new file mode 100644 index 0000000000..93503a6d40 --- /dev/null +++ b/data/nde/enriched/entries/1419_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Terneuzen + organisatie: Bibliotheek Zeeuws Vlaanderen + type_organisatie: bibliotheek + isil_code_kb: NL-0835050000 + type: + - L +entry_index: 1419 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835050000 + name: Bibliotheek Zeeuws Vlaanderen + city: Terneuzen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962288 + wikidata_label: Bibliotheek Zeeuws-Vlaanderen + wikidata_description: bibliotheekorganisatie in Zeeuws-Vlaanderen, gemeenten Terneuzen, + Sluis en Hulst, Nederland + fetch_timestamp: '2025-11-28T12:22:39.384625+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekzeeuwsvlaanderen.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJy-HJ1vyAxEcR5kbfxbtqDJM + name: Bibliotheek Terneuzen + fetch_timestamp: '2025-11-28T12:25:12.381680+00:00' + api_status: OK + coordinates: + latitude: 51.3345414 + longitude: 3.8269442999999996 + formatted_address: Bellevue 1, 4531 DD Terneuzen + short_address: Bellevue 1, Terneuzen + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Bellevue + short_name: Bellevue + types: + - route + - long_name: Terneuzen + short_name: Terneuzen + types: + - locality + - political + - long_name: Terneuzen + short_name: Terneuzen + types: + - administrative_area_level_2 + - political + - long_name: Zeeland + short_name: ZE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4531 DD + short_name: 4531 DD + types: + - postal_code + phone_local: 085 086 8110 + phone_international: +31 85 086 8110 + website: http://www.bibliotheekzeeuwsvlaanderen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 19 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 19 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 30 + weekday_text: + - 'maandag: 10:00â19:00' + - 'dinsdag: 10:00â17:30' + - 'woensdag: 10:00â17:30' + - 'donderdag: 10:00â17:30' + - 'vrijdag: 10:00â19:00' + - 'zaterdag: 10:00â12:30' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 46 + google_maps_url: https://maps.google.com/?cid=10595961378007107302&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Zeeuws Vlaanderen, Terneuzen, Netherlands diff --git a/data/nde/enriched/entries/1420_kb_isil.yaml b/data/nde/enriched/entries/1420_kb_isil.yaml new file mode 100644 index 0000000000..85d6ef65d0 --- /dev/null +++ b/data/nde/enriched/entries/1420_kb_isil.yaml @@ -0,0 +1,147 @@ +original_entry: + plaatsnaam_bezoekadres: Hilversum + organisatie: Bibliotheek en Volksuniversiteit Hilversum + type_organisatie: bibliotheek + isil_code_kb: NL-0835080000 + type: + - L +entry_index: 1420 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835080000 + name: Bibliotheek en Volksuniversiteit Hilversum + city: Hilversum + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962104 + wikidata_label: Stichting Openbare Bibliotheek en Volksuniversiteit Hilversum + wikidata_description: bibliotheekorganisatie in de gemeente Hilversum, Nederland + fetch_timestamp: '2025-11-28T12:22:39.410775+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekhilversum.nl + match_confidence: 0.891 +google_maps_enrichment: + place_id: ChIJGSnJnhJrxkcRUQgkQnblPaQ + name: Bibliotheek en Volksuniversiteit Hilversum + fetch_timestamp: '2025-11-28T12:25:13.099825+00:00' + api_status: OK + coordinates: + latitude: 52.227328899999996 + longitude: 5.1671328999999995 + formatted_address: '''s-Gravelandseweg 55, 1217 EH Hilversum' + short_address: '''s-Gravelandseweg 55, Hilversum' + address_components: + - long_name: '55' + short_name: '55' + types: + - street_number + - long_name: '''s-Gravelandseweg' + short_name: '''s-Gravelandseweg' + types: + - route + - long_name: Hilversum + short_name: Hilversum + types: + - locality + - political + - long_name: Hilversum + short_name: Hilversum + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1217 EH + short_name: 1217 EH + types: + - postal_code + phone_local: 035 689 2051 + phone_international: +31 35 689 2051 + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 11:00â17:00' + - 'zondag: Gesloten' + rating: 1 + total_ratings: 1 + google_maps_url: https://maps.google.com/?cid=11834867691878090833&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek en Volksuniversiteit Hilversum, Hilversum, Netherlands diff --git a/data/nde/enriched/entries/1421_kb_isil.yaml b/data/nde/enriched/entries/1421_kb_isil.yaml new file mode 100644 index 0000000000..2f8954242b --- /dev/null +++ b/data/nde/enriched/entries/1421_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Spijkenisse + organisatie: Bibliotheek Zuid-Hollandse Eilanden + type_organisatie: bibliotheek + isil_code_kb: NL-0835120000 + type: + - L +entry_index: 1421 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835120000 + name: Bibliotheek Zuid-Hollandse Eilanden + city: Spijkenisse + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962080 + wikidata_label: Bibliotheek Zuid-Hollandse Delta + wikidata_description: bibliotheekorganisatie in de gemeenten Voorne aan Zee en Goeree-Overflakkee, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.433338+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekzuidhollandsedelta.nl/ + match_confidence: 0.791 +google_maps_enrichment: + place_id: ChIJ32ssw5FJxEcRYZvJzq1LzJ0 + name: Bibliotheek de Boekenberg Spijkenisse + fetch_timestamp: '2025-11-28T12:25:13.917902+00:00' + api_status: OK + coordinates: + latitude: 51.8496099 + longitude: 4.324686 + formatted_address: Markt 40, 3201 CP Spijkenisse + short_address: Markt 40, Spijkenisse + address_components: + - long_name: '40' + short_name: '40' + types: + - street_number + - long_name: Markt + short_name: Markt + types: + - route + - long_name: Spijkenisse + short_name: Spijkenisse + types: + - locality + - political + - long_name: Nissewaard + short_name: Nissewaard + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3201 CP + short_name: 3201 CP + types: + - postal_code + phone_local: 088 006 7500 + phone_international: +31 88 006 7500 + website: https://www.bibliotheekzhe.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:30' + - 'dinsdag: 09:00â17:30' + - 'woensdag: 09:00â20:30' + - 'donderdag: 09:00â20:30' + - 'vrijdag: 09:00â17:30' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 133 + google_maps_url: https://maps.google.com/?cid=11370546369074404193&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Zuid-Hollandse Eilanden, Spijkenisse, Netherlands diff --git a/data/nde/enriched/entries/1422_kb_isil.yaml b/data/nde/enriched/entries/1422_kb_isil.yaml new file mode 100644 index 0000000000..b53ba806a7 --- /dev/null +++ b/data/nde/enriched/entries/1422_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Tubbergen + organisatie: Bibliotheek Tubbergen + type_organisatie: bibliotheek + isil_code_kb: NL-0835130000 + type: + - L +entry_index: 1422 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835130000 + name: Bibliotheek Tubbergen + city: Tubbergen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63890050 + wikidata_label: Bibliotheek Bergen + wikidata_description: Openbare bibliotheekvestiging in Bergen + fetch_timestamp: '2025-11-28T12:22:39.447670+00:00' + match_method: fuzzy_name_match + wikidata_coordinates: + latitude: 52.6696634 + longitude: 4.7033516 + wikidata_identifiers: + Website: https://www.bibliotheekkennemerwaard.nl/openingstijden/#199920 + match_confidence: 0.8 +google_maps_enrichment: + place_id: ChIJxWM8Po4EuEcRBQ0n1_NfyYk + name: Stichting Bibliotheken Tubbergen / Tubbergen + fetch_timestamp: '2025-11-28T12:25:14.637150+00:00' + api_status: OK + coordinates: + latitude: 52.408372400000005 + longitude: 6.7812823 + formatted_address: Raadhuisplein 4, 7651 CV Tubbergen + short_address: Raadhuisplein 4, Tubbergen + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Raadhuisplein + short_name: Raadhuisplein + types: + - route + - long_name: Tubbergen + short_name: Tubbergen + types: + - locality + - political + - long_name: Tubbergen + short_name: Tubbergen + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7651 CV + short_name: 7651 CV + types: + - postal_code + phone_local: 0546 621 536 + phone_international: +31 546 621 536 + website: http://www.bibliotheken-tubbergen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 12 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:30' + - 'dinsdag: 09:00â17:30' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:30' + - 'zaterdag: 09:00â12:00' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=9928572354406321413&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Tubbergen, Tubbergen, Netherlands diff --git a/data/nde/enriched/entries/1423_kb_isil.yaml b/data/nde/enriched/entries/1423_kb_isil.yaml new file mode 100644 index 0000000000..295f276441 --- /dev/null +++ b/data/nde/enriched/entries/1423_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Gouda + organisatie: Stadsbibliotheek Gouda + type_organisatie: bibliotheek + isil_code_kb: NL-0835170000 + type: + - L +entry_index: 1423 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835170000 + name: Stadsbibliotheek Gouda + city: Gouda + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.471925+00:00' +google_maps_enrichment: + place_id: ChIJidnaxQLUxUcRlhTXCW4mSrY + name: de Bibliotheek Gouda + fetch_timestamp: '2025-11-28T12:25:15.353100+00:00' + api_status: OK + coordinates: + latitude: 52.0122948 + longitude: 4.7163457 + formatted_address: Klein Amerika 20, 2806 CA Gouda + short_address: Klein Amerika 20, Gouda + address_components: + - long_name: '20' + short_name: '20' + types: + - street_number + - long_name: Klein Amerika + short_name: Klein Amerika + types: + - route + - long_name: Gouda + short_name: Gouda + types: + - locality + - political + - long_name: Gouda + short_name: Gouda + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2806 CA + short_name: 2806 CA + types: + - postal_code + phone_local: 0182 590 101 + phone_international: +31 182 590 101 + website: http://www.bibliotheekgouda.nl/ + google_place_types: + - library + - university + - event_venue + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 20 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 20 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 10:00â20:00' + - 'zondag: 10:00â20:00' + rating: 4.2 + total_ratings: 73 + google_maps_url: https://maps.google.com/?cid=13135353517232821398&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Stadsbibliotheek Gouda, Gouda, Netherlands diff --git a/data/nde/enriched/entries/1424_kb_isil.yaml b/data/nde/enriched/entries/1424_kb_isil.yaml new file mode 100644 index 0000000000..8210f53502 --- /dev/null +++ b/data/nde/enriched/entries/1424_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Zoetermeer + organisatie: Forum Bibliotheek Zoetermeer + type_organisatie: bibliotheek + isil_code_kb: NL-0835200000 + type: + - L +entry_index: 1424 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835200000 + name: Forum Bibliotheek Zoetermeer + city: Zoetermeer + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.496265+00:00' +google_maps_enrichment: + place_id: ChIJ52AGdinJxUcRLY2V87jDvv8 + name: Bibliotheek Forum Zoetermeer + fetch_timestamp: '2025-11-28T12:25:15.992347+00:00' + api_status: OK + coordinates: + latitude: 52.0606511 + longitude: 4.4923887 + formatted_address: Stadhuisplein 1, 2711 EC Zoetermeer + short_address: Stadhuisplein 1, Zoetermeer + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Stadhuisplein + short_name: Stadhuisplein + types: + - route + - long_name: Zoetermeer + short_name: Zoetermeer + types: + - locality + - political + - long_name: Zoetermeer + short_name: Zoetermeer + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2711 EC + short_name: 2711 EC + types: + - postal_code + phone_local: 079 343 8200 + phone_international: +31 79 343 8200 + website: http://www.bibliotheek-zoetermeer.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 18 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 18 + minute: 0 + weekday_text: + - 'maandag: 08:00â20:00' + - 'dinsdag: 08:00â20:00' + - 'woensdag: 08:00â20:00' + - 'donderdag: 08:00â20:00' + - 'vrijdag: 08:00â20:00' + - 'zaterdag: 10:00â18:00' + - 'zondag: 10:00â18:00' + rating: 4.3 + total_ratings: 124 + google_maps_url: https://maps.google.com/?cid=18428381924374711597&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Forum Bibliotheek Zoetermeer, Zoetermeer, Netherlands diff --git a/data/nde/enriched/entries/1425_kb_isil.yaml b/data/nde/enriched/entries/1425_kb_isil.yaml new file mode 100644 index 0000000000..ec8e7b3300 --- /dev/null +++ b/data/nde/enriched/entries/1425_kb_isil.yaml @@ -0,0 +1,157 @@ +original_entry: + plaatsnaam_bezoekadres: Den Bosch + organisatie: Huis73 + type_organisatie: bibliotheek + isil_code_kb: NL-0835260000 + type: + - L +entry_index: 1425 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835260000 + name: Huis73 + city: Den Bosch + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121176802 + wikidata_label: Huis73 + wikidata_description: organisatie van bibliotheken in Noord-Brabant, Nederland + fetch_timestamp: '2025-11-28T12:22:39.506591+00:00' + match_method: fuzzy_name_match + wikidata_inception: '2019-01-01' + wikidata_identifiers: + Website: https://www.huis73.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJHb86v_fuxkcR69YdywOTe1A + name: Huis73, Bibliotheek Den Bosch đ + fetch_timestamp: '2025-11-28T12:25:16.686626+00:00' + api_status: OK + coordinates: + latitude: 51.6856011 + longitude: 5.3108955 + formatted_address: Hekellaan 2, 5211 LX 's-Hertogenbosch + short_address: Hekellaan 2, 's-Hertogenbosch + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Hekellaan + short_name: Hekellaan + types: + - route + - long_name: '''s-Hertogenbosch' + short_name: '''s-Hertogenbosch' + types: + - locality + - political + - long_name: '''s-Hertogenbosch' + short_name: '''s-Hertogenbosch' + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5211 LX + short_name: 5211 LX + types: + - postal_code + phone_local: 073 680 2900 + phone_international: +31 73 680 2900 + website: https://www.huis73.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â18:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â18:00' + - 'donderdag: 09:00â18:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 10:00â17:00' + rating: 4.2 + total_ratings: 149 + google_maps_url: https://maps.google.com/?cid=5799390589671560939&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Huis73, Den Bosch, Netherlands diff --git a/data/nde/enriched/entries/1426_kb_isil.yaml b/data/nde/enriched/entries/1426_kb_isil.yaml new file mode 100644 index 0000000000..01b2bf3059 --- /dev/null +++ b/data/nde/enriched/entries/1426_kb_isil.yaml @@ -0,0 +1,155 @@ +original_entry: + plaatsnaam_bezoekadres: Assen + organisatie: DNK + type_organisatie: bibliotheek + isil_code_kb: NL-0835310000 + type: + - L +entry_index: 1426 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835310000 + name: DNK + city: Assen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764043 + wikidata_label: Bibliotheek Assen + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Assen, de openbare bibliotheekvoorziening in de gemeente + Assen, Nederland + fetch_timestamp: '2025-11-28T12:22:39.507459+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.9946471 + longitude: 6.558683 + wikidata_identifiers: + Website: https://www.dnk.nl/agenda-tickets/bibliotheek +google_maps_enrichment: + place_id: ChIJPekQ-B0lyEcR_6x5XOO4RWY + name: DNK - De Nieuwe Kolk + fetch_timestamp: '2025-11-28T12:25:17.400186+00:00' + api_status: OK + coordinates: + latitude: 52.9948147 + longitude: 6.5585838 + formatted_address: Weiersstraat 1, 9401 ET Assen + short_address: Weiersstraat 1, Assen + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Weiersstraat + short_name: Weiersstraat + types: + - route + - long_name: Assen + short_name: Assen + types: + - locality + - political + - long_name: Assen + short_name: Assen + types: + - administrative_area_level_2 + - political + - long_name: Drenthe + short_name: DR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9401 ET + short_name: 9401 ET + types: + - postal_code + phone_local: 088 012 8888 + phone_international: +31 88 012 8888 + website: http://www.dnk.nl/ + google_place_types: + - cultural_center + - movie_theater + - library + - event_venue + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â18:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â18:00' + - 'donderdag: 09:00â18:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 677 + google_maps_url: https://maps.google.com/?cid=7369499651910249727&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek DNK, Assen, Netherlands diff --git a/data/nde/enriched/entries/1427_kb_isil.yaml b/data/nde/enriched/entries/1427_kb_isil.yaml new file mode 100644 index 0000000000..009ab63d75 --- /dev/null +++ b/data/nde/enriched/entries/1427_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Emmen + organisatie: Facet + type_organisatie: bibliotheek + isil_code_kb: NL-0835320000 + type: + - L +entry_index: 1427 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835320000 + name: Facet + city: Emmen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.518376+00:00' +google_maps_enrichment: + place_id: ChIJc3XnlTjmt0cRqB3qELU5DvI + name: Facet Emmen Centrum + fetch_timestamp: '2025-11-28T12:25:18.062004+00:00' + api_status: OK + coordinates: + latitude: 52.7881767 + longitude: 6.8924176 + formatted_address: Noorderplein 101, 7811 MG Emmen + short_address: Noorderplein 101, Emmen + address_components: + - long_name: '101' + short_name: '101' + types: + - street_number + - long_name: Noorderplein + short_name: Noorderplein + types: + - route + - long_name: Emmen + short_name: Emmen + types: + - locality + - political + - long_name: Emmen + short_name: Emmen + types: + - administrative_area_level_2 + - political + - long_name: Drenthe + short_name: DR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7811 MG + short_name: 7811 MG + types: + - postal_code + phone_local: 0591 681 444 + phone_international: +31 591 681 444 + website: https://www.facet-emmen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 8 + minute: 30 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:30â18:00' + - 'dinsdag: 08:30â18:00' + - 'woensdag: 08:30â18:00' + - 'donderdag: 08:30â20:00' + - 'vrijdag: 08:30â18:00' + - 'zaterdag: 08:30â17:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 121 + google_maps_url: https://maps.google.com/?cid=17441941856688151976&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Facet, Emmen, Netherlands diff --git a/data/nde/enriched/entries/1428_kb_isil.yaml b/data/nde/enriched/entries/1428_kb_isil.yaml new file mode 100644 index 0000000000..19b53e43a6 --- /dev/null +++ b/data/nde/enriched/entries/1428_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Bussum + organisatie: Gooi+ + type_organisatie: bibliotheek + isil_code_kb: NL-0835340000 + type: + - L +entry_index: 1428 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835340000 + name: Gooi+ + city: Bussum + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121506453 + wikidata_label: Bibliotheek Gooi+ + wikidata_description: bibliotheekorganisatie in de gemeenten Blaricum, Eemnes, + Gooise Meren, Huizen, Laren en Wijdemeren, Nederland + fetch_timestamp: '2025-11-28T12:22:39.528233+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekgooiplus.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJ97KcEGQTxkcRH9m7_amxvSc + name: Bibliotheek Gooi+ Bussum + fetch_timestamp: '2025-11-28T12:25:18.837592+00:00' + api_status: OK + coordinates: + latitude: 52.2759717 + longitude: 5.1628044 + formatted_address: Wilhelminaplantsoen 18, 1404 JB Bussum + short_address: Wilhelminaplantsoen 18, Bussum + address_components: + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: Wilhelminaplantsoen + short_name: Wilhelminaplantsoen + types: + - route + - long_name: Bussum + short_name: Bussum + types: + - locality + - political + - long_name: Gooise Meren + short_name: Gooise Meren + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1404 JB + short_name: 1404 JB + types: + - postal_code + phone_local: 035 697 3000 + phone_international: +31 35 697 3000 + website: http://www.bibliotheekgooiplus.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â18:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â18:00' + - 'donderdag: 09:00â18:00' + - 'vrijdag: 10:00â20:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 61 + google_maps_url: https://maps.google.com/?cid=2863640281742039327&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Gooi+, Bussum, Netherlands diff --git a/data/nde/enriched/entries/1429_kb_isil.yaml b/data/nde/enriched/entries/1429_kb_isil.yaml new file mode 100644 index 0000000000..20f0b0cca8 --- /dev/null +++ b/data/nde/enriched/entries/1429_kb_isil.yaml @@ -0,0 +1,169 @@ +original_entry: + plaatsnaam_bezoekadres: Ede + organisatie: Cultura + type_organisatie: bibliotheek + isil_code_kb: NL-0835370000 + type: + - L +entry_index: 1429 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835370000 + name: Cultura + city: Ede + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961996 + wikidata_label: Cultura + wikidata_description: overkoepelende organisatie voor bibliotheek, theater, muziek, + kunst en cultuur in de gemeente Ede, Nederland + fetch_timestamp: '2025-11-28T12:22:39.540018+00:00' + match_method: fuzzy_name_match + wikidata_coordinates: + latitude: 52.04648 + longitude: 5.66714 + wikidata_identifiers: + Website: https://www.cultura-ede.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJac_ppFGtx0cRKQ3wCESsoG8 + name: Cultura Ede + fetch_timestamp: '2025-11-28T12:25:19.554854+00:00' + api_status: OK + coordinates: + latitude: 52.0463889 + longitude: 5.667222199999999 + formatted_address: Molenstraat 45, 6711 AW Ede + short_address: Molenstraat 45, Ede + address_components: + - long_name: '45' + short_name: '45' + types: + - street_number + - long_name: Molenstraat + short_name: Molenstraat + types: + - route + - long_name: Ede-West + short_name: Ede-West + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Ede + short_name: Ede + types: + - locality + - political + - long_name: Ede + short_name: Ede + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6711 AW + short_name: 6711 AW + types: + - postal_code + phone_local: 0318 672 800 + phone_international: +31 318 672 800 + website: https://www.cultura-ede.nl/ + google_place_types: + - cultural_center + - movie_theater + - event_venue + - library + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 22 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 22 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 22 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 22 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 22 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â22:00' + - 'dinsdag: 09:00â22:00' + - 'woensdag: 09:00â22:00' + - 'donderdag: 09:00â22:00' + - 'vrijdag: 09:00â22:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 12:00â17:00' + rating: 4.3 + total_ratings: 806 + google_maps_url: https://maps.google.com/?cid=8043618342691409193&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Cultura, Ede, Netherlands diff --git a/data/nde/enriched/entries/1430_kb_isil.yaml b/data/nde/enriched/entries/1430_kb_isil.yaml new file mode 100644 index 0000000000..f16889cbd4 --- /dev/null +++ b/data/nde/enriched/entries/1430_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Tiel + organisatie: Bibliotheek Rivierenland + type_organisatie: bibliotheek + isil_code_kb: NL-0835390000 + type: + - L +entry_index: 1430 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835390000 + name: Bibliotheek Rivierenland + city: Tiel + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59772808 + wikidata_label: Bibliotheek Tiel + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek Rivierenland in Tiel + fetch_timestamp: '2025-11-28T12:22:39.540885+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.8845787 + longitude: 5.4366236 + wikidata_identifiers: + Website: https://www.bibliotheekrivierenland.nl/Openingstijden/openingstijden/detail.196752.html/bibliotheek-tiel/ +google_maps_enrichment: + place_id: ChIJ4SHcfhL4xkcRJvvWZ65-kAQ + name: Bibliotheek Tiel + fetch_timestamp: '2025-11-28T12:25:20.210780+00:00' + api_status: OK + coordinates: + latitude: 51.884503699999996 + longitude: 5.4367342999999995 + formatted_address: Rechtbankstraat 3, 4001 JR Tiel + short_address: Rechtbankstraat 3, Tiel + address_components: + - long_name: '3' + short_name: '3' + types: + - street_number + - long_name: Rechtbankstraat + short_name: Rechtbankstraat + types: + - route + - long_name: Tiel + short_name: Tiel + types: + - locality + - political + - long_name: Tiel + short_name: Tiel + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4001 JR + short_name: 4001 JR + types: + - postal_code + phone_local: 0344 639 940 + phone_international: +31 344 639 940 + website: http://www.bibliotheekrivierenland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â20:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 63 + google_maps_url: https://maps.google.com/?cid=328902060329597734&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rivierenland, Tiel, Netherlands diff --git a/data/nde/enriched/entries/1431_kb_isil.yaml b/data/nde/enriched/entries/1431_kb_isil.yaml new file mode 100644 index 0000000000..1f01eb5f2d --- /dev/null +++ b/data/nde/enriched/entries/1431_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Eibergen + organisatie: Bibliotheek Oost Achterhoek + type_organisatie: bibliotheek + isil_code_kb: NL-0835410000 + type: + - L +entry_index: 1431 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835410000 + name: Bibliotheek Oost Achterhoek + city: Eibergen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962401 + wikidata_label: Bibliotheek Oost-Achterhoek + wikidata_description: bibliotheekorganisatie in de regio Oost-Achterhoek, gemeenten + Berkelland, Oost Gelre en Winterswijk, Nederland + fetch_timestamp: '2025-11-28T12:22:39.558978+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.oostachterhoek.nl + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJtXXuLfFzuEcR7qcVth-Skv4 + name: Bibliotheek Oost-Achterhoek / Eibergen + fetch_timestamp: '2025-11-28T12:25:20.910429+00:00' + api_status: OK + coordinates: + latitude: 52.1031993 + longitude: 6.6474782 + formatted_address: Grotestraat 58, 7151 BD Eibergen + short_address: Grotestraat 58, Eibergen + address_components: + - long_name: '58' + short_name: '58' + types: + - street_number + - long_name: Grotestraat + short_name: Grotestraat + types: + - route + - long_name: Eibergen + short_name: Eibergen + types: + - locality + - political + - long_name: Berkelland + short_name: Berkelland + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7151 BD + short_name: 7151 BD + types: + - postal_code + phone_local: 088 006 2929 + phone_international: +31 88 006 2929 + website: https://www.oostachterhoek.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 13 + minute: 30 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 13 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 13 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 13:30â17:30' + - 'dinsdag: 13:30â17:30' + - 'woensdag: 10:00â17:30' + - 'donderdag: 13:30â20:00' + - 'vrijdag: 13:30â17:30' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.1 + total_ratings: 9 + google_maps_url: https://maps.google.com/?cid=18343884897129965550&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Oost Achterhoek, Eibergen, Netherlands diff --git a/data/nde/enriched/entries/1432_kb_isil.yaml b/data/nde/enriched/entries/1432_kb_isil.yaml new file mode 100644 index 0000000000..a60e3d5554 --- /dev/null +++ b/data/nde/enriched/entries/1432_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Kampen + organisatie: Bibliotheek Kampen + type_organisatie: bibliotheek + isil_code_kb: NL-0835420000 + type: + - L +entry_index: 1432 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835420000 + name: Bibliotheek Kampen + city: Kampen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915726 + wikidata_label: Bibliotheek Krimpen + wikidata_description: Openbare bibliotheekvestiging in Krimpen aan den IJssel + fetch_timestamp: '2025-11-28T12:22:39.571011+00:00' + match_method: fuzzy_name_match + wikidata_coordinates: + latitude: 51.9155672 + longitude: 4.5913219 + wikidata_identifiers: + Website: https://www.bibliotheekaandenijssel.nl/service-contact/Locaties-openingstijden/detail.199786.html/bibliotheek-krimpen/ + match_confidence: 0.769 +google_maps_enrichment: + place_id: ChIJ4_2zK2N4yEcRl8NyysqqZAM + name: Bibliotheek Kampen + fetch_timestamp: '2025-11-28T12:25:21.592250+00:00' + api_status: OK + coordinates: + latitude: 52.5612128 + longitude: 5.9141483 + formatted_address: Oudestraat 216, 8261 CA Kampen + short_address: Oudestraat 216, Kampen + address_components: + - long_name: '216' + short_name: '216' + types: + - street_number + - long_name: Oudestraat + short_name: Oudestraat + types: + - route + - long_name: Kampen + short_name: Kampen + types: + - locality + - political + - long_name: Kampen + short_name: Kampen + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8261 CA + short_name: 8261 CA + types: + - postal_code + phone_local: 038 331 2101 + phone_international: +31 38 331 2101 + website: http://www.bibliotheekkampen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â21:00' + - 'dinsdag: 09:00â21:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 54 + google_maps_url: https://maps.google.com/?cid=244508067741483927&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Kampen, Kampen, Netherlands diff --git a/data/nde/enriched/entries/1433_kb_isil.yaml b/data/nde/enriched/entries/1433_kb_isil.yaml new file mode 100644 index 0000000000..fa4e7172c8 --- /dev/null +++ b/data/nde/enriched/entries/1433_kb_isil.yaml @@ -0,0 +1,159 @@ +original_entry: + plaatsnaam_bezoekadres: Alphen aan den Rijn + organisatie: Bibliotheek Rijn en Venen + type_organisatie: bibliotheek + isil_code_kb: NL-0835450000 + type: + - L +entry_index: 1433 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835450000 + name: Bibliotheek Rijn en Venen + city: Alphen aan den Rijn + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63890055 + wikidata_label: Bibliotheek Alphen Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Bibliotheek + Rijn en Venen, de openbare bibliotheekvoorziening in Alphen aan den Rijn en omstreken + fetch_timestamp: '2025-11-28T12:22:39.571937+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.1302169 + longitude: 4.6665075 + wikidata_identifiers: + Website: https://www.bibliotheekrijnenvenen.nl/service/vestigingen-en-openingstijden/openingstijden/openingstijden-detail.199261.html +google_maps_enrichment: + place_id: ChIJa-UL0fnaxUcRrKjefOAstg4 + name: Bibliotheek Rijn en Venen - Alphen-Centrum + fetch_timestamp: '2025-11-28T12:25:22.294541+00:00' + api_status: OK + coordinates: + latitude: 52.1304379 + longitude: 4.6652737 + formatted_address: Aarkade 10, 2406 BV Alphen aan den Rijn + short_address: Aarkade 10, Alphen aan den Rijn + address_components: + - long_name: '10' + short_name: '10' + types: + - street_number + - long_name: Aarkade + short_name: Aarkade + types: + - route + - long_name: Alphen aan den Rijn + short_name: Alphen aan den Rijn + types: + - locality + - political + - long_name: Alphen aan Den Rijn + short_name: Alphen aan Den Rijn + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2406 BV + short_name: 2406 BV + types: + - postal_code + phone_local: 0172 475 771 + phone_international: +31 172 475 771 + website: http://www.bibliotheekrijnenvenen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 13 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 13:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â21:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 13:00â17:00' + rating: 4.5 + total_ratings: 108 + google_maps_url: https://maps.google.com/?cid=1060084104971593900&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rijn en Venen, Alphen aan den Rijn, Netherlands diff --git a/data/nde/enriched/entries/1434_kb_isil.yaml b/data/nde/enriched/entries/1434_kb_isil.yaml new file mode 100644 index 0000000000..54f15d25b6 --- /dev/null +++ b/data/nde/enriched/entries/1434_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Venray + organisatie: Biblionu Venray + type_organisatie: bibliotheek + isil_code_kb: NL-0835470000 + type: + - L +entry_index: 1434 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835470000 + name: Biblionu Venray + city: Venray + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962336 + wikidata_label: BiblioNu + wikidata_description: bibliotheekorganisatie in de gemeenten Horst aan de Maas en + Venray, Nederland + fetch_timestamp: '2025-11-28T12:22:39.591217+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.biblionu.nl + match_confidence: 0.796 +google_maps_enrichment: + place_id: ChIJu6grx_g_x0cR6RERxxSWhrk + name: de Bibliotheek Venray + fetch_timestamp: '2025-11-28T12:25:23.049993+00:00' + api_status: OK + coordinates: + latitude: 51.5243757 + longitude: 5.973936999999999 + formatted_address: Gouden Leeuwpad 3, 5801 ME Venray + short_address: Gouden Leeuwpad 3, Venray + address_components: + - long_name: '3' + short_name: '3' + types: + - street_number + - long_name: Gouden Leeuwpad + short_name: Gouden Leeuwpad + types: + - route + - long_name: Venray + short_name: Venray + types: + - locality + - political + - long_name: Venray + short_name: Venray + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5801 ME + short_name: 5801 ME + types: + - postal_code + phone_local: 0478 581 970 + phone_international: +31 478 581 970 + website: http://www.biblionu.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 13:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 43 + google_maps_url: https://maps.google.com/?cid=13368537559879193065&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Biblionu Venray, Venray, Netherlands diff --git a/data/nde/enriched/entries/1435_kb_isil.yaml b/data/nde/enriched/entries/1435_kb_isil.yaml new file mode 100644 index 0000000000..c74107838f --- /dev/null +++ b/data/nde/enriched/entries/1435_kb_isil.yaml @@ -0,0 +1,157 @@ +original_entry: + plaatsnaam_bezoekadres: Zaandam + organisatie: Bieb voor de Zaanstreek + type_organisatie: bibliotheek + isil_code_kb: NL-0835500000 + type: + - L +entry_index: 1435 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835500000 + name: Bieb voor de Zaanstreek + city: Zaandam + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962406 + wikidata_label: De Bieb voor de Zaanstreek + wikidata_description: Bibliotheekorganisatie in de Zaanstreek, gemeenten Zaanstad, + Oostzaan en Wormerland, Nederland + fetch_timestamp: '2025-11-28T12:22:39.615341+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://debieb.nl/ + match_confidence: 0.939 +google_maps_enrichment: + place_id: ChIJBSUDYdr8xUcR8f43BEh_dQA + name: De Bieb Zaandam + fetch_timestamp: '2025-11-28T12:25:23.741732+00:00' + api_status: OK + coordinates: + latitude: 52.446048999999995 + longitude: 4.819469 + formatted_address: Westzijde 170 A, 1506 EK Zaandam + short_address: Westzijde 170 A, Zaandam + address_components: + - long_name: 170 A + short_name: 170 A + types: + - street_number + - long_name: Westzijde + short_name: Westzijde + types: + - route + - long_name: Zaandam + short_name: Zaandam + types: + - locality + - political + - long_name: Zaanstad + short_name: Zaanstad + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1506 EK + short_name: 1506 EK + types: + - postal_code + phone_local: 075 617 2252 + phone_international: +31 75 617 2252 + website: https://www.debieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 11 + minute: 0 + close: + day: 0 + hour: 15 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 20 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 20 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 20 + minute: 30 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 08:30â20:30' + - 'dinsdag: 08:30â20:30' + - 'woensdag: 08:30â20:30' + - 'donderdag: 08:30â20:30' + - 'vrijdag: 08:30â20:30' + - 'zaterdag: 11:00â15:00' + - 'zondag: 11:00â15:00' + rating: 3.9 + total_ratings: 135 + google_maps_url: https://maps.google.com/?cid=33072519560298225&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bieb voor de Zaanstreek, Zaandam, Netherlands diff --git a/data/nde/enriched/entries/1436_kb_isil.yaml b/data/nde/enriched/entries/1436_kb_isil.yaml new file mode 100644 index 0000000000..7a69353d81 --- /dev/null +++ b/data/nde/enriched/entries/1436_kb_isil.yaml @@ -0,0 +1,154 @@ +original_entry: + plaatsnaam_bezoekadres: Hoorn + organisatie: Bibliotheek Hoorn + type_organisatie: bibliotheek + isil_code_kb: NL-0835510000 + type: + - L +entry_index: 1436 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835510000 + name: Bibliotheek Hoorn + city: Hoorn + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962107 + wikidata_label: Bibliotheek Hoorn + wikidata_description: bibliotheekorganisatie in de gemeente Hoorn, Nederland + fetch_timestamp: '2025-11-28T12:22:39.625985+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekhoorn.nl + match_confidence: 1.15 +google_maps_enrichment: + place_id: ChIJIcEU4gipyEcRPZkAd174uQY + name: Bibliotheek Hoorn + fetch_timestamp: '2025-11-28T12:25:24.581281+00:00' + api_status: OK + coordinates: + latitude: 52.641261500000006 + longitude: 5.0615179999999995 + formatted_address: Wisselstraat 8, 1621 CT Hoorn + short_address: Wisselstraat 8, Hoorn + address_components: + - long_name: '8' + short_name: '8' + types: + - street_number + - long_name: Wisselstraat + short_name: Wisselstraat + types: + - route + - long_name: Binnenstad Hoorn + short_name: Binnenstad Hoorn + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Hoorn + short_name: Hoorn + types: + - locality + - political + - long_name: Hoorn + short_name: Hoorn + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1621 CT + short_name: 1621 CT + types: + - postal_code + phone_local: 0229 219 441 + phone_international: +31 229 219 441 + website: http://www.bibliotheekhoorn.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 12 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 12:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 50 + google_maps_url: https://maps.google.com/?cid=484691519526181181&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Hoorn, Hoorn, Netherlands diff --git a/data/nde/enriched/entries/1437_kb_isil.yaml b/data/nde/enriched/entries/1437_kb_isil.yaml new file mode 100644 index 0000000000..810ac3aea4 --- /dev/null +++ b/data/nde/enriched/entries/1437_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Purmerend + organisatie: Bibliotheek Waterland + type_organisatie: bibliotheek + isil_code_kb: NL-0835520000 + type: + - L +entry_index: 1437 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835520000 + name: Bibliotheek Waterland + city: Purmerend + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962225 + wikidata_label: Bibliotheek Waterland + wikidata_description: Bibliotheekorganisatie in de gemeenten Purmerend, Edam-Volendam, + Landsmeer en Waterland, Nederland + fetch_timestamp: '2025-11-28T12:22:39.643385+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekwaterland.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJRbEIONAGxkcRl0BCCUWrDno + name: Bibliotheek Waterland + fetch_timestamp: '2025-11-28T12:25:25.229655+00:00' + api_status: OK + coordinates: + latitude: 52.504725699999995 + longitude: 4.9574671 + formatted_address: Waterlandlaan 40, 1441 MP Purmerend + short_address: Waterlandlaan 40, Purmerend + address_components: + - long_name: '40' + short_name: '40' + types: + - street_number + - long_name: Waterlandlaan + short_name: Waterlandlaan + types: + - route + - long_name: Purmerend + short_name: Purmerend + types: + - locality + - political + - long_name: Purmerend + short_name: Purmerend + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1441 MP + short_name: 1441 MP + types: + - postal_code + phone_local: 0299 250 500 + phone_international: +31 299 250 500 + website: http://www.bibliotheekwaterland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 126 + google_maps_url: https://maps.google.com/?cid=8795155435297587351&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Waterland, Purmerend, Netherlands diff --git a/data/nde/enriched/entries/1438_kb_isil.yaml b/data/nde/enriched/entries/1438_kb_isil.yaml new file mode 100644 index 0000000000..ce945197dd --- /dev/null +++ b/data/nde/enriched/entries/1438_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Wageningen + organisatie: bblthk Wageningen + type_organisatie: bibliotheek + isil_code_kb: NL-0835560000 + type: + - L +entry_index: 1438 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835560000 + name: bblthk Wageningen + city: Wageningen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764037 + wikidata_label: Bibliotheek Wageningen + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Wageningen, de openbare bibliotheekvoorziening in de gemeente + Wageningen, Nederland + fetch_timestamp: '2025-11-28T12:22:39.644388+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.9675573 + longitude: 5.665798 + wikidata_identifiers: + Website: https://www.bblthk.nl/praktisch/waar-vindt-u-ons.html +google_maps_enrichment: + place_id: ChIJQ9saVV6rx0cRozjWVDXmTeg + name: de bblthk (Bibliotheek) + fetch_timestamp: '2025-11-28T12:25:25.900597+00:00' + api_status: OK + coordinates: + latitude: 51.96759060000001 + longitude: 5.6657676 + formatted_address: Stationsstraat 2, 6701 AM Wageningen + short_address: Stationsstraat 2, Wageningen + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Stationsstraat + short_name: Stationsstraat + types: + - route + - long_name: Wageningen + short_name: Wageningen + types: + - locality + - political + - long_name: Wageningen + short_name: Wageningen + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6701 AM + short_name: 6701 AM + types: + - postal_code + phone_local: 0317 413 352 + phone_international: +31 317 413 352 + website: http://www.bblthk.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 48 + google_maps_url: https://maps.google.com/?cid=16739288506736982179&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek bblthk Wageningen, Wageningen, Netherlands diff --git a/data/nde/enriched/entries/1439_kb_isil.yaml b/data/nde/enriched/entries/1439_kb_isil.yaml new file mode 100644 index 0000000000..7d15a1ed2b --- /dev/null +++ b/data/nde/enriched/entries/1439_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Delft + organisatie: DOK + type_organisatie: bibliotheek + isil_code_kb: NL-0835590000 + type: + - L +entry_index: 1439 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835590000 + name: DOK + city: Delft + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q1984998 + wikidata_label: Bibliotheek DOK Delft Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van DOK, de + openbare bibliotheekvoorziening in Delft + fetch_timestamp: '2025-11-28T12:22:39.646043+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.0087609 + longitude: 4.3629297 + wikidata_identifiers: + Website: https://www.dok.info/openingstijden/detail.199318.html +google_maps_enrichment: + place_id: ChIJX3FjFuq1xUcR_J8Ve9ExOeY + name: DOK in OPEN + fetch_timestamp: '2025-11-28T12:25:26.631524+00:00' + api_status: OK + coordinates: + latitude: 52.0087981 + longitude: 4.3630797 + formatted_address: Vesteplein 100, 2611 WG Delft + short_address: Vesteplein 100, Delft + address_components: + - long_name: '100' + short_name: '100' + types: + - street_number + - long_name: Vesteplein + short_name: Vesteplein + types: + - route + - long_name: Delft + short_name: Delft + types: + - locality + - political + - long_name: Delft + short_name: Delft + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2611 WG + short_name: 2611 WG + types: + - postal_code + phone_local: 015 212 3450 + phone_international: +31 15 212 3450 + website: http://www.dok.info/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 23 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 23 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 23 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 23 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 23 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â23:00' + - 'dinsdag: 09:00â23:00' + - 'woensdag: 09:00â23:00' + - 'donderdag: 09:00â23:00' + - 'vrijdag: 09:00â23:00' + - 'zaterdag: 09:00â17:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 230 + google_maps_url: https://maps.google.com/?cid=16589345478178873340&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek DOK, Delft, Netherlands diff --git a/data/nde/enriched/entries/1440_kb_isil.yaml b/data/nde/enriched/entries/1440_kb_isil.yaml new file mode 100644 index 0000000000..cf48863c12 --- /dev/null +++ b/data/nde/enriched/entries/1440_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Valkenburg + organisatie: Heuvellandbibliotheken + type_organisatie: bibliotheek + isil_code_kb: NL-0835600000 + type: + - L +entry_index: 1440 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835600000 + name: Heuvellandbibliotheken + city: Valkenburg + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962326 + wikidata_label: Heuvellandbibliotheken + wikidata_description: bibliotheekorganisatie in de gemeenten Valkenburg, Vaals en + Eijsden-Margraten, Nederland + fetch_timestamp: '2025-11-28T12:22:39.668300+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.heuvellandbibliotheken.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJmW5pjVSVwEcREbhc4-QlD6M + name: Stichting Heuvellandbibliotheken + fetch_timestamp: '2025-11-28T12:25:27.339594+00:00' + api_status: OK + coordinates: + latitude: 50.8626198 + longitude: 5.8355073 + formatted_address: Berkelplein 99, 6301 ZC Valkenburg + short_address: Berkelplein 99, Valkenburg + address_components: + - long_name: '99' + short_name: '99' + types: + - street_number + - long_name: Berkelplein + short_name: Berkelplein + types: + - route + - long_name: Valkenburg + short_name: Valkenburg + types: + - locality + - political + - long_name: Valkenburg aan de Geul + short_name: Valkenburg aan de Geul + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6301 ZC + short_name: 6301 ZC + types: + - postal_code + phone_local: 043 601 2063 + phone_international: +31 43 601 2063 + website: https://www.heuvellandbibliotheken.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 13 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 13 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 13:00â17:00' + - 'dinsdag: Gesloten' + - 'woensdag: 09:00â17:00' + - 'donderdag: 13:00â17:00' + - 'vrijdag: 13:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 12 + google_maps_url: https://maps.google.com/?cid=11749651617830189073&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Heuvellandbibliotheken, Valkenburg, Netherlands diff --git a/data/nde/enriched/entries/1441_kb_isil.yaml b/data/nde/enriched/entries/1441_kb_isil.yaml new file mode 100644 index 0000000000..e08b39232b --- /dev/null +++ b/data/nde/enriched/entries/1441_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Wijchen + organisatie: Bibliotheek Wijchen + type_organisatie: bibliotheek + isil_code_kb: NL-0835670000 + type: + - L +entry_index: 1441 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835670000 + name: Bibliotheek Wijchen + city: Wijchen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915745 + wikidata_label: Bibliotheek Wijhe + wikidata_description: Openbare bibliotheekvestiging in Wijhe, Overijssel + fetch_timestamp: '2025-11-28T12:22:39.679648+00:00' + match_method: fuzzy_name_match + wikidata_coordinates: + latitude: 52.3881722 + longitude: 6.1349009 + wikidata_identifiers: + Website: https://www.bibliotheeksalland.nl/bibliotheek/vestigingen-en-openingstijden#269398 + match_confidence: 0.833 +google_maps_enrichment: + place_id: ChIJL974CrIGx0cRweBeahoUWyQ + name: de Bibliotheek Wijchen + fetch_timestamp: '2025-11-28T12:25:28.023181+00:00' + api_status: OK + coordinates: + latitude: 51.802890399999995 + longitude: 5.7369313 + formatted_address: Campuslaan 8, 6602 HX Wijchen + short_address: Campuslaan 8, Wijchen + address_components: + - long_name: '8' + short_name: '8' + types: + - street_number + - long_name: Campuslaan + short_name: Campuslaan + types: + - route + - long_name: Wijchen + short_name: Wijchen + types: + - locality + - political + - long_name: Wijchen + short_name: Wijchen + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6602 HX + short_name: 6602 HX + types: + - postal_code + phone_local: 024 641 7144 + phone_international: +31 24 641 7144 + website: http://www.bibliotheek-wijchen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 09:30â17:30' + - 'dinsdag: 09:30â17:30' + - 'woensdag: 09:30â17:30' + - 'donderdag: 09:30â17:30' + - 'vrijdag: 09:30â20:00' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 53 + google_maps_url: https://maps.google.com/?cid=2619709711932383425&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Wijchen, Wijchen, Netherlands diff --git a/data/nde/enriched/entries/1442_kb_isil.yaml b/data/nde/enriched/entries/1442_kb_isil.yaml new file mode 100644 index 0000000000..5f73cdb292 --- /dev/null +++ b/data/nde/enriched/entries/1442_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Maassluis + organisatie: De Plataan + type_organisatie: bibliotheek + isil_code_kb: NL-0835690000 + type: + - L +entry_index: 1442 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835690000 + name: De Plataan + city: Maassluis + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785956 + wikidata_label: Bibliotheek Maassluis + wikidata_description: hoofdvestiging en administratief hoofdkantoor van de Bibliotheek + de Plataan, de openbare bibliotheekvoorziening in de gemeenten Maassluis, Midden-Delfland + en Vlaardingen, Nederland + fetch_timestamp: '2025-11-28T12:22:39.681554+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.9289685 + longitude: 4.2375541 + wikidata_identifiers: + Website: https://www.debibliotheekmm.nl/openingstijden/detail.1474775.html +google_maps_enrichment: + place_id: ChIJP-J18sNMxEcRS1OUBT3YmgU + name: Bibliotheek de Plataan Maassluis + fetch_timestamp: '2025-11-28T12:25:28.682557+00:00' + api_status: OK + coordinates: + latitude: 51.928873599999996 + longitude: 4.2376764 + formatted_address: Uiverlaan 18, 3145 XN Maassluis + short_address: Uiverlaan 18, Maassluis + address_components: + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: Uiverlaan + short_name: Uiverlaan + types: + - route + - long_name: Maassluis + short_name: Maassluis + types: + - locality + - political + - long_name: Maassluis + short_name: Maassluis + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3145 XN + short_name: 3145 XN + types: + - postal_code + phone_local: 085 043 6741 + phone_international: +31 85 043 6741 + website: https://www.debibliotheekdeplataan.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 11 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 30 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 11:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 10:30â13:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 35 + google_maps_url: https://maps.google.com/?cid=403872873201292107&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek De Plataan, Maassluis, Netherlands diff --git a/data/nde/enriched/entries/1443_kb_isil.yaml b/data/nde/enriched/entries/1443_kb_isil.yaml new file mode 100644 index 0000000000..29f3732d29 --- /dev/null +++ b/data/nde/enriched/entries/1443_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Bovenkarspel + organisatie: Westfriese Bibliotheken + type_organisatie: bibliotheek + isil_code_kb: NL-0835700000 + type: + - L +entry_index: 1443 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835700000 + name: Westfriese Bibliotheken + city: Bovenkarspel + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q60499453 + wikidata_label: Bibliotheek Stede Broec + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de Westfriese + Bibliotheken in Bovenkarspel, gemeente Stede Broec + fetch_timestamp: '2025-11-28T12:22:39.682634+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.6974 + longitude: 5.23489 + wikidata_identifiers: + Website: https://www.westfriesebibliotheken.nl/klantenservice/vestigingen-en-openingstijden/detail.199913.html +google_maps_enrichment: + place_id: ChIJY5ysdm2kyEcRUpvw5FJhCk8 + name: Bibliotheek Stede Broec + fetch_timestamp: '2025-11-28T12:25:29.381989+00:00' + api_status: OK + coordinates: + latitude: 52.6973829 + longitude: 5.2350039 + formatted_address: Stationslaan 2, 1611 KZ Bovenkarspel + short_address: Stationslaan 2, Bovenkarspel + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Stationslaan + short_name: Stationslaan + types: + - route + - long_name: Bovenkarspel + short_name: Bovenkarspel + types: + - locality + - political + - long_name: Stede Broec + short_name: Stede Broec + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1611 KZ + short_name: 1611 KZ + types: + - postal_code + phone_local: 0228 743 943 + phone_international: +31 228 743 943 + website: http://www.westfriesebibliotheken.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 19 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 09:30â17:30' + - 'dinsdag: 09:30â17:30' + - 'woensdag: 09:30â17:30' + - 'donderdag: 09:30â19:30' + - 'vrijdag: 09:30â17:30' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 24 + google_maps_url: https://maps.google.com/?cid=5695471687419599698&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Westfriese Bibliotheken, Bovenkarspel, Netherlands diff --git a/data/nde/enriched/entries/1444_kb_isil.yaml b/data/nde/enriched/entries/1444_kb_isil.yaml new file mode 100644 index 0000000000..704f336df0 --- /dev/null +++ b/data/nde/enriched/entries/1444_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Didam + organisatie: Bibliotheek Montferland + type_organisatie: bibliotheek + isil_code_kb: NL-0835790000 + type: + - L +entry_index: 1444 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835790000 + name: Bibliotheek Montferland + city: Didam + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785960 + wikidata_label: Bibliotheek Didam + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek Montferland, de openbare bibliotheekvoorziening in de gemeente Montferland, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.683731+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.9389282 + longitude: 6.1296912 + wikidata_identifiers: + Website: https://www.bibliotheekmontferland.nl/vestigingen-en-openingstijden/detail.199891.html +google_maps_enrichment: + place_id: ChIJZ5BBK9Cex0cR1N3nWOaW0II + name: Bibliotheek Montferland đ + fetch_timestamp: '2025-11-28T12:25:30.119594+00:00' + api_status: OK + coordinates: + latitude: 51.941478599999996 + longitude: 6.1293546999999995 + formatted_address: Waverlo 1, 6942 RG Didam + short_address: Waverlo 1, Didam + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Waverlo + short_name: Waverlo + types: + - route + - long_name: Didam + short_name: Didam + types: + - locality + - political + - long_name: Montferland + short_name: Montferland + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6942 RG + short_name: 6942 RG + types: + - postal_code + phone_local: 0316 221 184 + phone_international: +31 316 221 184 + website: https://www.bibliotheekmontferland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 11:00â14:00' + - 'zondag: Gesloten' + rating: 4.3 + total_ratings: 26 + google_maps_url: https://maps.google.com/?cid=9426199936164683220&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Montferland, Didam, Netherlands diff --git a/data/nde/enriched/entries/1445_kb_isil.yaml b/data/nde/enriched/entries/1445_kb_isil.yaml new file mode 100644 index 0000000000..2e17c8699f --- /dev/null +++ b/data/nde/enriched/entries/1445_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Katwijk + organisatie: Planck + type_organisatie: bibliotheek + isil_code_kb: NL-0835850000 + type: + - L +entry_index: 1445 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835850000 + name: Planck + city: Katwijk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785965 + wikidata_label: Bibliotheek Katwijk aan Zee + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Katwijk, de openbare bibliotheekvoorziening in de gemeente + Katwijk, Nederland + fetch_timestamp: '2025-11-28T12:22:39.685100+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.2010933 + longitude: 4.3966954 + wikidata_identifiers: + Website: https://www.bibliotheekkatwijk.nl/openingstijden/detail.199369.html +google_maps_enrichment: + place_id: ChIJ18Whakm_xUcR8mljdHtd-uM + name: Cultuurhuis Planck, Bibliotheek Schelpendam + fetch_timestamp: '2025-11-28T12:25:30.760255+00:00' + api_status: OK + coordinates: + latitude: 52.200964299999995 + longitude: 4.3966768 + formatted_address: Schelpendam 1, 2225 MA Katwijk aan Zee + short_address: Schelpendam 1, Katwijk aan Zee + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Schelpendam + short_name: Schelpendam + types: + - route + - long_name: Katwijk aan Zee + short_name: Katwijk aan Zee + types: + - locality + - political + - long_name: Katwijk + short_name: Katwijk + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2225 MA + short_name: 2225 MA + types: + - postal_code + phone_local: 071 401 4819 + phone_international: +31 71 401 4819 + website: https://cultuurhuisplanck.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â17:00' + - 'dinsdag: 10:00â20:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 26 + google_maps_url: https://maps.google.com/?cid=16427545375602338290&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Planck, Katwijk, Netherlands diff --git a/data/nde/enriched/entries/1446_kb_isil.yaml b/data/nde/enriched/entries/1446_kb_isil.yaml new file mode 100644 index 0000000000..94768ccdc6 --- /dev/null +++ b/data/nde/enriched/entries/1446_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Heinkenszand + organisatie: Bibliotheek Oosterschelde + type_organisatie: bibliotheek + isil_code_kb: NL-0835890000 + type: + - L +entry_index: 1446 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0835890000 + name: Bibliotheek Oosterschelde + city: Heinkenszand + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962078 + wikidata_label: Bibliotheek Oosterschelde + wikidata_description: bibliotheekorganisatie in de regio Oosterschelde, gemeenten + Borsele, Goes, Kapelle, Reimerswaal, Schouwen-Duiveland en Tholen, Nederland + fetch_timestamp: '2025-11-28T12:22:39.700989+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekoosterschelde.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJ66AghL-IxEcR6MYr-0hz4D4 + name: Bibliotheek Oosterschelde + fetch_timestamp: '2025-11-28T12:25:31.403952+00:00' + api_status: OK + coordinates: + latitude: 51.4736592 + longitude: 3.8189393 + formatted_address: Stengeplein 1, 4451 CZ Heinkenszand + short_address: Stengeplein 1, Heinkenszand + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Stengeplein + short_name: Stengeplein + types: + - route + - long_name: Heinkenszand + short_name: Heinkenszand + types: + - locality + - political + - long_name: Borsele + short_name: Borsele + types: + - administrative_area_level_2 + - political + - long_name: Zeeland + short_name: ZE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4451 CZ + short_name: 4451 CZ + types: + - postal_code + phone_local: 0113 562 810 + phone_international: +31 113 562 810 + website: https://www.bibliotheekoosterschelde.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 09:30â17:00' + - 'dinsdag: 09:30â17:00' + - 'woensdag: 09:30â17:00' + - 'donderdag: 09:30â17:00' + - 'vrijdag: 14:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 3.3 + total_ratings: 3 + google_maps_url: https://maps.google.com/?cid=4530747982423508712&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Oosterschelde, Heinkenszand, Netherlands diff --git a/data/nde/enriched/entries/1447_kb_isil.yaml b/data/nde/enriched/entries/1447_kb_isil.yaml new file mode 100644 index 0000000000..70f586dc03 --- /dev/null +++ b/data/nde/enriched/entries/1447_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Harderwijk + organisatie: Bibliotheek Noordwest Veluwe + type_organisatie: bibliotheek + isil_code_kb: NL-0850380000 + type: + - L +entry_index: 1447 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0850380000 + name: Bibliotheek Noordwest Veluwe + city: Harderwijk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962023 + wikidata_label: Bibliotheek Noordwest Veluwe + wikidata_description: bibliotheekorganisatie in de regio Noordwest-Veluwe, gemeenten + Harderwijk, Ermelo, Nunspeet en Putten, Nederland + fetch_timestamp: '2025-11-28T12:22:39.720730+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheeknoordwestveluwe.nl/ + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJbWue3NYzxkcRELSYcnHguWs + name: Bibliotheek Noordwest Veluwe - Harderwijk + fetch_timestamp: '2025-11-28T12:25:32.067113+00:00' + api_status: OK + coordinates: + latitude: 52.3519948 + longitude: 5.6225119 + formatted_address: Havendam 56, 3841 AA Harderwijk + short_address: Gemeentehuis, Havendam 56, Harderwijk + address_components: + - long_name: '56' + short_name: '56' + types: + - street_number + - long_name: Havendam + short_name: Havendam + types: + - route + - long_name: Harderwijk + short_name: Harderwijk + types: + - locality + - political + - long_name: Harderwijk + short_name: Harderwijk + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3841 AA + short_name: 3841 AA + types: + - postal_code + phone_local: 085 273 3575 + phone_international: +31 85 273 3575 + website: http://www.bibliotheeknoordwestveluwe.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 08:00â17:30' + - 'dinsdag: 08:00â17:30' + - 'woensdag: 08:00â17:30' + - 'donderdag: 08:00â20:00' + - 'vrijdag: 08:00â17:30' + - 'zaterdag: 10:00â15:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 40 + google_maps_url: https://maps.google.com/?cid=7762482210608296976&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Noordwest Veluwe, Harderwijk, Netherlands diff --git a/data/nde/enriched/entries/1448_kb_isil.yaml b/data/nde/enriched/entries/1448_kb_isil.yaml new file mode 100644 index 0000000000..e297bc60da --- /dev/null +++ b/data/nde/enriched/entries/1448_kb_isil.yaml @@ -0,0 +1,165 @@ +original_entry: + plaatsnaam_bezoekadres: Dordrecht + organisatie: Bibliotheek AanZet + type_organisatie: bibliotheek + isil_code_kb: NL-0851030000 + type: + - L +entry_index: 1448 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0851030000 + name: Bibliotheek AanZet + city: Dordrecht + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59871338 + wikidata_label: Bibliotheek Dordrecht Centrum + wikidata_description: hoofdvestiging en administratief hoofdkantoor van de Openbare + Bibliotheek AanZet + fetch_timestamp: '2025-11-28T12:22:39.721817+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.8145238 + longitude: 4.6648565 + wikidata_identifiers: + Website: https://www.debibliotheekaanzet.nl/stadsbibliotheek-dordrecht +google_maps_enrichment: + place_id: ChIJhVFiCc0uxEcRiGPF4YeBeio + name: Stadsbibliotheek Dordrecht + fetch_timestamp: '2025-11-28T12:25:32.727612+00:00' + api_status: OK + coordinates: + latitude: 51.814504899999996 + longitude: 4.664912 + formatted_address: Groenmarkt 153, 3311 BD Dordrecht + short_address: Groenmarkt 153, Dordrecht + address_components: + - long_name: '153' + short_name: '153' + types: + - street_number + - long_name: Groenmarkt + short_name: Groenmarkt + types: + - route + - long_name: Historische Binnenstad + short_name: Historische Binnenstad + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Dordrecht + short_name: Dordrecht + types: + - locality + - political + - long_name: Dordrecht + short_name: Dordrecht + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3311 BD + short_name: 3311 BD + types: + - postal_code + phone_local: 088 242 5073 + phone_international: +31 88 242 5073 + website: http://www.debibliotheekaanzet.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 21 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â21:00' + - 'dinsdag: 09:30â21:00' + - 'woensdag: 09:30â21:00' + - 'donderdag: 09:30â20:00' + - 'vrijdag: 09:30â21:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: 12:00â17:00' + rating: 4.4 + total_ratings: 112 + google_maps_url: https://maps.google.com/?cid=3060901317360051080&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek AanZet, Dordrecht, Netherlands diff --git a/data/nde/enriched/entries/1449_kb_isil.yaml b/data/nde/enriched/entries/1449_kb_isil.yaml new file mode 100644 index 0000000000..92ca32441c --- /dev/null +++ b/data/nde/enriched/entries/1449_kb_isil.yaml @@ -0,0 +1,177 @@ +original_entry: + plaatsnaam_bezoekadres: Almere + organisatie: nieuwe bibliotheek + type_organisatie: bibliotheek + isil_code_kb: NL-0870010000 + type: + - L +entry_index: 1449 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870010000 + name: nieuwe bibliotheek + city: Almere + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q1902577 + wikidata_label: Bibliotheek Almere Stad + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van De nieuwe + bibliotheek, de openbare bibliotheekvoorziening in de gemeente Almere + fetch_timestamp: '2025-11-28T12:22:39.723477+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3712 + longitude: 5.2206 + wikidata_inception: '2010-01-01' + wikidata_identifiers: + Website: https://www.denieuwebibliotheek.nl/vestigingen-en-openingstijden/detail.163907.html +google_maps_enrichment: + place_id: ChIJG0coduEWxkcRLCevZgrlGzw + name: de nieuwe bibliotheek + fetch_timestamp: '2025-11-28T12:25:33.428488+00:00' + api_status: OK + coordinates: + latitude: 52.3714762 + longitude: 5.2207254 + formatted_address: Stadhuisplein 101, 1315 HS Almere + short_address: Stadhuisplein 101, Almere + address_components: + - long_name: '101' + short_name: '101' + types: + - street_number + - long_name: Stadhuisplein + short_name: Stadhuisplein + types: + - route + - long_name: Almere Stad + short_name: Almere Stad + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Almere + short_name: Almere + types: + - locality + - political + - long_name: Almere + short_name: Almere + types: + - administrative_area_level_2 + - political + - long_name: Flevoland + short_name: FL + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1315 HS + short_name: 1315 HS + types: + - postal_code + phone_local: 036 548 6000 + phone_international: +31 36 548 6000 + website: http://www.denieuwebibliotheek.nl/ + google_place_types: + - library + - coffee_shop + - movie_theater + - diner + - performing_arts_theater + - public_bathroom + - cafe + - event_venue + - food_store + - restaurant + - food + - point_of_interest + - store + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â18:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 12:00â17:00' + rating: 4.2 + total_ratings: 215 + google_maps_url: https://maps.google.com/?cid=4331307299482052396&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: nieuwe bibliotheek, Almere, Netherlands diff --git a/data/nde/enriched/entries/1450_kb_isil.yaml b/data/nde/enriched/entries/1450_kb_isil.yaml new file mode 100644 index 0000000000..239dbf4c2f --- /dev/null +++ b/data/nde/enriched/entries/1450_kb_isil.yaml @@ -0,0 +1,201 @@ +original_entry: + plaatsnaam_bezoekadres: Etten-Leur + organisatie: De Nobelaer + type_organisatie: bibliotheek + isil_code_kb: NL-0870050000 + type: + - L +entry_index: 1450 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870050000 + name: De Nobelaer + city: Etten-Leur + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61709035 + wikidata_label: Bibliotheek Etten-Leur + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van de bibliotheekvoorziening + in de gemeente Etten-Leur, Nederland + fetch_timestamp: '2025-11-28T12:22:39.724684+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.5717097 + longitude: 4.640338 + wikidata_identifiers: + Website: https://bibliotheek.nieuwenobelaer.nl/iguana/www.main.cls?surl=NN +google_maps_enrichment: + place_id: ChIJE0tF4UcfxEcR9AtUVD84iJ4 + name: De Nobelaer + fetch_timestamp: '2025-11-28T12:25:34.077824+00:00' + api_status: OK + coordinates: + latitude: 51.56848840000001 + longitude: 4.6424066999999996 + formatted_address: Parklaan 2, 4873 ER Etten-Leur + short_address: Parklaan 2, Etten-Leur + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Parklaan + short_name: Parklaan + types: + - route + - long_name: Etten-Leur + short_name: Etten-Leur + types: + - locality + - political + - long_name: Etten-Leur + short_name: Etten-Leur + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4873 ER + short_name: 4873 ER + types: + - postal_code + phone_local: 076 504 5200 + phone_international: +31 76 504 5200 + website: https://www.denobelaer.nl/?utm_source=google&utm_medium=googlemijnbedrijf + google_place_types: + - cultural_center + - performing_arts_theater + - event_venue + - library + - point_of_interest + - establishment + primary_type: cultural_center + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 22 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 22 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 22 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 22 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 22 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 30 + close: + day: 6 + hour: 13 + minute: 30 + weekday_text: + - 'maandag: 09:00â22:00' + - 'dinsdag: 09:00â22:00' + - 'woensdag: 09:00â22:00' + - 'donderdag: 09:00â22:00' + - 'vrijdag: 09:00â22:00' + - 'zaterdag: 09:30â13:30' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 123 + google_maps_url: https://maps.google.com/?cid=11423442299474152436&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek De Nobelaer, Etten-Leur, Netherlands +website_enrichment: + extraction_timestamp: '2025-11-28T14:30:00+00:00' + extraction_method: exa_web_search + confidence_score: 0.90 + source_urls: + - https://www.hunterdouglasarchitectural.eu/en-NO/project/cultural-centre-de-nobelaer/ + - https://www.stevensvandijck.nl/en/portfolio/new-nobelaer-etten-leur/ + description: > + De Nobelaer is a unique cultural center in Etten-Leur, Netherlands, housing a + theater, library, and arts education under one roof. The new building, designed + by TenBrasWestinga and completed in 2021, brings theatre, literature, and art + together in one dynamic space. + institution_type: MIXED + institution_functions: + - Library + - Theater + - Cultural center + - Music school + - Arts education + building_details: + architect: TenBrasWestinga + construction_period: 2017-2021 + surface_area: 5000 m² + completion_year: 2021 + facilities: + - 500-seat theater with telescopic grandstand + - Library + - Music rooms + - Dance studio + - Daytime catering area + - Living room dynamic meeting space + collection_types: + - books + services: + - Reading room + - Events + - Tours + - Exhibitions + - Music education + - Theater performances + accessibility_info: Modern accessible building + design_features: + - Double-height central area + - Multifunctional rooms + - Large glass surfaces + - Warm wood elements + - Cradle to Cradle Certified Silver ceiling diff --git a/data/nde/enriched/entries/1451_kb_isil.yaml b/data/nde/enriched/entries/1451_kb_isil.yaml new file mode 100644 index 0000000000..b8b192645c --- /dev/null +++ b/data/nde/enriched/entries/1451_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Geldrop + organisatie: Bibliotheek Dommeldal + type_organisatie: bibliotheek + isil_code_kb: NL-0870060000 + type: + - L +entry_index: 1451 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870060000 + name: Bibliotheek Dommeldal + city: Geldrop + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785973 + wikidata_label: Bibliotheek Geldrop + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Basisbibliotheek Dommeldal, de openbare bibliotheekvoorziening in de gemeente + Dommeldal, Nederland + fetch_timestamp: '2025-11-28T12:22:39.725850+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.4227157 + longitude: 5.5601343 + wikidata_identifiers: + Website: https://www.bibliotheekdommeldal.nl/iguana/www.main.cls?surl=vestiginggeldrop +google_maps_enrichment: + place_id: ChIJR9Nny6Enx0cR6bfe7E-hXf4 + name: Bibliotheek Dommeldal Vestiging Geldrop + fetch_timestamp: '2025-11-28T12:25:34.811280+00:00' + api_status: OK + coordinates: + latitude: 51.4226987 + longitude: 5.5600869 + formatted_address: Heuvel 94, 5664 HN Geldrop + short_address: Heuvel 94, Geldrop + address_components: + - long_name: '94' + short_name: '94' + types: + - street_number + - long_name: Heuvel + short_name: Heuvel + types: + - route + - long_name: Geldrop + short_name: Geldrop + types: + - locality + - political + - long_name: Geldrop-Mierlo + short_name: Geldrop-Mierlo + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5664 HN + short_name: 5664 HN + types: + - postal_code + phone_local: 040 286 2805 + phone_international: +31 40 286 2805 + google_place_types: + - library + - internet_cafe + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 11 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 11 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 11 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 11 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 11 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 11:00â17:00' + - 'dinsdag: 11:00â17:00' + - 'woensdag: 11:00â17:00' + - 'donderdag: 11:00â17:00' + - 'vrijdag: 11:00â17:00' + - 'zaterdag: 11:00â17:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 20 + google_maps_url: https://maps.google.com/?cid=18328983423116294121&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Dommeldal, Geldrop, Netherlands diff --git a/data/nde/enriched/entries/1452_kb_isil.yaml b/data/nde/enriched/entries/1452_kb_isil.yaml new file mode 100644 index 0000000000..ed8f8da9ce --- /dev/null +++ b/data/nde/enriched/entries/1452_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Kerkrade + organisatie: Bibliotheek Mijn Streek + type_organisatie: bibliotheek + isil_code_kb: NL-0870080000 + type: + - L +entry_index: 1452 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870080000 + name: Bibliotheek Mijn Streek + city: Kerkrade + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915783 + wikidata_label: Bibliotheek Kerkrade + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Bibliotheek + Kerkrade e.o., de openbare bibliotheekvoorziening in de gemeenten Brunssum, Kerkrade, + Simpelveld en Voerendaal, Limburg + fetch_timestamp: '2025-11-28T12:22:39.726975+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 50.8656576 + longitude: 6.0627223 + wikidata_identifiers: + Website: https://www.bibliotheekkerkrade.nl/klantenservice/vestigingen-en-openingstijden/overzicht/detail.199372.html/hub-bibliotheek-kerkrade/ +google_maps_enrichment: + place_id: ChIJI3CXEqOiwEcRi2dqaYRJ7QI + name: HuB.Bibliotheek Kerkrade + fetch_timestamp: '2025-11-28T12:25:35.492163+00:00' + api_status: OK + coordinates: + latitude: 50.865902 + longitude: 6.0626902 + formatted_address: Martin Buberplein 15, 6461 NC Kerkrade + short_address: Martin Buberplein 15, Kerkrade + address_components: + - long_name: '15' + short_name: '15' + types: + - street_number + - long_name: Martin Buberplein + short_name: Martin Buberplein + types: + - route + - long_name: Kerkrade + short_name: Kerkrade + types: + - locality + - political + - long_name: Kerkrade + short_name: Kerkrade + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6461 NC + short_name: 6461 NC + types: + - postal_code + phone_local: 045 763 0520 + phone_international: +31 45 763 0520 + website: http://www.bibliotheekkerkrade.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 13:00â18:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â18:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 103 + google_maps_url: https://maps.google.com/?cid=210905590609373067&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Mijn Streek, Kerkrade, Netherlands diff --git a/data/nde/enriched/entries/1453_kb_isil.yaml b/data/nde/enriched/entries/1453_kb_isil.yaml new file mode 100644 index 0000000000..81cdf3af95 --- /dev/null +++ b/data/nde/enriched/entries/1453_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Lelystad + organisatie: FlevoMeer Bibliotheek + type_organisatie: bibliotheek + isil_code_kb: NL-0870100000 + type: + - L +entry_index: 1453 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870100000 + name: FlevoMeer Bibliotheek + city: Lelystad + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63677401 + wikidata_label: Hoofdkantoor FlevoMeer Bibliotheek + wikidata_description: Hoofdkantoor/hoofdkwartier van Bibliotheek Flevomeer, de openbare + bibliotheekvoorziening in de gemeenten Dronten, Lelystad, Noordoostpolder, Urk + en Zeewolde + fetch_timestamp: '2025-11-28T12:22:39.728195+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.4781819 + longitude: 5.5015475 + wikidata_identifiers: + Website: https://www.flevomeerbibliotheek.nl/footer/over-ons/anbi-gegevens-van-flevomeer-bibliotheek.html +google_maps_enrichment: + place_id: ChIJS6jwFYwmxkcR0lvWmnZBQl0 + name: FlevoMeer Bibliotheek Lelystad + fetch_timestamp: '2025-11-28T12:25:36.181485+00:00' + api_status: OK + coordinates: + latitude: 52.507904499999995 + longitude: 5.475046799999999 + formatted_address: De Promesse 4, 8232 VP Lelystad + short_address: De Promesse 4, Lelystad + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: De Promesse + short_name: De Promesse + types: + - route + - long_name: Lelystad + short_name: Lelystad + types: + - locality + - political + - long_name: Lelystad + short_name: Lelystad + types: + - administrative_area_level_2 + - political + - long_name: Flevoland + short_name: FL + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8232 VP + short_name: 8232 VP + types: + - postal_code + phone_local: 088 008 0720 + phone_international: +31 88 008 0720 + website: https://www.flevomeerbibliotheek.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 12 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 12:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.1 + total_ratings: 91 + google_maps_url: https://maps.google.com/?cid=6720005571649887186&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: FlevoMeer Bibliotheek, Lelystad, Netherlands diff --git a/data/nde/enriched/entries/1454_kb_isil.yaml b/data/nde/enriched/entries/1454_kb_isil.yaml new file mode 100644 index 0000000000..24a40db00a --- /dev/null +++ b/data/nde/enriched/entries/1454_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: IJmuiden + organisatie: Bibliotheek Velsen + type_organisatie: bibliotheek + isil_code_kb: NL-0870160000 + type: + - L +entry_index: 1454 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870160000 + name: Bibliotheek Velsen + city: IJmuiden + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63677411 + wikidata_label: Bibliotheek Velsen + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Bibliotheek + Velsen, de openbare bibliotheekvoorziening in de gemeente Velsen + fetch_timestamp: '2025-11-28T12:22:39.729043+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.4610936 + longitude: 4.6233078 + wikidata_identifiers: + Website: https://www.bibliotheekvelsen.nl/home/openingstijden/detail.163930.html/centrale-bibliotheek-ijmuiden/ +google_maps_enrichment: + place_id: ChIJ3wP_YPnvxUcRRwyNH1lJODI + name: Bibliotheek Velsen, locatie IJmuiden + fetch_timestamp: '2025-11-28T12:25:36.857176+00:00' + api_status: OK + coordinates: + latitude: 52.4611048 + longitude: 4.6231494 + formatted_address: Dudokplein 16, 1971 EP IJmuiden + short_address: Dudokplein 16, IJmuiden + address_components: + - long_name: '16' + short_name: '16' + types: + - street_number + - long_name: Dudokplein + short_name: Dudokplein + types: + - route + - long_name: IJmuiden + short_name: IJmuiden + types: + - locality + - political + - long_name: Velsen + short_name: Velsen + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1971 EP + short_name: 1971 EP + types: + - postal_code + phone_local: 0255 525 353 + phone_international: +31 255 525 353 + website: http://www.bibliotheekvelsen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 39 + google_maps_url: https://maps.google.com/?cid=3618722947722447943&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Velsen, IJmuiden, Netherlands diff --git a/data/nde/enriched/entries/1455_kb_isil.yaml b/data/nde/enriched/entries/1455_kb_isil.yaml new file mode 100644 index 0000000000..dd5c3d8c3e --- /dev/null +++ b/data/nde/enriched/entries/1455_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Wassenaar + organisatie: Bibliotheek Voorschoten Wassenaar + type_organisatie: bibliotheek + isil_code_kb: NL-0870170000 + type: + - L +entry_index: 1455 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870170000 + name: Bibliotheek Voorschoten Wassenaar + city: Wassenaar + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962370 + wikidata_label: Stichting Openbare Bibliotheek Voorschoten â Wassenaar + wikidata_description: bibliotheekorganisatie in de gemeenten Voorschoten en Wassenaar, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.754822+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.obvw.nl + match_confidence: 0.817 +google_maps_enrichment: + place_id: ChIJ-xQTAGW4xUcRh5IRI-6mz6Y + name: Bibliotheek Voorschoten-Wassenaar + fetch_timestamp: '2025-11-28T12:25:37.578137+00:00' + api_status: OK + coordinates: + latitude: 52.1438287 + longitude: 4.3925883 + formatted_address: Langstraat 40, 2242 KM Wassenaar + short_address: Langstraat 40, Wassenaar + address_components: + - long_name: '40' + short_name: '40' + types: + - street_number + - long_name: Langstraat + short_name: Langstraat + types: + - route + - long_name: Wassenaar + short_name: Wassenaar + types: + - locality + - political + - long_name: Wassenaar + short_name: Wassenaar + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2242 KM + short_name: 2242 KM + types: + - postal_code + phone_local: 070 511 3397 + phone_international: +31 70 511 3397 + website: http://www.obvw.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 47 + google_maps_url: https://maps.google.com/?cid=12020009472195924615&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Voorschoten Wassenaar, Wassenaar, Netherlands diff --git a/data/nde/enriched/entries/1456_kb_isil.yaml b/data/nde/enriched/entries/1456_kb_isil.yaml new file mode 100644 index 0000000000..671b25c17c --- /dev/null +++ b/data/nde/enriched/entries/1456_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Wolvega + organisatie: Bibliotheken Zuidoost Fryslân + type_organisatie: bibliotheek + isil_code_kb: NL-0870200000 + type: + - L +entry_index: 1456 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870200000 + name: Bibliotheken Zuidoost Fryslân + city: Wolvega + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61912788 + wikidata_label: Stichting Bibliotheken Midden Fryslân + wikidata_description: Bibliotheekorganisatie in de gemeenten Leeuwarden en Tietjerksteradeel, + Friesland + fetch_timestamp: '2025-11-28T12:22:39.789006+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.dbieb.nl + match_confidence: 0.821 +google_maps_enrichment: + place_id: ChIJZ4VkDJlnyEcRgNvSP27qenU + name: Bibliotheek Wolvega + fetch_timestamp: '2025-11-28T12:25:38.269924+00:00' + api_status: OK + coordinates: + latitude: 52.8771493 + longitude: 6.0055689 + formatted_address: Griffioenpark 10, 8471 KP Wolvega + short_address: Griffioenpark 10, Wolvega + address_components: + - long_name: '10' + short_name: '10' + types: + - street_number + - long_name: Griffioenpark + short_name: Griffioenpark + types: + - route + - long_name: Wolvega + short_name: Wolvega + types: + - locality + - political + - long_name: Weststellingwerf + short_name: Weststellingwerf + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8471 KP + short_name: 8471 KP + types: + - postal_code + phone_local: 0561 612 623 + phone_international: +31 561 612 623 + website: http://www.bzof.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 20 + google_maps_url: https://maps.google.com/?cid=8465336208834354048&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bibliotheken Zuidoost Fryslân, Wolvega, Netherlands diff --git a/data/nde/enriched/entries/1457_kb_isil.yaml b/data/nde/enriched/entries/1457_kb_isil.yaml new file mode 100644 index 0000000000..8861107dcc --- /dev/null +++ b/data/nde/enriched/entries/1457_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Heerenveen + organisatie: Bibliotheken Mar en Fean + type_organisatie: bibliotheek + isil_code_kb: NL-0870290000 + type: + - L +entry_index: 1457 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870290000 + name: Bibliotheken Mar en Fean + city: Heerenveen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.815486+00:00' +google_maps_enrichment: + place_id: ChIJuznzguxeyEcRAbbRocHW6i0 + name: Bibliotheek Heerenveen + fetch_timestamp: '2025-11-28T12:25:39.006491+00:00' + api_status: OK + coordinates: + latitude: 52.95722 + longitude: 5.928519 + formatted_address: Burgemeester Kuperusplein 48, 8442 CL Heerenveen + short_address: Burgemeester Kuperusplein 48, Heerenveen + address_components: + - long_name: '48' + short_name: '48' + types: + - street_number + - long_name: Burgemeester Kuperusplein + short_name: Burgemeester Kuperusplein + types: + - route + - long_name: Heerenveen + short_name: Heerenveen + types: + - locality + - political + - long_name: Heerenveen + short_name: Heerenveen + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8442 CL + short_name: 8442 CL + types: + - postal_code + phone_local: 0513 626 675 + phone_international: +31 513 626 675 + website: http://www.bmf.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:30' + - 'dinsdag: 09:00â21:00' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â17:30' + - 'zaterdag: 09:00â15:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 40 + google_maps_url: https://maps.google.com/?cid=3308693003388958209&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bibliotheken Mar en Fean, Heerenveen, Netherlands diff --git a/data/nde/enriched/entries/1458_kb_isil.yaml b/data/nde/enriched/entries/1458_kb_isil.yaml new file mode 100644 index 0000000000..841bc70564 --- /dev/null +++ b/data/nde/enriched/entries/1458_kb_isil.yaml @@ -0,0 +1,69 @@ +original_entry: + plaatsnaam_bezoekadres: Sint Eustatius + organisatie: Bibliotheek Sint Eustatius + type_organisatie: bibliotheek + isil_code_kb: NL-0870310000 + type: + - L +entry_index: 1458 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870310000 + name: Bibliotheek Sint Eustatius + city: Sint Eustatius + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.833511+00:00' +google_maps_enrichment: + place_id: ChIJ8Xa_fmH7EYwRaubtaXboTmY + name: St Eustatius Public Library + fetch_timestamp: '2025-11-28T12:25:39.724892+00:00' + api_status: OK + coordinates: + latitude: 17.4823983 + longitude: -62.9856146 + formatted_address: F2J7+XQ2, Oranjestad, Caribisch Nederland + short_address: F2J7+XQ2, Oranjestad + address_components: + - long_name: F2J7+XQ2 + short_name: F2J7+XQ2 + types: + - plus_code + - long_name: Oranjestad + short_name: Oranjestad + types: + - locality + - political + - long_name: Sint Eustatius + short_name: Sint Eustatius + types: + - administrative_area_level_1 + - political + - long_name: Caribisch Nederland + short_name: BQ + types: + - country + - political + phone_local: 318 2222 + phone_international: +599 318 2222 + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + rating: 5 + total_ratings: 1 + google_maps_url: https://maps.google.com/?cid=7372085235333064298&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Sint Eustatius, Sint Eustatius, Netherlands diff --git a/data/nde/enriched/entries/1459_kb_isil.yaml b/data/nde/enriched/entries/1459_kb_isil.yaml new file mode 100644 index 0000000000..aa75c1e6a2 --- /dev/null +++ b/data/nde/enriched/entries/1459_kb_isil.yaml @@ -0,0 +1,159 @@ +original_entry: + plaatsnaam_bezoekadres: Saba + organisatie: Bibliotheek Saba + type_organisatie: bibliotheek + isil_code_kb: NL-0870320000 + type: + - L +entry_index: 1459 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870320000 + name: Bibliotheek Saba + city: Saba + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.843168+00:00' +google_maps_enrichment: + place_id: ChIJO5jcZWIgDowRbU4uAa9V5iY + name: Queen Wilhelmina Library + fetch_timestamp: '2025-11-28T12:25:40.442357+00:00' + api_status: OK + coordinates: + latitude: 17.624864100000003 + longitude: -63.24928980000001 + formatted_address: JQF2+W7W, The Bottom, Caribisch Nederland + short_address: JQF2+W7W, The Bottom + address_components: + - long_name: JQF2+W7W + short_name: JQF2+W7W + types: + - plus_code + - long_name: The Bottom + short_name: The Bottom + types: + - locality + - political + - long_name: Saba + short_name: Saba + types: + - administrative_area_level_1 + - political + - long_name: Caribisch Nederland + short_name: BQ + types: + - country + - political + phone_local: 416 3310 + phone_international: +599 416 3310 + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 12 + minute: 30 + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 12 + minute: 30 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 12 + minute: 30 + - open: + day: 3 + hour: 14 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 12 + minute: 30 + - open: + day: 4 + hour: 14 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 12 + minute: 30 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 16 + minute: 30 + weekday_text: + - 'maandag: 08:00â12:30, 14:00â17:30' + - 'dinsdag: 08:00â12:30, 14:00â17:30' + - 'woensdag: 08:00â12:30, 14:00â17:30' + - 'donderdag: 08:00â12:30, 14:00â17:30' + - 'vrijdag: 08:00â12:30, 14:00â16:30' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 5 + total_ratings: 2 + google_maps_url: https://maps.google.com/?cid=2803022028212162157&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Saba, Saba, Netherlands diff --git a/data/nde/enriched/entries/1460_kb_isil.yaml b/data/nde/enriched/entries/1460_kb_isil.yaml new file mode 100644 index 0000000000..2103d1bee6 --- /dev/null +++ b/data/nde/enriched/entries/1460_kb_isil.yaml @@ -0,0 +1,69 @@ +original_entry: + plaatsnaam_bezoekadres: Curaçao + organisatie: Bibliotheek Curaçao + type_organisatie: bibliotheek + isil_code_kb: NL-0870330000 + type: + - L +entry_index: 1460 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870330000 + name: Bibliotheek Curaçao + city: Curaçao + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.856960+00:00' +google_maps_enrichment: + place_id: ChIJARfpXYqChI4Rj1gRDsdLQ3E + name: Nationale Bibliotheek Curaçao + fetch_timestamp: '2025-11-28T12:25:41.140282+00:00' + api_status: OK + coordinates: + latitude: 12.105721599999999 + longitude: -68.92669920000002 + formatted_address: 17 Abraham Mendez Chumaceiro Boulevard, Willemstad, Curaçao + short_address: 17 Abraham Mendez Chumaceiro Boulevard, Willemstad + address_components: + - long_name: '17' + short_name: '17' + types: + - street_number + - long_name: Abraham Mendez Chumaceiro Boulevard + short_name: A. M. Chumaceiro Boulevard + types: + - route + - long_name: Willemstad + short_name: Willemstad + types: + - locality + - political + - long_name: Curaçao + short_name: CW + types: + - country + - political + phone_local: 9 841 2665 + phone_international: +599 9 841 2665 + website: http://www.bnkcuracao.com/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: CLOSED_PERMANENTLY + rating: 3.9 + total_ratings: 21 + google_maps_url: https://maps.google.com/?cid=8161450268032063631&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Curaçao, Curaçao, Netherlands diff --git a/data/nde/enriched/entries/1461_kb_isil.yaml b/data/nde/enriched/entries/1461_kb_isil.yaml new file mode 100644 index 0000000000..b9992f1d86 --- /dev/null +++ b/data/nde/enriched/entries/1461_kb_isil.yaml @@ -0,0 +1,125 @@ +original_entry: + plaatsnaam_bezoekadres: Aruba + organisatie: Bibliotheek Aruba + type_organisatie: bibliotheek + isil_code_kb: NL-0870340000 + type: + - L +entry_index: 1461 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870340000 + name: Bibliotheek Aruba + city: Aruba + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.867050+00:00' +google_maps_enrichment: + place_id: ChIJzeCsSr44hY4R6otOhnrWuSc + name: Nationale Bibliotheek van Aruba + fetch_timestamp: '2025-11-28T12:25:41.879895+00:00' + api_status: OK + coordinates: + latitude: 12.514950599999999 + longitude: -70.0294907 + formatted_address: George Madurostraat 13, Oranjestad, Aruba + short_address: George Madurostraat 13, Oranjestad + address_components: + - long_name: '13' + short_name: '13' + types: + - street_number + - long_name: George Madurostraat + short_name: George Madurostraat + types: + - route + - long_name: Oranjestad-Oost + short_name: Oranjestad-Oost + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Oranjestad + short_name: Oranjestad + types: + - locality + - political + - long_name: Aruba + short_name: AW + types: + - country + - political + phone_local: 528 1500 + phone_international: +297 528 1500 + website: http://www.bibliotecanacional.aw/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 19 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 19 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 08:00â19:00' + - 'dinsdag: 08:00â17:00' + - 'woensdag: 08:00â19:00' + - 'donderdag: 08:00â17:00' + - 'vrijdag: 08:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 67 + google_maps_url: https://maps.google.com/?cid=2862554859898309610&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Aruba, Aruba, Netherlands diff --git a/data/nde/enriched/entries/1462_kb_isil.yaml b/data/nde/enriched/entries/1462_kb_isil.yaml new file mode 100644 index 0000000000..ba5c0e9d93 --- /dev/null +++ b/data/nde/enriched/entries/1462_kb_isil.yaml @@ -0,0 +1,127 @@ +original_entry: + plaatsnaam_bezoekadres: Sint Maarten + organisatie: Bibliotheek Sint Maarten + type_organisatie: bibliotheek + isil_code_kb: NL-0870350000 + type: + - L +entry_index: 1462 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870350000 + name: Bibliotheek Sint Maarten + city: Sint Maarten + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.882657+00:00' +google_maps_enrichment: + place_id: ChIJJQGUVnJuDowRjSIEm84Tynw + name: 8C Sint Maarten Library + fetch_timestamp: '2025-11-28T12:25:42.606823+00:00' + api_status: OK + coordinates: + latitude: 18.0250728 + longitude: -63.04270859999999 + formatted_address: 3 Walter A. Nisbeth Rd, Philipsburg, Sint Maarten + short_address: 3 Walter A. Nisbeth Rd, Philipsburg + address_components: + - long_name: '3' + short_name: '3' + types: + - street_number + - long_name: Walter A. Nisbeth Road + short_name: Walter A. Nisbeth Rd + types: + - route + - long_name: Philipsburg + short_name: Philipsburg + types: + - locality + - political + - long_name: Sint Maarten + short_name: SX + types: + - country + - political + phone_local: (721) 542-2970 + phone_international: +1 721-542-2970 + website: http://www.stmaartenlibrary.org/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.1 + total_ratings: 8 + google_maps_url: https://maps.google.com/?cid=8992021384083546765&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Sint Maarten, Sint Maarten, Netherlands diff --git a/data/nde/enriched/entries/1463_kb_isil.yaml b/data/nde/enriched/entries/1463_kb_isil.yaml new file mode 100644 index 0000000000..17c536aa70 --- /dev/null +++ b/data/nde/enriched/entries/1463_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Dokkum + organisatie: Bibliotheken Noord Fryslân + type_organisatie: bibliotheek + isil_code_kb: NL-0870410000 + type: + - L +entry_index: 1463 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870410000 + name: Bibliotheken Noord Fryslân + city: Dokkum + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61912788 + wikidata_label: Stichting Bibliotheken Midden Fryslân + wikidata_description: Bibliotheekorganisatie in de gemeenten Leeuwarden en Tietjerksteradeel, + Friesland + fetch_timestamp: '2025-11-28T12:22:39.907502+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.dbieb.nl + match_confidence: 0.83 +google_maps_enrichment: + place_id: ChIJZT52TmCpyUcRUA9MurMh8To + name: Bibliotheek Dokkum + fetch_timestamp: '2025-11-28T12:25:43.287335+00:00' + api_status: OK + coordinates: + latitude: 53.3276955 + longitude: 6.0094059 + formatted_address: Brokmui 62, 9101 EZ Dokkum + short_address: Brokmui 62, Dokkum + address_components: + - long_name: '62' + short_name: '62' + types: + - street_number + - long_name: Brokmui + short_name: Brokmui + types: + - route + - long_name: Dokkum + short_name: Dokkum + types: + - locality + - political + - long_name: Noardeast-Fryslân + short_name: Noardeast-Fryslân + types: + - administrative_area_level_2 + - political + - long_name: Friesland + short_name: FR + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 9101 EZ + short_name: 9101 EZ + types: + - postal_code + phone_local: 088 165 6123 + phone_international: +31 88 165 6123 + website: http://www.ontdekdebieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 30 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 13:30â18:00' + - 'dinsdag: 10:00â18:00' + - 'woensdag: 10:00â18:00' + - 'donderdag: 10:00â18:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 10:00â15:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 41 + google_maps_url: https://maps.google.com/?cid=4247212979395497808&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bibliotheken Noord Fryslân, Dokkum, Netherlands diff --git a/data/nde/enriched/entries/1464_kb_isil.yaml b/data/nde/enriched/entries/1464_kb_isil.yaml new file mode 100644 index 0000000000..53b6518340 --- /dev/null +++ b/data/nde/enriched/entries/1464_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Terborg + organisatie: Bibliotheek Achterhoekse Poort + type_organisatie: bibliotheek + isil_code_kb: NL-0870420000 + type: + - L +entry_index: 1464 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870420000 + name: Bibliotheek Achterhoekse Poort + city: Terborg + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962286 + wikidata_label: Bibliotheek Achterhoekse Poort + wikidata_description: bibliotheekorganisatie in de gemeenten Aalten en Oude IJsselstreek, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.926703+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.achterhoeksepoort.nl + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJv_eCuOaDx0cReOnJj16zxHY + name: Bibliotheek Achterhoekse Poort / Terborg + fetch_timestamp: '2025-11-28T12:25:43.965461+00:00' + api_status: OK + coordinates: + latitude: 51.916748 + longitude: 6.3720927 + formatted_address: Herman van Velzenstraat 1, 7061 DD Terborg + short_address: Herman van Velzenstraat 1, Terborg + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Herman van Velzenstraat + short_name: Herman van Velzenstraat + types: + - route + - long_name: Terborg + short_name: Terborg + types: + - locality + - political + - long_name: Oude IJsselstreek + short_name: Oude IJsselstreek + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7061 DD + short_name: 7061 DD + types: + - postal_code + phone_local: 088 006 2929 + phone_international: +31 88 006 2929 + website: http://www.achterhoeksepoort.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 19 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â19:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4 + total_ratings: 12 + google_maps_url: https://maps.google.com/?cid=8558162410631457144&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Achterhoekse Poort, Terborg, Netherlands diff --git a/data/nde/enriched/entries/1465_kb_isil.yaml b/data/nde/enriched/entries/1465_kb_isil.yaml new file mode 100644 index 0000000000..f33a17f0d8 --- /dev/null +++ b/data/nde/enriched/entries/1465_kb_isil.yaml @@ -0,0 +1,143 @@ +original_entry: + plaatsnaam_bezoekadres: Barneveld + organisatie: Bibliotheek Barneveld + type_organisatie: bibliotheek + isil_code_kb: NL-0870430000 + type: + - L +entry_index: 1465 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870430000 + name: Bibliotheek Barneveld + city: Barneveld + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63890068 + wikidata_label: Bibliotheek Barneveld + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Bibliotheek + Barneveld, de openbare bibliotheekvoorziening in de gemeente Barneveld + fetch_timestamp: '2025-11-28T12:22:39.928323+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.1403331 + longitude: 5.5877823 + wikidata_identifiers: + Website: https://www.bibliotheekbarneveld.nl/over-ons/vestigingen-openingstijden/detail.199499.html/bibliotheek-barneveld/ +google_maps_enrichment: + place_id: ChIJ131KGQlMxkcR8RMrQMxzKwM + name: de Bibliotheek Barneveld + fetch_timestamp: '2025-11-28T12:25:44.726537+00:00' + api_status: OK + coordinates: + latitude: 52.1403549 + longitude: 5.587802700000001 + formatted_address: Nieuwstraat 29, 3771 AS Barneveld + short_address: Nieuwstraat 29, Barneveld + address_components: + - long_name: '29' + short_name: '29' + types: + - street_number + - long_name: Nieuwstraat + short_name: Nieuwstraat + types: + - route + - long_name: Barneveld + short_name: Barneveld + types: + - locality + - political + - long_name: Barneveld + short_name: Barneveld + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3771 AS + short_name: 3771 AS + types: + - postal_code + phone_local: 0342 403 483 + phone_international: +31 342 403 483 + website: http://www.bibliotheekbarneveld.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 09:30â20:00' + - 'woensdag: 09:30â17:00' + - 'donderdag: 09:30â17:00' + - 'vrijdag: 09:30â20:00' + - 'zaterdag: 11:00â15:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 37 + google_maps_url: https://maps.google.com/?cid=228403527199429617&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Barneveld, Barneveld, Netherlands diff --git a/data/nde/enriched/entries/1466_kb_isil.yaml b/data/nde/enriched/entries/1466_kb_isil.yaml new file mode 100644 index 0000000000..19763b5f09 --- /dev/null +++ b/data/nde/enriched/entries/1466_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Epe + organisatie: Bibliotheek Noord-Veluwe + type_organisatie: bibliotheek + isil_code_kb: NL-0870460000 + type: + - L +entry_index: 1466 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870460000 + name: Bibliotheek Noord-Veluwe + city: Epe + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63677417 + wikidata_label: Bibliotheek Epe + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Bibliotheek + Noord-Veluwe, de openbare bibliotheekvoorziening in de regio Noord-Veluwe + fetch_timestamp: '2025-11-28T12:22:39.929508+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3475076 + longitude: 5.9869872 + wikidata_identifiers: + Website: https://www.bibliotheeknoord-veluwe.nl/adressen-en-openingstijden/detail.163941.html/bibliotheek-epe/ +google_maps_enrichment: + place_id: ChIJ_5hFJwPFx0cRZz7lRultl30 + name: Bibliotheek Noord-Veluwe, Locatie Epe + fetch_timestamp: '2025-11-28T12:25:45.466258+00:00' + api_status: OK + coordinates: + latitude: 52.347484599999994 + longitude: 5.9870338 + formatted_address: Stationsstraat 16, 8161 CR Epe + short_address: Stationsstraat 16, Epe + address_components: + - long_name: '16' + short_name: '16' + types: + - street_number + - long_name: Stationsstraat + short_name: Stationsstraat + types: + - route + - long_name: Epe + short_name: Epe + types: + - locality + - political + - long_name: Epe + short_name: Epe + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8161 CR + short_name: 8161 CR + types: + - postal_code + phone_local: 0578 612 113 + phone_international: +31 578 612 113 + website: https://www.bibliotheeknoord-veluwe.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 14:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â20:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 14 + google_maps_url: https://maps.google.com/?cid=9049822824908537447&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Noord-Veluwe, Epe, Netherlands diff --git a/data/nde/enriched/entries/1467_kb_isil.yaml b/data/nde/enriched/entries/1467_kb_isil.yaml new file mode 100644 index 0000000000..aa8e9db02d --- /dev/null +++ b/data/nde/enriched/entries/1467_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Zutphen + organisatie: Bibliotheek Berkel & IJssel + type_organisatie: bibliotheek + isil_code_kb: NL-0870510000 + type: + - L +entry_index: 1467 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870510000 + name: Bibliotheek Berkel & IJssel + city: Zutphen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962114 + wikidata_label: Bibliotheek Lek & IJssel + wikidata_description: bibliotheekorganisatie in de regio Lek & IJssel, gemeenten + Houten, IJsselstein en Vianen, Nederland + fetch_timestamp: '2025-11-28T12:22:39.950615+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheeklekijssel.nl/ + match_confidence: 0.783 +google_maps_enrichment: + place_id: ChIJHQ4YL2mUx0cRpPF4DzYCzCQ + name: BIJ de bieb / Zutphen + fetch_timestamp: '2025-11-28T12:25:46.203626+00:00' + api_status: OK + coordinates: + latitude: 52.1425297 + longitude: 6.1950129 + formatted_address: Broederenkerkplein 2, 7201 JP Zutphen + short_address: Broederenkerkplein 2, Zutphen + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Broederenkerkplein + short_name: Broederenkerkplein + types: + - route + - long_name: Zutphen + short_name: Zutphen + types: + - locality + - political + - long_name: Zutphen + short_name: Zutphen + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7201 JP + short_name: 7201 JP + types: + - postal_code + phone_local: 0575 512 926 + phone_international: +31 575 512 926 + website: https://www.bijdebieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â18:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â18:00' + - 'donderdag: 09:00â18:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 11:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 75 + google_maps_url: https://maps.google.com/?cid=2651496711825453476&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Berkel & IJssel, Zutphen, Netherlands diff --git a/data/nde/enriched/entries/1468_kb_isil.yaml b/data/nde/enriched/entries/1468_kb_isil.yaml new file mode 100644 index 0000000000..1021ce1ff8 --- /dev/null +++ b/data/nde/enriched/entries/1468_kb_isil.yaml @@ -0,0 +1,136 @@ +original_entry: + plaatsnaam_bezoekadres: Scherpenzeel + organisatie: Bibliotheek Scherpenzeel + type_organisatie: bibliotheek + isil_code_kb: NL-0870600000 + type: + - L +entry_index: 1468 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870600000 + name: Bibliotheek Scherpenzeel + city: Scherpenzeel + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764040 + wikidata_label: Bibliotheek Scherpenzeel + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Scherpenzeel, de openbare bibliotheekvoorziening in de gemeente + Scherpenzeel, Nederland + fetch_timestamp: '2025-11-28T12:22:39.951972+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.084693 + longitude: 5.4898798 + wikidata_identifiers: + Website: https://www.bibliotheekscherpenzeel.nl/openingstijden/detail.199524.html +google_maps_enrichment: + place_id: ChIJW_KPtMdPxkcRmPspnrK-ims + name: Stichting Openbare Bibliotheek Scherpenzeel + fetch_timestamp: '2025-11-28T12:25:46.940396+00:00' + api_status: OK + coordinates: + latitude: 52.084829 + longitude: 5.490156 + formatted_address: Marktstraat 59, 3925 JP Scherpenzeel + short_address: Marktstraat 59, Scherpenzeel + address_components: + - long_name: '59' + short_name: '59' + types: + - street_number + - long_name: Marktstraat + short_name: Marktstraat + types: + - route + - long_name: Scherpenzeel + short_name: Scherpenzeel + types: + - locality + - political + - long_name: Scherpenzeel + short_name: Scherpenzeel + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3925 JP + short_name: 3925 JP + types: + - postal_code + phone_local: 033 277 3107 + phone_international: +31 33 277 3107 + website: http://www.bibliotheekscherpenzeel.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 14 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 12 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 20 + minute: 30 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 14:00â20:30' + - 'woensdag: 14:00â17:00' + - 'donderdag: 10:00â12:00' + - 'vrijdag: 14:00â20:30' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 4 + google_maps_url: https://maps.google.com/?cid=7749215783211367320&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Scherpenzeel, Scherpenzeel, Netherlands diff --git a/data/nde/enriched/entries/1469_kb_isil.yaml b/data/nde/enriched/entries/1469_kb_isil.yaml new file mode 100644 index 0000000000..1fe9ddedbc --- /dev/null +++ b/data/nde/enriched/entries/1469_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Reuver + organisatie: Bibliotheek Maas en Peel + type_organisatie: bibliotheek + isil_code_kb: NL-0870960000 + type: + - L +entry_index: 1469 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0870960000 + name: Bibliotheek Maas en Peel + city: Reuver + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:39.969084+00:00' +google_maps_enrichment: + place_id: ChIJqfQA4IdOx0cR20QnRFmaDEw + name: de Bibliotheek Reuver + fetch_timestamp: '2025-11-28T12:25:47.663628+00:00' + api_status: OK + coordinates: + latitude: 51.2841746 + longitude: 6.077331699999999 + formatted_address: Pastoor Vranckenlaan 18, 5953 CP Reuver + short_address: Pastoor Vranckenlaan 18, Reuver + address_components: + - long_name: '18' + short_name: '18' + types: + - street_number + - long_name: Pastoor Vranckenlaan + short_name: Pastoor Vranckenlaan + types: + - route + - long_name: Reuver + short_name: Reuver + types: + - locality + - political + - long_name: Beesel + short_name: Beesel + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5953 CP + short_name: 5953 CP + types: + - postal_code + phone_local: 077 474 1000 + phone_international: +31 77 474 1000 + website: https://www.debibliotheekmaasenpeel.nl/vestigingen-en-openingstijden/detail.199579.html/de-bibliotheek-reuver/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 12 + minute: 0 + - open: + day: 1 + hour: 13 + minute: 30 + close: + day: 1 + hour: 19 + minute: 30 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 13 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 12 + minute: 0 + - open: + day: 3 + hour: 13 + minute: 30 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 13 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 0 + weekday_text: + - 'maandag: 10:00â12:00, 13:30â19:30' + - 'dinsdag: 10:00â13:00' + - 'woensdag: 10:00â12:00, 13:30â17:30' + - 'donderdag: Gesloten' + - 'vrijdag: 13:30â17:30' + - 'zaterdag: 10:00â12:00' + - 'zondag: Gesloten' + rating: 5 + total_ratings: 8 + google_maps_url: https://maps.google.com/?cid=5479924554789242075&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Maas en Peel, Reuver, Netherlands diff --git a/data/nde/enriched/entries/1470_kb_isil.yaml b/data/nde/enriched/entries/1470_kb_isil.yaml new file mode 100644 index 0000000000..697f0317bb --- /dev/null +++ b/data/nde/enriched/entries/1470_kb_isil.yaml @@ -0,0 +1,148 @@ +original_entry: + plaatsnaam_bezoekadres: Boxmeer + organisatie: Biblioplus + type_organisatie: bibliotheek + isil_code_kb: NL-0871130000 + type: + - L +entry_index: 1470 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871130000 + name: Biblioplus + city: Boxmeer + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121176809 + wikidata_label: BiblioPlus + wikidata_description: organisatie van bibliotheken in Noord-Brabant, Nederland + fetch_timestamp: '2025-11-28T12:22:39.984012+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.biblioplus.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJrV9tLAYTx0cRgLqnRTjmfdo + name: Bibliotheek Boxmeer + fetch_timestamp: '2025-11-28T12:25:48.315919+00:00' + api_status: OK + coordinates: + latitude: 51.649597 + longitude: 5.950876000000001 + formatted_address: De Raetsingel 1, 5831 KC Boxmeer + short_address: De Raetsingel 1, Boxmeer + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: De Raetsingel + short_name: De Raetsingel + types: + - route + - long_name: Boxmeer + short_name: Boxmeer + types: + - locality + - political + - long_name: Land van Cuijk + short_name: Land van Cuijk + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5831 KC + short_name: 5831 KC + types: + - postal_code + phone_local: 0485 571 971 + phone_international: +31 485 571 971 + website: http://www.biblioplus.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 18 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 13:00â18:00' + - 'dinsdag: 10:00â18:00' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â18:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 28 + google_maps_url: https://maps.google.com/?cid=15743993001718299264&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Biblioplus, Boxmeer, Netherlands diff --git a/data/nde/enriched/entries/1471_kb_isil.yaml b/data/nde/enriched/entries/1471_kb_isil.yaml new file mode 100644 index 0000000000..60010c1095 --- /dev/null +++ b/data/nde/enriched/entries/1471_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Veldhoven + organisatie: Bibliotheek Veldhoven + type_organisatie: bibliotheek + isil_code_kb: NL-0871300000 + type: + - L +entry_index: 1471 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871300000 + name: Bibliotheek Veldhoven + city: Veldhoven + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764038 + wikidata_label: Bibliotheek Veldhoven + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + de Bibliotheek Veldhoven, de openbare bibliotheekvoorziening in de gemeente Veldhoven, + Nederland + fetch_timestamp: '2025-11-28T12:22:39.985023+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.4209084 + longitude: 5.4041785 + wikidata_identifiers: + Website: https://www.bibliotheekveldhoven.nl/over-de-bibliotheek/contact.html +google_maps_enrichment: + place_id: ChIJpQgeFjjaxkcR5IQd4wvOSuY + name: Bibliotheek Veldhoven + fetch_timestamp: '2025-11-28T12:25:49.051584+00:00' + api_status: OK + coordinates: + latitude: 51.420924799999995 + longitude: 5.4041912 + formatted_address: Meiveld 2, 5501 KA Veldhoven + short_address: Meiveld 2, Veldhoven + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Meiveld + short_name: Meiveld + types: + - route + - long_name: Veldhoven + short_name: Veldhoven + types: + - locality + - political + - long_name: Veldhoven + short_name: Veldhoven + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5501 KA + short_name: 5501 KA + types: + - postal_code + phone_local: 040 253 2901 + phone_international: +31 40 253 2901 + website: http://www.bibliotheekveldhoven.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 30 + close: + day: 1 + hour: 20 + minute: 30 + - open: + day: 2 + hour: 10 + minute: 30 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 30 + close: + day: 3 + hour: 20 + minute: 30 + - open: + day: 4 + hour: 10 + minute: 30 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 10 + minute: 30 + close: + day: 5 + hour: 20 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 30 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 10:30â20:30' + - 'dinsdag: 10:30â20:30' + - 'woensdag: 10:30â20:30' + - 'donderdag: 10:30â20:30' + - 'vrijdag: 10:30â20:30' + - 'zaterdag: 10:30â17:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 84 + google_maps_url: https://maps.google.com/?cid=16594302327450338532&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Veldhoven, Veldhoven, Netherlands diff --git a/data/nde/enriched/entries/1472_kb_isil.yaml b/data/nde/enriched/entries/1472_kb_isil.yaml new file mode 100644 index 0000000000..992dcac9fa --- /dev/null +++ b/data/nde/enriched/entries/1472_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Woudrichem + organisatie: Bibliotheek CultuurPuntAltena + type_organisatie: bibliotheek + isil_code_kb: NL-0871380000 + type: + - L +entry_index: 1472 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871380000 + name: Bibliotheek CultuurPuntAltena + city: Woudrichem + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.009484+00:00' +google_maps_enrichment: + place_id: ChIJT0p6yRKExkcR8ndTsUPs5E4 + name: de Bibliotheek CultuurPuntAltena - Woudrichem + fetch_timestamp: '2025-11-28T12:25:49.777487+00:00' + api_status: OK + coordinates: + latitude: 51.8099499 + longitude: 4.9979777 + formatted_address: Raadhuisplein 1, 4285 CP Woudrichem + short_address: Raadhuisplein 1, Woudrichem + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Raadhuisplein + short_name: Raadhuisplein + types: + - route + - long_name: Woudrichem + short_name: Woudrichem + types: + - locality + - political + - long_name: Altena + short_name: Altena + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4285 CP + short_name: 4285 CP + types: + - postal_code + phone_local: 085 040 1163 + phone_international: +31 85 040 1163 + website: http://www.bibliotheekaltena.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 12 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 09:00â12:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 15 + google_maps_url: https://maps.google.com/?cid=5684928405130409970&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek CultuurPuntAltena, Woudrichem, Netherlands diff --git a/data/nde/enriched/entries/1473_kb_isil.yaml b/data/nde/enriched/entries/1473_kb_isil.yaml new file mode 100644 index 0000000000..04a92d2d7a --- /dev/null +++ b/data/nde/enriched/entries/1473_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Boekel + organisatie: Bibliotheek De Lage Beemden + type_organisatie: bibliotheek + isil_code_kb: NL-0871390000 + type: + - L +entry_index: 1473 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871390000 + name: Bibliotheek De Lage Beemden + city: Boekel + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961939 + wikidata_label: Bibliotheek De Lage Beemden + wikidata_description: Bibliotheekorganisatie in de gemeenten Boekel, Gemert-Bakel + en Laarbeek, Nederland + fetch_timestamp: '2025-11-28T12:22:40.028865+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheeklagebeemden.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJsbucz8wex0cRmYtwFgY_Ja4 + name: Bibliotheek De Lage Beemden / Bibliotheek Boekel + fetch_timestamp: '2025-11-28T12:25:50.463423+00:00' + api_status: OK + coordinates: + latitude: 51.6029543 + longitude: 5.6715212 + formatted_address: Sint Agathaplein 6, 5427 CJ Boekel + short_address: Sint Agathaplein 6, Boekel + address_components: + - long_name: '6' + short_name: '6' + types: + - street_number + - long_name: Sint Agathaplein + short_name: Sint Agathaplein + types: + - route + - long_name: Boekel + short_name: Boekel + types: + - locality + - political + - long_name: Boekel + short_name: Boekel + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5427 CJ + short_name: 5427 CJ + types: + - postal_code + phone_local: 0492 323 244 + phone_international: +31 492 323 244 + website: https://www.bibliotheeklagebeemden.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 10 + minute: 0 + close: + day: 0 + hour: 19 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 1 + close: + day: 4 + hour: 17 + minute: 1 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 19 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 19 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:01â17:01' + - 'vrijdag: 10:00â19:00' + - 'zaterdag: 10:00â19:00' + - 'zondag: 10:00â19:00' + rating: 4.8 + total_ratings: 5 + google_maps_url: https://maps.google.com/?cid=12548505232116583321&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek De Lage Beemden, Boekel, Netherlands diff --git a/data/nde/enriched/entries/1474_kb_isil.yaml b/data/nde/enriched/entries/1474_kb_isil.yaml new file mode 100644 index 0000000000..980b4cbd9c --- /dev/null +++ b/data/nde/enriched/entries/1474_kb_isil.yaml @@ -0,0 +1,156 @@ +original_entry: + plaatsnaam_bezoekadres: Eersel + organisatie: Bibliotheek De Kempen + type_organisatie: bibliotheek + isil_code_kb: NL-0871420000 + type: + - L +entry_index: 1474 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871420000 + name: Bibliotheek De Kempen + city: Eersel + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121176800 + wikidata_label: Bibliotheek De Kempen + wikidata_description: organisatie van bibliotheken in Noord-Brabant, Nederland + fetch_timestamp: '2025-11-28T12:22:40.049251+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekdekempen.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJ830ykNbPxkcRIO7a0fiGm_I + name: Bibliotheek De Kempen / Eersel + fetch_timestamp: '2025-11-28T12:25:51.128234+00:00' + api_status: OK + coordinates: + latitude: 51.3572385 + longitude: 5.310651399999999 + formatted_address: Dijk 7, 5521 AW Eersel + short_address: Dijk 7, Eersel + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Dijk + short_name: Dijk + types: + - route + - long_name: Eersel + short_name: Eersel + types: + - locality + - political + - long_name: Eersel + short_name: Eersel + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5521 AW + short_name: 5521 AW + types: + - postal_code + phone_local: 085 773 3288 + phone_international: +31 85 773 3288 + website: http://www.bibliotheekdekempen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 12 + minute: 0 + - open: + day: 3 + hour: 14 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 14 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 14:00â17:00' + - 'dinsdag: 14:00â17:00' + - 'woensdag: 10:00â12:00, 14:00â17:00' + - 'donderdag: 14:00â20:00' + - 'vrijdag: 14:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=17481714781799509536&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek De Kempen, Eersel, Netherlands diff --git a/data/nde/enriched/entries/1475_kb_isil.yaml b/data/nde/enriched/entries/1475_kb_isil.yaml new file mode 100644 index 0000000000..4e95c89b0f --- /dev/null +++ b/data/nde/enriched/entries/1475_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Drunen + organisatie: Bibliotheek Heusden + type_organisatie: bibliotheek + isil_code_kb: NL-0871480000 + type: + - L +entry_index: 1475 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871480000 + name: Bibliotheek Heusden + city: Drunen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59772733 + wikidata_label: Bibliotheek Opheusden + wikidata_description: Openbare bibliotheekvestiging in Opheusden + fetch_timestamp: '2025-11-28T12:22:40.062200+00:00' + match_method: fuzzy_name_match + wikidata_coordinates: + latitude: 51.9319108 + longitude: 5.6276707 + wikidata_identifiers: + Website: https://www.bibliotheekrivierenland.nl/Openingstijden/openingstijden/detail.5305756.html/bibliotheek-opheusden/ + match_confidence: 0.875 +google_maps_enrichment: + place_id: ChIJ48vlMRGTxkcRyKNfThZXLwI + name: de Bibliotheek Drunen + fetch_timestamp: '2025-11-28T12:25:51.804035+00:00' + api_status: OK + coordinates: + latitude: 51.6851729 + longitude: 5.1265073999999995 + formatted_address: Anton Pieckplein 71, 5152 LZ Drunen + short_address: Anton Pieckplein 71, Drunen + address_components: + - long_name: '71' + short_name: '71' + types: + - street_number + - long_name: Anton Pieckplein + short_name: Anton Pieckplein + types: + - route + - long_name: Drunen + short_name: Drunen + types: + - locality + - political + - long_name: Heusden + short_name: Heusden + types: + - administrative_area_level_2 + - political + - long_name: Noord-Brabant + short_name: NB + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 5152 LZ + short_name: 5152 LZ + types: + - postal_code + phone_local: 0416 373 032 + phone_international: +31 416 373 032 + website: http://www.bibliotheekheusden.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 21 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 21 + minute: 30 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 09:00â21:30' + - 'dinsdag: 09:00â21:30' + - 'woensdag: 09:00â21:30' + - 'donderdag: 09:00â21:30' + - 'vrijdag: 09:00â21:30' + - 'zaterdag: 09:00â15:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 19 + google_maps_url: https://maps.google.com/?cid=157440265297044424&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Heusden, Drunen, Netherlands diff --git a/data/nde/enriched/entries/1476_kb_isil.yaml b/data/nde/enriched/entries/1476_kb_isil.yaml new file mode 100644 index 0000000000..606b71a141 --- /dev/null +++ b/data/nde/enriched/entries/1476_kb_isil.yaml @@ -0,0 +1,144 @@ +original_entry: + plaatsnaam_bezoekadres: Meerssen + organisatie: Bibliotheek Meerssen + type_organisatie: bibliotheek + isil_code_kb: NL-0871570000 + type: + - L +entry_index: 1476 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871570000 + name: Bibliotheek Meerssen + city: Meerssen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764041 + wikidata_label: Bibliotheek Meerssen + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Meerssen, de openbare bibliotheekvoorziening in de gemeente + Meerssen, Nederland + fetch_timestamp: '2025-11-28T12:22:40.064240+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 50.8876671 + longitude: 5.7500047 + wikidata_identifiers: + Website: https://www.bibliotheekmeerssen.nl/adres-en-openingstijden/detail.199699.html/bibliotheek-meerssen/ +google_maps_enrichment: + place_id: ChIJIfZ5eujBwEcRbCupDJKtsG0 + name: Bibliotheek Meerssen + fetch_timestamp: '2025-11-28T12:25:52.515448+00:00' + api_status: OK + coordinates: + latitude: 50.88779830000001 + longitude: 5.7496648 + formatted_address: Pastoor Dominicus Hexstraat 16a, 6231 HG Meerssen + short_address: Pastoor Dominicus Hexstraat 16a, Meerssen + address_components: + - long_name: 16a + short_name: 16a + types: + - street_number + - long_name: Pastoor Dominicus Hexstraat + short_name: Pastoor Dominicus Hexstraat + types: + - route + - long_name: Meerssen + short_name: Meerssen + types: + - locality + - political + - long_name: Meerssen + short_name: Meerssen + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6231 HG + short_name: 6231 HG + types: + - postal_code + phone_local: 043 364 2411 + phone_international: +31 43 364 2411 + website: http://www.bibliotheekmeerssen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: Gesloten' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â15:00' + - 'zondag: Gesloten' + rating: 4.9 + total_ratings: 9 + google_maps_url: https://maps.google.com/?cid=7904008188824464236&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Meerssen, Meerssen, Netherlands diff --git a/data/nde/enriched/entries/1477_kb_isil.yaml b/data/nde/enriched/entries/1477_kb_isil.yaml new file mode 100644 index 0000000000..0201d6edf0 --- /dev/null +++ b/data/nde/enriched/entries/1477_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Dalfsen + organisatie: Bibliotheek Dalfsen-Nieuwleusen + type_organisatie: bibliotheek + isil_code_kb: NL-0871670000 + type: + - L +entry_index: 1477 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871670000 + name: Bibliotheek Dalfsen-Nieuwleusen + city: Dalfsen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961972 + wikidata_label: Stichting Openbare Bibliotheek Dalfsen-Nieuwleusen + wikidata_description: Bibliotheekorganisatie in de gemeente Dalfsen en omgeving, + Nederland + fetch_timestamp: '2025-11-28T12:22:40.084551+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekdalfsen.nl/ + match_confidence: 0.794 +google_maps_enrichment: + place_id: ChIJs6o3RrHhx0cR0C8COoYlrII + name: Bibliotheek Dalfsen + fetch_timestamp: '2025-11-28T12:25:53.187456+00:00' + api_status: OK + coordinates: + latitude: 52.5104354 + longitude: 6.2534006 + formatted_address: Ruigedoornstraat 108, 7721 BR Dalfsen + short_address: Ruigedoornstraat 108, Dalfsen + address_components: + - long_name: '108' + short_name: '108' + types: + - street_number + - long_name: Ruigedoornstraat + short_name: Ruigedoornstraat + types: + - route + - long_name: Dalfsen + short_name: Dalfsen + types: + - locality + - political + - long_name: Dalfsen + short_name: Dalfsen + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7721 BR + short_name: 7721 BR + types: + - postal_code + phone_local: 0529 432 413 + phone_international: +31 529 432 413 + website: http://www.bibliotheekdalfsen.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 20 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 20 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 30 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 20 + minute: 30 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 12 + minute: 0 + weekday_text: + - 'maandag: 08:30â20:30' + - 'dinsdag: 08:30â20:30' + - 'woensdag: 08:30â20:30' + - 'donderdag: 08:30â20:30' + - 'vrijdag: 08:30â20:30' + - 'zaterdag: 09:00â12:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=9415942179353931728&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Dalfsen-Nieuwleusen, Dalfsen, Netherlands diff --git a/data/nde/enriched/entries/1478_kb_isil.yaml b/data/nde/enriched/entries/1478_kb_isil.yaml new file mode 100644 index 0000000000..c57b11bca9 --- /dev/null +++ b/data/nde/enriched/entries/1478_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Rijssen + organisatie: Bibliotheek Rijssen Holten + type_organisatie: bibliotheek + isil_code_kb: NL-0871730000 + type: + - L +entry_index: 1478 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871730000 + name: Bibliotheek Rijssen Holten + city: Rijssen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785988 + wikidata_label: Bibliotheek Rijssen + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek Rijssen-Holten, de openbare bibliotheekvoorziening in de gemeente + Rijssen-Holten, Nederland + fetch_timestamp: '2025-11-28T12:22:40.085604+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3078081 + longitude: 6.5227012 + wikidata_identifiers: + Website: https://www.bibliotheekrijssenholten.nl/bibliotheek/openingstijden#196708 +google_maps_enrichment: + place_id: ChIJ6xo4t__2x0cRoDV0nknyL9c + name: Bibliotheek Rijssen-Holten + fetch_timestamp: '2025-11-28T12:25:53.821626+00:00' + api_status: OK + coordinates: + latitude: 52.308015 + longitude: 6.523009999999999 + formatted_address: Kerkstraat 4, 7461 LC Rijssen + short_address: Kerkstraat 4, Rijssen + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Kerkstraat + short_name: Kerkstraat + types: + - route + - long_name: Rijssen + short_name: Rijssen + types: + - locality + - political + - long_name: Rijssen-Holten + short_name: Rijssen-Holten + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7461 LC + short_name: 7461 LC + types: + - postal_code + phone_local: 0548 513 431 + phone_international: +31 548 513 431 + website: http://www.bibliotheekrijssenholten.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 21 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 21 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â21:00' + - 'dinsdag: 09:00â21:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â21:00' + - 'zaterdag: 11:00â16:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 41 + google_maps_url: https://maps.google.com/?cid=15505878440064857504&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Rijssen Holten, Rijssen, Netherlands diff --git a/data/nde/enriched/entries/1479_kb_isil.yaml b/data/nde/enriched/entries/1479_kb_isil.yaml new file mode 100644 index 0000000000..e6075e5a03 --- /dev/null +++ b/data/nde/enriched/entries/1479_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Staphorst + organisatie: Bibliotheek Staphorst + type_organisatie: bibliotheek + isil_code_kb: NL-0871740000 + type: + - L +entry_index: 1479 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871740000 + name: Bibliotheek Staphorst + city: Staphorst + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785990 + wikidata_label: Bibliotheek Staphorst + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Staphorst, de openbare bibliotheekvoorziening in de gemeente + Staphorst, Nederland + fetch_timestamp: '2025-11-28T12:22:40.086661+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.6434649 + longitude: 6.2113228 + wikidata_identifiers: + Website: https://www.bibliotheekstaphorst.nl/openingstijden#196673 +google_maps_enrichment: + place_id: ChIJmYrMa0lzyEcRRV7Gi0AOM38 + name: Stichting Openbare Bibliotheek Staphorst / Staphorst + fetch_timestamp: '2025-11-28T12:25:54.499856+00:00' + api_status: OK + coordinates: + latitude: 52.643414 + longitude: 6.211288 + formatted_address: Venneland 1, 7951 HC Staphorst + short_address: Venneland 1, Staphorst + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Venneland + short_name: Venneland + types: + - route + - long_name: Staphorst + short_name: Staphorst + types: + - locality + - political + - long_name: Staphorst + short_name: Staphorst + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7951 HC + short_name: 7951 HC + types: + - postal_code + phone_local: 0522 462 044 + phone_international: +31 522 462 044 + website: https://mijnbieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 30 + weekday_text: + - 'maandag: 14:00â20:00' + - 'dinsdag: 14:00â17:30' + - 'woensdag: 10:00â17:30' + - 'donderdag: 10:00â17:30' + - 'vrijdag: 14:00â20:00' + - 'zaterdag: 10:00â12:30' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=9165685337014820421&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Staphorst, Staphorst, Netherlands diff --git a/data/nde/enriched/entries/1480_kb_isil.yaml b/data/nde/enriched/entries/1480_kb_isil.yaml new file mode 100644 index 0000000000..807f917352 --- /dev/null +++ b/data/nde/enriched/entries/1480_kb_isil.yaml @@ -0,0 +1,133 @@ +original_entry: + plaatsnaam_bezoekadres: Vriezenveen + organisatie: Bibliotheek Twenterand + type_organisatie: bibliotheek + isil_code_kb: NL-0871750000 + type: + - L +entry_index: 1480 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871750000 + name: Bibliotheek Twenterand + city: Vriezenveen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.102256+00:00' +google_maps_enrichment: + place_id: ChIJkaPqCEIHuEcR16g1rz2LpfQ + name: Bibliotheek Twenterand - locatie Vriezenveen + fetch_timestamp: '2025-11-28T12:25:55.179205+00:00' + api_status: OK + coordinates: + latitude: 52.4108094 + longitude: 6.624309299999999 + formatted_address: Jonkerlaan 4, 7671 GM Vriezenveen + short_address: Jonkerlaan 4, Vriezenveen + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Jonkerlaan + short_name: Jonkerlaan + types: + - route + - long_name: Vriezenveen + short_name: Vriezenveen + types: + - locality + - political + - long_name: Twenterand + short_name: Twenterand + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7671 GM + short_name: 7671 GM + types: + - postal_code + phone_local: 0546 562 385 + phone_international: +31 546 562 385 + website: http://www.bibliotheektwenterand.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 30 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 13 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 30 + weekday_text: + - 'maandag: 13:30â20:00' + - 'dinsdag: Gesloten' + - 'woensdag: 10:00â20:00' + - 'donderdag: 10:00â17:30' + - 'vrijdag: 13:30â17:30' + - 'zaterdag: 10:00â12:30' + - 'zondag: Gesloten' + rating: 4.8 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=17628649413460469975&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Twenterand, Vriezenveen, Netherlands diff --git a/data/nde/enriched/entries/1481_kb_isil.yaml b/data/nde/enriched/entries/1481_kb_isil.yaml new file mode 100644 index 0000000000..849df7f355 --- /dev/null +++ b/data/nde/enriched/entries/1481_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Wierden + organisatie: Bibliotheek Wierden + type_organisatie: bibliotheek + isil_code_kb: NL-0871760000 + type: + - L +entry_index: 1481 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871760000 + name: Bibliotheek Wierden + city: Wierden + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61915685 + wikidata_label: Bibliotheek Wierden + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Wierden, de openbare bibliotheekvoorziening in de gemeente + Wierden + fetch_timestamp: '2025-11-28T12:22:40.103266+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3564478 + longitude: 6.5929183 + wikidata_identifiers: + Website: https://www.bibliotheekwierden.nl/bibliotheek/vestigingen-en-openingstijden#196653 +google_maps_enrichment: + place_id: ChIJyyH8Y_gHuEcRz45GO46pl4I + name: de Bibliotheek Wierden + fetch_timestamp: '2025-11-28T12:25:55.889491+00:00' + api_status: OK + coordinates: + latitude: 52.3564832 + longitude: 6.5929633 + formatted_address: Pouliestraat 2, 7642 EZ Wierden + short_address: Pouliestraat 2, Wierden + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Pouliestraat + short_name: Pouliestraat + types: + - route + - long_name: Wierden + short_name: Wierden + types: + - locality + - political + - long_name: Wierden + short_name: Wierden + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7642 EZ + short_name: 7642 EZ + types: + - postal_code + phone_local: 0546 572 784 + phone_international: +31 546 572 784 + website: https://www.bibliotheekwierden.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 24 + google_maps_url: https://maps.google.com/?cid=9410176374758870735&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Wierden, Wierden, Netherlands diff --git a/data/nde/enriched/entries/1482_kb_isil.yaml b/data/nde/enriched/entries/1482_kb_isil.yaml new file mode 100644 index 0000000000..c64915b10c --- /dev/null +++ b/data/nde/enriched/entries/1482_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Genemuiden + organisatie: Bibliotheek Zwartewaterland + type_organisatie: bibliotheek + isil_code_kb: NL-0871770000 + type: + - L +entry_index: 1482 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871770000 + name: Bibliotheek Zwartewaterland + city: Genemuiden + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962225 + wikidata_label: Bibliotheek Waterland + wikidata_description: Bibliotheekorganisatie in de gemeenten Purmerend, Edam-Volendam, + Landsmeer en Waterland, Nederland + fetch_timestamp: '2025-11-28T12:22:40.121324+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekwaterland.nl + match_confidence: 0.75 +google_maps_enrichment: + place_id: ChIJSX6x9CZ3yEcR6NcvOsFqLlE + name: Bibliotheek Genemuiden + fetch_timestamp: '2025-11-28T12:25:56.553798+00:00' + api_status: OK + coordinates: + latitude: 52.6239269 + longitude: 6.0408833 + formatted_address: Havenplein 1, 8281 EV Genemuiden + short_address: Havenplein 1, Genemuiden + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Havenplein + short_name: Havenplein + types: + - route + - long_name: Genemuiden + short_name: Genemuiden + types: + - locality + - political + - long_name: Zwartewaterland + short_name: Zwartewaterland + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 8281 EV + short_name: 8281 EV + types: + - postal_code + phone_local: 038 385 5371 + phone_international: +31 38 385 5371 + website: https://mijnbieb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 13 + minute: 30 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 13:30â17:30' + - 'dinsdag: 10:00â17:30' + - 'woensdag: 10:00â17:30' + - 'donderdag: 10:00â17:30' + - 'vrijdag: 13:30â20:00' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.6 + total_ratings: 12 + google_maps_url: https://maps.google.com/?cid=5849730344138299368&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Zwartewaterland, Genemuiden, Netherlands diff --git a/data/nde/enriched/entries/1483_kb_isil.yaml b/data/nde/enriched/entries/1483_kb_isil.yaml new file mode 100644 index 0000000000..a0456d843a --- /dev/null +++ b/data/nde/enriched/entries/1483_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Borne + organisatie: Bibliotheek Borne + type_organisatie: bibliotheek + isil_code_kb: NL-0871820000 + type: + - L +entry_index: 1483 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871820000 + name: Bibliotheek Borne + city: Borne + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764035 + wikidata_label: Bibliotheek Borne + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Borne, de openbare bibliotheekvoorziening in de gemeente + Borne, Nederland + fetch_timestamp: '2025-11-28T12:22:40.122227+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.3022979 + longitude: 6.7581469 + wikidata_identifiers: + Website: https://www.bibliotheekborne.nl/bibliotheek/openingstijden +google_maps_enrichment: + place_id: ChIJJaRc7LEPuEcRwjKVOUl7Sag + name: Bibliotheek Borne + fetch_timestamp: '2025-11-28T12:25:57.275135+00:00' + api_status: OK + coordinates: + latitude: 52.3023008 + longitude: 6.7581603999999995 + formatted_address: Marktstraat 23, 7622 CP Borne + short_address: Marktstraat 23, Borne + address_components: + - long_name: '23' + short_name: '23' + types: + - street_number + - long_name: Marktstraat + short_name: Marktstraat + types: + - route + - long_name: Borne + short_name: Borne + types: + - locality + - political + - long_name: Borne + short_name: Borne + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7622 CP + short_name: 7622 CP + types: + - postal_code + phone_local: 074 265 7200 + phone_international: +31 74 265 7200 + website: https://www.bibliotheekborne.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 8 + minute: 0 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 30 + weekday_text: + - 'maandag: 08:00â17:30' + - 'dinsdag: 08:00â17:30' + - 'woensdag: 08:00â17:30' + - 'donderdag: 08:00â17:30' + - 'vrijdag: 08:00â17:30' + - 'zaterdag: 10:00â12:30' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 25 + google_maps_url: https://maps.google.com/?cid=12126359026100679362&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Borne, Borne, Netherlands diff --git a/data/nde/enriched/entries/1484_kb_isil.yaml b/data/nde/enriched/entries/1484_kb_isil.yaml new file mode 100644 index 0000000000..ca5d584941 --- /dev/null +++ b/data/nde/enriched/entries/1484_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Denekamp + organisatie: Bibliotheek Dinkelland + type_organisatie: bibliotheek + isil_code_kb: NL-0871830000 + type: + - L +entry_index: 1484 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871830000 + name: Bibliotheek Dinkelland + city: Denekamp + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.142445+00:00' +google_maps_enrichment: + place_id: ChIJ07ngxPEYuEcRkQreSbeqL8w + name: Bibliotheek Dinkelland - Denekamp + fetch_timestamp: '2025-11-28T12:25:57.936242+00:00' + api_status: OK + coordinates: + latitude: 52.37492220000001 + longitude: 6.999714099999999 + formatted_address: Oranjestraat 21, 7591 GA Denekamp + short_address: Oranjestraat 21, Denekamp + address_components: + - long_name: '21' + short_name: '21' + types: + - street_number + - long_name: Oranjestraat + short_name: Oranjestraat + types: + - route + - long_name: Denekamp + short_name: Denekamp + types: + - locality + - political + - long_name: Dinkelland + short_name: Dinkelland + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7591 GA + short_name: 7591 GA + types: + - postal_code + phone_local: 0541 351 710 + phone_international: +31 541 351 710 + website: http://www.bibliotheekdinkelland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 30 + close: + day: 6 + hour: 12 + minute: 30 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â17:30' + - 'woensdag: 09:00â17:30' + - 'donderdag: 09:00â17:30' + - 'vrijdag: 09:00â17:30' + - 'zaterdag: 10:30â12:30' + - 'zondag: Gesloten' + rating: 5 + total_ratings: 2 + google_maps_url: https://maps.google.com/?cid=14713166211837725329&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Dinkelland, Denekamp, Netherlands diff --git a/data/nde/enriched/entries/1485_kb_isil.yaml b/data/nde/enriched/entries/1485_kb_isil.yaml new file mode 100644 index 0000000000..dd5f140918 --- /dev/null +++ b/data/nde/enriched/entries/1485_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Losser + organisatie: Fundament + type_organisatie: bibliotheek + isil_code_kb: NL-0871870000 + type: + - L +entry_index: 1485 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871870000 + name: Fundament + city: Losser + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61785952 + wikidata_label: Fundament - Bibliotheek Losser + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Bibliotheek Losser, de openbare bibliotheekvoorziening in de gemeente Losser, + Nederland + fetch_timestamp: '2025-11-28T12:22:40.143401+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.2628288 + longitude: 7.0059411 + wikidata_identifiers: + Website: https://www.bibliotheeklosser.nl/openingstijden#196669 +google_maps_enrichment: + place_id: ChIJS5U4zdMXuEcRhyWmpU1-Khw + name: Stichting Fundament + fetch_timestamp: '2025-11-28T12:25:58.566338+00:00' + api_status: OK + coordinates: + latitude: 52.2627587 + longitude: 7.005847600000001 + formatted_address: Raadhuisplein 1, 7581 AG Losser + short_address: Raadhuisplein 1, Losser + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Raadhuisplein + short_name: Raadhuisplein + types: + - route + - long_name: Losser + short_name: Losser + types: + - locality + - political + - long_name: Losser + short_name: Losser + types: + - administrative_area_level_2 + - political + - long_name: Overijssel + short_name: OV + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 7581 AG + short_name: 7581 AG + types: + - postal_code + phone_local: 053 536 9400 + phone_international: +31 53 536 9400 + website: https://www.fundamentlosser.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 11 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 11:00â14:00' + - 'zondag: Gesloten' + rating: 1 + total_ratings: 1 + google_maps_url: https://maps.google.com/?cid=2029573454040540551&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Fundament, Losser, Netherlands diff --git a/data/nde/enriched/entries/1486_kb_isil.yaml b/data/nde/enriched/entries/1486_kb_isil.yaml new file mode 100644 index 0000000000..ccf5270e13 --- /dev/null +++ b/data/nde/enriched/entries/1486_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Mijdrecht + organisatie: Bibliotheek Utrechtse Venen + type_organisatie: bibliotheek + isil_code_kb: NL-0871950000 + type: + - L +entry_index: 1486 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0871950000 + name: Bibliotheek Utrechtse Venen + city: Mijdrecht + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.164619+00:00' +google_maps_enrichment: + place_id: ChIJmU1ViJB1xkcRCCeV0ZlUTLI + name: Bibliotheek Mijdrecht + fetch_timestamp: '2025-11-28T12:25:59.282270+00:00' + api_status: OK + coordinates: + latitude: 52.2075436 + longitude: 4.856897399999999 + formatted_address: Doctor J. van der Haarlaan 8, 3641 JW Mijdrecht + short_address: Doctor J. van der Haarlaan 8, Mijdrecht + address_components: + - long_name: '8' + short_name: '8' + types: + - street_number + - long_name: Doctor J. van der Haarlaan + short_name: Doctor J. van der Haarlaan + types: + - route + - long_name: Mijdrecht + short_name: Mijdrecht + types: + - locality + - political + - long_name: De Ronde Venen + short_name: De Ronde Venen + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3641 JW + short_name: 3641 JW + types: + - postal_code + phone_local: 0297 281 476 + phone_international: +31 297 281 476 + website: http://www.bibliotheekuv.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 30 + close: + day: 1 + hour: 17 + minute: 30 + - open: + day: 2 + hour: 9 + minute: 30 + close: + day: 2 + hour: 17 + minute: 30 + - open: + day: 3 + hour: 9 + minute: 30 + close: + day: 3 + hour: 17 + minute: 30 + - open: + day: 4 + hour: 9 + minute: 30 + close: + day: 4 + hour: 17 + minute: 30 + - open: + day: 5 + hour: 9 + minute: 30 + close: + day: 5 + hour: 17 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:30â17:30' + - 'dinsdag: 09:30â17:30' + - 'woensdag: 09:30â17:30' + - 'donderdag: 09:30â17:30' + - 'vrijdag: 09:30â17:30' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.1 + total_ratings: 30 + google_maps_url: https://maps.google.com/?cid=12847736856604124936&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Utrechtse Venen, Mijdrecht, Netherlands diff --git a/data/nde/enriched/entries/1487_kb_isil.yaml b/data/nde/enriched/entries/1487_kb_isil.yaml new file mode 100644 index 0000000000..fe07cb3f2f --- /dev/null +++ b/data/nde/enriched/entries/1487_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: IJsselstein + organisatie: Bibliotheek Lek & Ijssel + type_organisatie: bibliotheek + isil_code_kb: NL-0872060000 + type: + - L +entry_index: 1487 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872060000 + name: Bibliotheek Lek & Ijssel + city: IJsselstein + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962114 + wikidata_label: Bibliotheek Lek & IJssel + wikidata_description: bibliotheekorganisatie in de regio Lek & IJssel, gemeenten + Houten, IJsselstein en Vianen, Nederland + fetch_timestamp: '2025-11-28T12:22:40.179034+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheeklekijssel.nl/ + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJkwwD4r9kxkcRrn7yaD_j94w + name: Bibliotheek IJsselstein + fetch_timestamp: '2025-11-28T12:25:59.950687+00:00' + api_status: OK + coordinates: + latitude: 52.017509399999994 + longitude: 5.0413036 + formatted_address: Overtoom 7, 3401 BK IJsselstein + short_address: Overtoom 7, IJsselstein + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Overtoom + short_name: Overtoom + types: + - route + - long_name: IJsselstein + short_name: IJsselstein + types: + - locality + - political + - long_name: IJsselstein + short_name: IJsselstein + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3401 BK + short_name: 3401 BK + types: + - postal_code + phone_local: 085 483 5432 + phone_international: +31 85 483 5432 + website: http://www.bibliotheeklekijssel.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 48 + google_maps_url: https://maps.google.com/?cid=10157837346040610478&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Lek & Ijssel, IJsselstein, Netherlands diff --git a/data/nde/enriched/entries/1488_kb_isil.yaml b/data/nde/enriched/entries/1488_kb_isil.yaml new file mode 100644 index 0000000000..91204b6bd3 --- /dev/null +++ b/data/nde/enriched/entries/1488_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Bleiswijk + organisatie: Bibliotheek Oostland + type_organisatie: bibliotheek + isil_code_kb: NL-0872250000 + type: + - L +entry_index: 1488 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872250000 + name: Bibliotheek Oostland + city: Bleiswijk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59961937 + wikidata_label: Bibliotheek Oostland + wikidata_description: bibliotheekorganisatie in de gemeenten Lansingerland en Pijnacker-Nootdorp, + Nederland + fetch_timestamp: '2025-11-28T12:22:40.191313+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekoostland.nl + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJC3tPSSXMxUcRZsDusQQbi88 + name: Bibliotheek Oostland, vestiging Bleiswijk, 't Web + fetch_timestamp: '2025-11-28T12:26:00.621853+00:00' + api_status: OK + coordinates: + latitude: 52.006254899999995 + longitude: 4.5351056 + formatted_address: Nachtegaallaan 4, 2665 EH Bleiswijk + short_address: Nachtegaallaan 4, Bleiswijk + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Nachtegaallaan + short_name: Nachtegaallaan + types: + - route + - long_name: Bleiswijk + short_name: Bleiswijk + types: + - locality + - political + - long_name: Lansingerland + short_name: Lansingerland + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2665 EH + short_name: 2665 EH + types: + - postal_code + phone_local: 010 529 9380 + phone_international: +31 10 529 9380 + website: http://www.bibliotheekoostland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 14 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 14 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 0 + weekday_text: + - 'maandag: Gesloten' + - 'dinsdag: 14:00â17:00' + - 'woensdag: 14:00â17:00' + - 'donderdag: 14:00â17:00' + - 'vrijdag: 14:00â17:00' + - 'zaterdag: 10:00â12:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 13 + google_maps_url: https://maps.google.com/?cid=14955076694592897126&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Oostland, Bleiswijk, Netherlands diff --git a/data/nde/enriched/entries/1489_kb_isil.yaml b/data/nde/enriched/entries/1489_kb_isil.yaml new file mode 100644 index 0000000000..cafe0a5b21 --- /dev/null +++ b/data/nde/enriched/entries/1489_kb_isil.yaml @@ -0,0 +1,188 @@ +original_entry: + plaatsnaam_bezoekadres: Schoonhoven + organisatie: Bibliotheek Krimpenerwaard + type_organisatie: bibliotheek + isil_code_kb: NL-0872270000 + type: + - L +entry_index: 1489 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872270000 + name: Bibliotheek Krimpenerwaard + city: Schoonhoven + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q121288529 + wikidata_label: Bibliotheek Krimpenerwaard + wikidata_description: bibliotheekorganisatie in de gemeente Krimpenerwaard, Nederland + fetch_timestamp: '2025-11-28T12:22:40.207202+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.debibliotheekkrimpenerwaard.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJWWNjl0x-xkcRTEp6_KkxyQ4 + name: Bibliotheek Schoonhoven + fetch_timestamp: '2025-11-28T12:26:01.273857+00:00' + api_status: OK + coordinates: + latitude: 51.955270299999995 + longitude: 4.8446754 + formatted_address: Bergambachterstraat 9, 2871 JB Schoonhoven + short_address: Bergambachterstraat 9, Schoonhoven + address_components: + - long_name: '9' + short_name: '9' + types: + - street_number + - long_name: Bergambachterstraat + short_name: Bergambachterstraat + types: + - route + - long_name: Schoonhoven + short_name: Schoonhoven + types: + - locality + - political + - long_name: Krimpenerwaard + short_name: Krimpenerwaard + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2871 JB + short_name: 2871 JB + types: + - postal_code + phone_local: 0182 385 406 + phone_international: +31 182 385 406 + website: http://www.debibliotheekkrimpenerwaard.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 12 + minute: 0 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 18 + minute: 30 + close: + day: 2 + hour: 20 + minute: 30 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 12 + minute: 0 + - open: + day: 3 + hour: 14 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 12 + minute: 0 + - open: + day: 4 + hour: 14 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 18 + minute: 30 + close: + day: 5 + hour: 20 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 15 + minute: 0 + weekday_text: + - 'maandag: 14:00â17:00' + - 'dinsdag: 10:00â12:00, 14:00â17:00, 18:30â20:30' + - 'woensdag: 10:00â12:00, 14:00â17:00' + - 'donderdag: 10:00â12:00, 14:00â17:00' + - 'vrijdag: 14:00â17:00, 18:30â20:30' + - 'zaterdag: 10:00â15:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 20 + google_maps_url: https://maps.google.com/?cid=1065437393004939852&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Krimpenerwaard, Schoonhoven, Netherlands diff --git a/data/nde/enriched/entries/1490_kb_isil.yaml b/data/nde/enriched/entries/1490_kb_isil.yaml new file mode 100644 index 0000000000..cc5c2177cb --- /dev/null +++ b/data/nde/enriched/entries/1490_kb_isil.yaml @@ -0,0 +1,140 @@ +original_entry: + plaatsnaam_bezoekadres: Poeldijk + organisatie: Bibliotheek Westland + type_organisatie: bibliotheek + isil_code_kb: NL-0872300000 + type: + - L +entry_index: 1490 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872300000 + name: Bibliotheek Westland + city: Poeldijk + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962163 + wikidata_label: Bibliotheek Westland + wikidata_description: bibliotheekorganisatie in de gemeente Westland, Nederland + fetch_timestamp: '2025-11-28T12:22:40.228166+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekwestland.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJHekOGySyxUcRhItWQbN-gic + name: Bibliotheek Westland | Poeldijk + fetch_timestamp: '2025-11-28T12:26:01.951273+00:00' + api_status: OK + coordinates: + latitude: 52.0246315 + longitude: 4.2162451 + formatted_address: Julianastraat 49, 2685 BB Poeldijk + short_address: Julianastraat 49, Poeldijk + address_components: + - long_name: '49' + short_name: '49' + types: + - street_number + - long_name: Julianastraat + short_name: Julianastraat + types: + - route + - long_name: Poeldijk + short_name: Poeldijk + types: + - locality + - political + - long_name: Westland + short_name: Westland + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2685 BB + short_name: 2685 BB + types: + - postal_code + phone_local: 0174 246 580 + phone_international: +31 174 246 580 + website: https://www.bibliotheekwestland.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 14 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 18 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 14:00â17:00' + - 'dinsdag: 14:00â17:00' + - 'woensdag: 14:00â17:00' + - 'donderdag: 18:00â20:00' + - 'vrijdag: 14:00â17:00' + - 'zaterdag: Gesloten' + - 'zondag: Gesloten' + rating: 3.8 + total_ratings: 4 + google_maps_url: https://maps.google.com/?cid=2846977222812011396&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Westland, Poeldijk, Netherlands diff --git a/data/nde/enriched/entries/1491_kb_isil.yaml b/data/nde/enriched/entries/1491_kb_isil.yaml new file mode 100644 index 0000000000..45c9d227e8 --- /dev/null +++ b/data/nde/enriched/entries/1491_kb_isil.yaml @@ -0,0 +1,150 @@ +original_entry: + plaatsnaam_bezoekadres: Lisse + organisatie: Bibliotheek Bollenstreek + type_organisatie: bibliotheek + isil_code_kb: NL-0872320000 + type: + - L +entry_index: 1491 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872320000 + name: Bibliotheek Bollenstreek + city: Lisse + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962145 + wikidata_label: Bibliotheek Bollenstreek + wikidata_description: bibliotheekorganisatie in de Bollenstreek, gemeenten Lisse, + Noordwijk, Noordwijkerhout, Oegstgeest en Teijlingen (Sassenheim, Voorhout en + Warmond), Nederland + fetch_timestamp: '2025-11-28T12:22:40.246939+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekbollenstreek.nl/ + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJ37OXKG3CxUcR12AfwJEazK0 + name: Bibliotheek Bollenstreek / Lisse + fetch_timestamp: '2025-11-28T12:26:02.666242+00:00' + api_status: OK + coordinates: + latitude: 52.26061190000001 + longitude: 4.5601699 + formatted_address: Koninginneweg 79A, 2161 ZB Lisse + short_address: Koninginneweg 79A, Lisse + address_components: + - long_name: 79A + short_name: 79A + types: + - street_number + - long_name: Koninginneweg + short_name: Koninginneweg + types: + - route + - long_name: Lisse + short_name: Lisse + types: + - locality + - political + - long_name: Lisse + short_name: Lisse + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2161 ZB + short_name: 2161 ZB + types: + - postal_code + phone_local: 0252 415 782 + phone_international: +31 252 415 782 + website: http://www.bibliotheekbollenstreek.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 18 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 18 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 14:00â18:00' + - 'dinsdag: 10:00â18:00' + - 'woensdag: 10:00â18:00' + - 'donderdag: 10:00â21:00' + - 'vrijdag: 10:00â18:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 22 + google_maps_url: https://maps.google.com/?cid=12523413877106368727&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bollenstreek, Lisse, Netherlands diff --git a/data/nde/enriched/entries/1492_kb_isil.yaml b/data/nde/enriched/entries/1492_kb_isil.yaml new file mode 100644 index 0000000000..78f2ddf415 --- /dev/null +++ b/data/nde/enriched/entries/1492_kb_isil.yaml @@ -0,0 +1,148 @@ +original_entry: + plaatsnaam_bezoekadres: Waddinxveen + organisatie: Bibliotheek De Groene Venen + type_organisatie: bibliotheek + isil_code_kb: NL-0872380000 + type: + - L +entry_index: 1492 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872380000 + name: Bibliotheek De Groene Venen + city: Waddinxveen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962362 + wikidata_label: Bibliotheek De Groene Venen + wikidata_description: bibliotheekorganisatie in de gemeenten Bodegraven-Reeuwijk, + Waddinxveen en Zuidplas, Nederland + fetch_timestamp: '2025-11-28T12:22:40.276641+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekdegroenevenen.nl + match_confidence: 1.1 +google_maps_enrichment: + place_id: ChIJL3wQGajRxUcRuu50da86-C4 + name: Bibliotheek De Groene Venen / Waddinxveen + fetch_timestamp: '2025-11-28T12:26:03.349222+00:00' + api_status: OK + coordinates: + latitude: 52.04178350000001 + longitude: 4.6514253 + formatted_address: Gouweplein 1, 2741 MW Waddinxveen + short_address: Gouweplein 1, Waddinxveen + address_components: + - long_name: '1' + short_name: '1' + types: + - street_number + - long_name: Gouweplein + short_name: Gouweplein + types: + - route + - long_name: Waddinxveen + short_name: Waddinxveen + types: + - locality + - political + - long_name: Waddinxveen + short_name: Waddinxveen + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 2741 MW + short_name: 2741 MW + types: + - postal_code + phone_local: 0182 640 572 + phone_international: +31 182 640 572 + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 22 + google_maps_url: https://maps.google.com/?cid=3384519645233213114&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek De Groene Venen, Waddinxveen, Netherlands diff --git a/data/nde/enriched/entries/1493_kb_isil.yaml b/data/nde/enriched/entries/1493_kb_isil.yaml new file mode 100644 index 0000000000..ff8ba364ac --- /dev/null +++ b/data/nde/enriched/entries/1493_kb_isil.yaml @@ -0,0 +1,156 @@ +original_entry: + plaatsnaam_bezoekadres: Numansdorp + organisatie: Bibliotheek Hoeksche Waard + type_organisatie: bibliotheek + isil_code_kb: NL-0872390000 + type: + - L +entry_index: 1493 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872390000 + name: Bibliotheek Hoeksche Waard + city: Numansdorp + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962194 + wikidata_label: Bibliotheek Hoeksche Waard + wikidata_description: bibliotheekorganisatie in de gemeente Hoeksche Waard, Nederland + fetch_timestamp: '2025-11-28T12:22:40.297317+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekhoekschewaard.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJ63CH34M5xEcRCfFsBpPy1XU + name: Bibliotheek Hoeksche Waard / Numansdorp + fetch_timestamp: '2025-11-28T12:26:04.097484+00:00' + api_status: OK + coordinates: + latitude: 51.729775499999995 + longitude: 4.4338723 + formatted_address: Bernhardstraat 25, 3281 BC Numansdorp + short_address: Bernhardstraat 25, Numansdorp + address_components: + - long_name: '25' + short_name: '25' + types: + - street_number + - long_name: Bernhardstraat + short_name: Bernhardstraat + types: + - route + - long_name: Numansdorp + short_name: Numansdorp + types: + - locality + - political + - long_name: Hoeksche Waard + short_name: Hoeksche Waard + types: + - administrative_area_level_2 + - political + - long_name: Zuid-Holland + short_name: ZH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3281 BC + short_name: 3281 BC + types: + - postal_code + phone_local: 0186 224 452 + phone_international: +31 186 224 452 + website: http://www.bibliotheekhoekschewaard.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 9 + minute: 0 + close: + day: 0 + hour: 16 + minute: 0 + - open: + day: 1 + hour: 8 + minute: 30 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 30 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 30 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 30 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 30 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 20 + minute: 0 + weekday_text: + - 'maandag: 08:30â20:00' + - 'dinsdag: 08:30â20:00' + - 'woensdag: 08:30â20:00' + - 'donderdag: 08:30â20:00' + - 'vrijdag: 08:30â20:00' + - 'zaterdag: 09:00â20:00' + - 'zondag: 09:00â16:00' + rating: 3.8 + total_ratings: 4 + google_maps_url: https://maps.google.com/?cid=8490959385758855433&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Hoeksche Waard, Numansdorp, Netherlands diff --git a/data/nde/enriched/entries/1494_kb_isil.yaml b/data/nde/enriched/entries/1494_kb_isil.yaml new file mode 100644 index 0000000000..1ff5498975 --- /dev/null +++ b/data/nde/enriched/entries/1494_kb_isil.yaml @@ -0,0 +1,160 @@ +original_entry: + plaatsnaam_bezoekadres: Gulpen + organisatie: Bibliotheek Gulpen-Wittem + type_organisatie: bibliotheek + isil_code_kb: NL-0872560000 + type: + - L +entry_index: 1494 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872560000 + name: Bibliotheek Gulpen-Wittem + city: Gulpen + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764048 + wikidata_label: Bibliotheek Gulpen-Wittem + wikidata_description: hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Gulpen-Wittem, de openbare bibliotheekvoorziening in de gemeente + Gulpen-Wittem, Nederland + fetch_timestamp: '2025-11-28T12:22:40.298216+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 50.8151497 + longitude: 5.8882573 + wikidata_identifiers: + Website: https://www.bibliotheekgulpen-wittem.nl/klantenservice/contact.html +google_maps_enrichment: + place_id: ChIJQ6dcwEWUwEcRVsOToqkqTik + name: Stichting openbare bibliotheek gulpen-Wittem + fetch_timestamp: '2025-11-28T12:26:04.757479+00:00' + api_status: OK + coordinates: + latitude: 50.815123799999995 + longitude: 5.8883334 + formatted_address: Willem Vliegenstraat 4, 6271 DA Gulpen + short_address: Willem Vliegenstraat 4, Gulpen + address_components: + - long_name: '4' + short_name: '4' + types: + - street_number + - long_name: Willem Vliegenstraat + short_name: Willem Vliegenstraat + types: + - route + - long_name: Gulpen + short_name: Gulpen + types: + - locality + - political + - long_name: Gulpen-Wittem + short_name: Gulpen-Wittem + types: + - administrative_area_level_2 + - political + - long_name: Limburg + short_name: LI + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6271 DA + short_name: 6271 DA + types: + - postal_code + phone_local: 043 450 6220 + phone_international: +31 43 450 6220 + website: http://www.bibliotheekgulpen-wittem.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 14 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 14 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 12 + minute: 30 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 12 + minute: 0 + - open: + day: 4 + hour: 14 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 14 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 12 + minute: 30 + weekday_text: + - 'maandag: 14:00â17:00' + - 'dinsdag: 14:00â17:00' + - 'woensdag: 12:30â17:00' + - 'donderdag: 10:00â12:00, 14:00â17:00' + - 'vrijdag: 14:00â17:00' + - 'zaterdag: 10:00â12:30' + - 'zondag: Gesloten' + rating: 4.1 + total_ratings: 15 + google_maps_url: https://maps.google.com/?cid=2976363311803908950&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Gulpen-Wittem, Gulpen, Netherlands diff --git a/data/nde/enriched/entries/1495_kb_isil.yaml b/data/nde/enriched/entries/1495_kb_isil.yaml new file mode 100644 index 0000000000..61786c7735 --- /dev/null +++ b/data/nde/enriched/entries/1495_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Zevenaar + organisatie: Kunstwerk! de Bibliotheek + type_organisatie: bibliotheek + isil_code_kb: NL-0872740000 + type: + - L +entry_index: 1495 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0872740000 + name: Kunstwerk! de Bibliotheek + city: Zevenaar + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.316333+00:00' +google_maps_enrichment: + place_id: ChIJkRPho1yfx0cR6tkyok3OBzE + name: Kunstwerk! de Bibliotheek + fetch_timestamp: '2025-11-28T12:26:05.380551+00:00' + api_status: OK + coordinates: + latitude: 51.9246864 + longitude: 6.0758142 + formatted_address: Kerkstraat 27, 6901 RB Zevenaar + short_address: Kerkstraat 27, Zevenaar + address_components: + - long_name: '27' + short_name: '27' + types: + - street_number + - long_name: Kerkstraat + short_name: Kerkstraat + types: + - route + - long_name: Zevenaar + short_name: Zevenaar + types: + - locality + - political + - long_name: Zevenaar + short_name: Zevenaar + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6901 RB + short_name: 6901 RB + types: + - postal_code + phone_local: 085 040 9971 + phone_international: +31 85 040 9971 + website: https://liemerskunstwerk.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 14 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 14:00â17:00' + - 'zondag: Gesloten' + rating: 3.9 + total_ratings: 18 + google_maps_url: https://maps.google.com/?cid=3533019265524488682&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Kunstwerk! de Bibliotheek, Zevenaar, Netherlands diff --git a/data/nde/enriched/entries/1496_kb_isil.yaml b/data/nde/enriched/entries/1496_kb_isil.yaml new file mode 100644 index 0000000000..9ae8a4881c --- /dev/null +++ b/data/nde/enriched/entries/1496_kb_isil.yaml @@ -0,0 +1,134 @@ +original_entry: + plaatsnaam_bezoekadres: Bonaire + organisatie: Bibliotheek Bonaire + type_organisatie: bibliotheek + isil_code_kb: NL-0873000000 + type: + - L +entry_index: 1496 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0873000000 + name: Bibliotheek Bonaire + city: Bonaire + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.333485+00:00' +google_maps_enrichment: + place_id: ChIJz1e6fgAbg44RPQYnRxLtOyM + name: Biblioteka Publiko Boneiru + fetch_timestamp: '2025-11-28T12:26:06.038474+00:00' + api_status: OK + coordinates: + latitude: 12.1679838 + longitude: -68.2847827 + formatted_address: Kaya Amsterdam, Kralendijk, Caribisch Nederland + short_address: Kaya Amsterdam, Kralendijk + address_components: + - long_name: Kaya Amsterdam + short_name: Kaya Amsterdam + types: + - route + - long_name: Hato + short_name: Hato + types: + - sublocality_level_1 + - sublocality + - political + - long_name: Kralendijk + short_name: Kralendijk + types: + - locality + - political + - long_name: Bonaire + short_name: Bonaire + types: + - administrative_area_level_1 + - political + - long_name: Caribisch Nederland + short_name: BQ + types: + - country + - political + phone_local: 715 5344 + phone_international: +599 715 5344 + website: https://bibliotheekbonaire.com/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 8 + minute: 0 + close: + day: 2 + hour: 19 + minute: 0 + - open: + day: 3 + hour: 8 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 8 + minute: 0 + close: + day: 4 + hour: 19 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 16 + minute: 30 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 14 + minute: 0 + weekday_text: + - 'maandag: 13:00â17:00' + - 'dinsdag: 08:00â19:00' + - 'woensdag: 08:00â17:00' + - 'donderdag: 08:00â19:00' + - 'vrijdag: 08:00â16:30' + - 'zaterdag: 10:00â14:00' + - 'zondag: Gesloten' + rating: 4.7 + total_ratings: 3 + google_maps_url: https://maps.google.com/?cid=2538883477712340541&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Bonaire, Bonaire, Netherlands diff --git a/data/nde/enriched/entries/1497_kb_isil.yaml b/data/nde/enriched/entries/1497_kb_isil.yaml new file mode 100644 index 0000000000..8287c58b06 --- /dev/null +++ b/data/nde/enriched/entries/1497_kb_isil.yaml @@ -0,0 +1,149 @@ +original_entry: + plaatsnaam_bezoekadres: Driebergen-Rijsenburg + organisatie: Bibliotheek Z-O-U-T + type_organisatie: bibliotheek + isil_code_kb: NL-0873120000 + type: + - L +entry_index: 1497 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0873120000 + name: Bibliotheek Z-O-U-T + city: Driebergen-Rijsenburg + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q59962152 + wikidata_label: Bibliotheek Z-O-U-T + wikidata_description: Bibliotheekorganisatie in de gemeenten Utrechtse Heuvelrug, + Renswoude, Rhenen en Wijk bij Duurstede, Nederland + fetch_timestamp: '2025-11-28T12:22:40.345736+00:00' + match_method: fuzzy_name_match + wikidata_identifiers: + Website: https://www.bibliotheekzout.nl/ + match_confidence: 1.0 +google_maps_enrichment: + place_id: ChIJGZ-FYR9dxkcR6teqBjMTqy0 + name: de Bibliotheek Z-O-U-T Driebergen + fetch_timestamp: '2025-11-28T12:26:06.758051+00:00' + api_status: OK + coordinates: + latitude: 52.051638800000006 + longitude: 5.282796299999999 + formatted_address: Hoofdstraat 164, 3972 LG Driebergen-Rijsenburg + short_address: Hoofdstraat 164, Driebergen-Rijsenburg + address_components: + - long_name: '164' + short_name: '164' + types: + - street_number + - long_name: Hoofdstraat + short_name: Hoofdstraat + types: + - route + - long_name: Driebergen-Rijsenburg + short_name: Driebergen-Rijsenburg + types: + - locality + - political + - long_name: Utrechtse Heuvelrug + short_name: Utrechtse Heuvelrug + types: + - administrative_area_level_2 + - political + - long_name: Utrecht + short_name: UT + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 3972 LG + short_name: 3972 LG + types: + - postal_code + phone_local: 0343 517 981 + phone_international: +31 343 517 981 + website: https://www.bibliotheekzout.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 10 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 10 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 10 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 10 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 10 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 13 + minute: 0 + weekday_text: + - 'maandag: 10:00â17:00' + - 'dinsdag: 10:00â17:00' + - 'woensdag: 10:00â17:00' + - 'donderdag: 10:00â17:00' + - 'vrijdag: 10:00â17:00' + - 'zaterdag: 10:00â13:00' + - 'zondag: Gesloten' + rating: 4.2 + total_ratings: 15 + google_maps_url: https://maps.google.com/?cid=3290745062600398826&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Z-O-U-T, Driebergen-Rijsenburg, Netherlands diff --git a/data/nde/enriched/entries/1498_kb_isil.yaml b/data/nde/enriched/entries/1498_kb_isil.yaml new file mode 100644 index 0000000000..40596debf1 --- /dev/null +++ b/data/nde/enriched/entries/1498_kb_isil.yaml @@ -0,0 +1,160 @@ +original_entry: + plaatsnaam_bezoekadres: Alkmaar + organisatie: Bibliotheek Kennemerwaard + type_organisatie: bibliotheek + isil_code_kb: NL-0873440000 + type: + - L +entry_index: 1498 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0873440000 + name: Bibliotheek Kennemerwaard + city: Alkmaar + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q63890035 + wikidata_label: Bibliotheek Alkmaar Centrum + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Bibliotheek + Kennemerwaard, de openbare bibliotheekvoorziening in de regio Noord-Kennemerland, + gemeenten Alkmaar, Bergen, Castricum en Heerhugowaard + fetch_timestamp: '2025-11-28T12:22:40.347017+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.63346 + longitude: 4.74329 + wikidata_identifiers: + Website: https://www.bibliotheekkennemerwaard.nl/openingstijden/#199258 +google_maps_enrichment: + place_id: ChIJ84WyFbdXz0cRL30f8sGBolY + name: Bibliotheek Kennemerwaard, locatie Alkmaar Centrum + fetch_timestamp: '2025-11-28T12:26:07.478128+00:00' + api_status: OK + coordinates: + latitude: 52.633298599999996 + longitude: 4.7431487 + formatted_address: Gasthuisstraat 2, 1811 KC Alkmaar + short_address: Gasthuisstraat 2, Alkmaar + address_components: + - long_name: '2' + short_name: '2' + types: + - street_number + - long_name: Gasthuisstraat + short_name: Gasthuisstraat + types: + - route + - long_name: Alkmaar + short_name: Alkmaar + types: + - locality + - political + - long_name: Alkmaar + short_name: Alkmaar + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1811 KC + short_name: 1811 KC + types: + - postal_code + phone_local: 072 515 6644 + phone_international: +31 72 515 6644 + website: http://www.bibliotheekkennemerwaard.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 0 + hour: 12 + minute: 0 + close: + day: 0 + hour: 17 + minute: 0 + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 20 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 20 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â20:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â20:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: 12:00â17:00' + rating: 4.3 + total_ratings: 101 + google_maps_url: https://maps.google.com/?cid=6242694703479749935&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Kennemerwaard, Alkmaar, Netherlands diff --git a/data/nde/enriched/entries/1499_kb_isil.yaml b/data/nde/enriched/entries/1499_kb_isil.yaml new file mode 100644 index 0000000000..a8b13b420c --- /dev/null +++ b/data/nde/enriched/entries/1499_kb_isil.yaml @@ -0,0 +1,151 @@ +original_entry: + plaatsnaam_bezoekadres: Middelburg + organisatie: Bibliotheek van Zeeland + type_organisatie: bibliotheek + isil_code_kb: NL-0873450000 + type: + - L +entry_index: 1499 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0873450000 + name: Bibliotheek van Zeeland + city: Middelburg + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q60227380 + wikidata_label: Bibliotheek Middelburg + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van ZB Planbureau + en Bibliotheek van Zeeland in Middelburg + fetch_timestamp: '2025-11-28T12:22:40.347887+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 51.4963215 + longitude: 3.6157947 + wikidata_identifiers: + Website: https://www.dezb.nl/openingstijden-en-adressen/detail.163844.html +google_maps_enrichment: + place_id: ChIJywhwVtmQxEcRWn0zWYmPLF0 + name: ZB Bibliotheek van Zeeland + fetch_timestamp: '2025-11-28T12:26:08.194113+00:00' + api_status: OK + coordinates: + latitude: 51.496538 + longitude: 3.6161459 + formatted_address: Kousteensedijk 7, 4331 JE Middelburg + short_address: Kousteensedijk 7, Middelburg + address_components: + - long_name: '7' + short_name: '7' + types: + - street_number + - long_name: Kousteensedijk + short_name: Kousteensedijk + types: + - route + - long_name: Middelburg + short_name: Middelburg + types: + - locality + - political + - long_name: Middelburg + short_name: Middelburg + types: + - administrative_area_level_2 + - political + - long_name: Zeeland + short_name: ZE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 4331 JE + short_name: 4331 JE + types: + - postal_code + phone_local: 0118 654 000 + phone_international: +31 118 654 000 + website: https://www.dezb.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 17 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 20 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 20 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 9 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â17:00' + - 'dinsdag: 09:00â20:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â20:00' + - 'vrijdag: 09:00â17:00' + - 'zaterdag: 09:00â16:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 156 + google_maps_url: https://maps.google.com/?cid=6713898964572405082&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek van Zeeland, Middelburg, Netherlands diff --git a/data/nde/enriched/entries/1500_kb_isil.yaml b/data/nde/enriched/entries/1500_kb_isil.yaml new file mode 100644 index 0000000000..bf4a55721d --- /dev/null +++ b/data/nde/enriched/entries/1500_kb_isil.yaml @@ -0,0 +1,141 @@ +original_entry: + plaatsnaam_bezoekadres: Dieren + organisatie: Zoomerij bibliotheek x cultuur + type_organisatie: bibliotheek + isil_code_kb: NL-0873460000 + type: + - L +entry_index: 1500 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0873460000 + name: Zoomerij bibliotheek x cultuur + city: Dieren + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment_status: NOT_FOUND +wikidata_search_timestamp: '2025-11-28T12:22:40.372027+00:00' +google_maps_enrichment: + place_id: ChIJrQPvhuiXx0cRVTNtA3uYvvw + name: de Zoomerij Dieren bibliotheek x cultuur + fetch_timestamp: '2025-11-28T12:26:08.914446+00:00' + api_status: OK + coordinates: + latitude: 52.0519762 + longitude: 6.101993299999999 + formatted_address: Ericaplein 5, 6951 CP Dieren + short_address: Ericaplein 5, Dieren + address_components: + - long_name: '5' + short_name: '5' + types: + - street_number + - long_name: Ericaplein + short_name: Ericaplein + types: + - route + - long_name: Dieren + short_name: Dieren + types: + - locality + - political + - long_name: Rheden + short_name: Rheden + types: + - administrative_area_level_2 + - political + - long_name: Gelderland + short_name: GE + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 6951 CP + short_name: 6951 CP + types: + - postal_code + phone_local: 0313 415 476 + phone_international: +31 313 415 476 + website: https://www.dezoomerij.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 13 + minute: 0 + close: + day: 1 + hour: 21 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 18 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 21 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 21 + minute: 0 + - open: + day: 5 + hour: 9 + minute: 0 + close: + day: 5 + hour: 18 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 17 + minute: 0 + weekday_text: + - 'maandag: 13:00â21:00' + - 'dinsdag: 09:00â18:00' + - 'woensdag: 09:00â21:00' + - 'donderdag: 09:00â21:00' + - 'vrijdag: 09:00â18:00' + - 'zaterdag: 10:00â17:00' + - 'zondag: Gesloten' + rating: 4.5 + total_ratings: 28 + google_maps_url: https://maps.google.com/?cid=18212161597238752085&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Zoomerij bibliotheek x cultuur, Dieren, Netherlands diff --git a/data/nde/enriched/entries/1501_kb_isil.yaml b/data/nde/enriched/entries/1501_kb_isil.yaml new file mode 100644 index 0000000000..7a0b0f581d --- /dev/null +++ b/data/nde/enriched/entries/1501_kb_isil.yaml @@ -0,0 +1,152 @@ +original_entry: + plaatsnaam_bezoekadres: Heiloo + organisatie: Bibliotheek Heiloo + type_organisatie: bibliotheek + isil_code_kb: NL-0873550000 + type: + - L +entry_index: 1501 +processing_timestamp: '2025-11-28T12:19:25.739468+00:00' +kb_enrichment: + source: KB Netherlands Library Network + source_file: KB_Netherlands_ISIL_2025-04-01.xlsx + source_url: https://www.bibliotheeknetwerk.nl/ + extraction_date: '2025-11-17T13:02:03.421813+00:00' + enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' + enrichment_method: automated_integration + isil_code: NL-0873550000 + name: Bibliotheek Heiloo + city: Heiloo + registry: KB Netherlands Library Network + country: Netherlands +enrichment_status: isil_kb_source +enrichment_source: KB Netherlands Library Network +enrichment_timestamp: '2025-11-28T12:19:25.739468+00:00' +wikidata_enrichment: + wikidata_entity_id: Q61764039 + wikidata_label: Bibliotheek Heiloo + wikidata_description: Hoofdvestiging en administratief hoofdkantoor van Stichting + Openbare Bibliotheek Heiloo, de openbare bibliotheekvoorziening in de gemeente + Heiloo, Nederland + fetch_timestamp: '2025-11-28T12:22:40.372808+00:00' + match_method: isil_code_match + wikidata_coordinates: + latitude: 52.60065 + longitude: 4.69958 + wikidata_identifiers: + Website: https://www.bibliotheekheiloo.nl/over-ons/openingstijden-en-adres/detail.199923.html/bibliotheek-heiloo/ +google_maps_enrichment: + place_id: ChIJJfeoHgP4xUcR5gNKFOGqlrk + name: Bibliotheek Heiloo + fetch_timestamp: '2025-11-28T12:26:09.569260+00:00' + api_status: OK + coordinates: + latitude: 52.600515099999996 + longitude: 4.6993617 + formatted_address: Westerweg 250, 1852 AR Heiloo + short_address: Westerweg 250, Heiloo + address_components: + - long_name: '250' + short_name: '250' + types: + - street_number + - long_name: Westerweg + short_name: Westerweg + types: + - route + - long_name: Heiloo + short_name: Heiloo + types: + - locality + - political + - long_name: Heiloo + short_name: Heiloo + types: + - administrative_area_level_2 + - political + - long_name: Noord-Holland + short_name: NH + types: + - administrative_area_level_1 + - political + - long_name: Nederland + short_name: NL + types: + - country + - political + - long_name: 1852 AR + short_name: 1852 AR + types: + - postal_code + phone_local: 072 533 0670 + phone_international: +31 72 533 0670 + website: http://www.bibliotheekheiloo.nl/ + google_place_types: + - library + - point_of_interest + - establishment + primary_type: library + business_status: OPERATIONAL + opening_hours: + periods: + - open: + day: 1 + hour: 9 + minute: 0 + close: + day: 1 + hour: 20 + minute: 0 + - open: + day: 2 + hour: 9 + minute: 0 + close: + day: 2 + hour: 17 + minute: 0 + - open: + day: 3 + hour: 9 + minute: 0 + close: + day: 3 + hour: 17 + minute: 0 + - open: + day: 4 + hour: 9 + minute: 0 + close: + day: 4 + hour: 17 + minute: 0 + - open: + day: 5 + hour: 8 + minute: 0 + close: + day: 5 + hour: 17 + minute: 0 + - open: + day: 6 + hour: 10 + minute: 0 + close: + day: 6 + hour: 16 + minute: 0 + weekday_text: + - 'maandag: 09:00â20:00' + - 'dinsdag: 09:00â17:00' + - 'woensdag: 09:00â17:00' + - 'donderdag: 09:00â17:00' + - 'vrijdag: 08:00â17:00' + - 'zaterdag: 10:00â16:00' + - 'zondag: Gesloten' + rating: 4.4 + total_ratings: 26 + google_maps_url: https://maps.google.com/?cid=13373064027208025062&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA +google_maps_status: SUCCESS +google_maps_search_query: Bibliotheek Heiloo, Heiloo, Netherlands diff --git a/data/nde/enriched/google_maps_enrichment_stats_20251128_132314.json b/data/nde/enriched/google_maps_enrichment_stats_20251128_132314.json new file mode 100644 index 0000000000..5b070cb44d --- /dev/null +++ b/data/nde/enriched/google_maps_enrichment_stats_20251128_132314.json @@ -0,0 +1,12 @@ +{ + "timestamp": "2025-11-28T12:23:14.245229+00:00", + "dry_run": false, + "limit": 10, + "force": false, + "total_files": 1502, + "already_enriched": 10, + "newly_enriched": 0, + "not_found": 0, + "errors": 0, + "skipped": 0 +} \ No newline at end of file diff --git a/data/nde/enriched/kb_google_maps_enrichment_stats_20251128_132609.json b/data/nde/enriched/kb_google_maps_enrichment_stats_20251128_132609.json new file mode 100644 index 0000000000..e340d79495 --- /dev/null +++ b/data/nde/enriched/kb_google_maps_enrichment_stats_20251128_132609.json @@ -0,0 +1,10 @@ +{ + "timestamp": "2025-11-28T12:26:09.993850+00:00", + "dry_run": false, + "limit": null, + "total_files": 149, + "already_enriched": 0, + "newly_enriched": 149, + "not_found": 0, + "errors": 0 +} \ No newline at end of file diff --git a/data/nde/enriched/kb_wikidata_enrichment_stats_20251128_132240.json b/data/nde/enriched/kb_wikidata_enrichment_stats_20251128_132240.json new file mode 100644 index 0000000000..1771e81aa2 --- /dev/null +++ b/data/nde/enriched/kb_wikidata_enrichment_stats_20251128_132240.json @@ -0,0 +1,11 @@ +{ + "timestamp": "2025-11-28T12:22:40.375334+00:00", + "dry_run": false, + "limit": null, + "total_files": 149, + "isil_matches": 64, + "fuzzy_matches": 50, + "not_found": 35, + "already_enriched": 0, + "errors": 0 +} \ No newline at end of file diff --git a/frontend/public/data/nde_statistics.json b/frontend/public/data/nde_statistics.json index f284d662c0..b0c1530c8a 100644 --- a/frontend/public/data/nde_statistics.json +++ b/frontend/public/data/nde_statistics.json @@ -1,13 +1,15 @@ { - "generated_at": "2025-11-28T12:11:13.370875+00:00", - "total_entries": 1352, + "generated_at": "2025-11-28T12:24:11.193129+00:00", + "total_entries": 1502, "summary": { - "total_institutions": 1352, - "with_coordinates": 717, - "with_wikidata": 1103, - "with_google_maps": 1344, + "total_institutions": 1502, + "enriched": 1466, + "not_enriched": 36, + "with_coordinates": 1411, + "with_wikidata": 1216, + "with_google_maps": 1345, "google_maps_not_found": 0, - "unique_cities": 473, + "unique_cities": 511, "unique_provinces": 12, "institution_types": 14 }, @@ -17,56 +19,56 @@ "code": "M", "name": "Museum", "count": 605, - "percentage": 44.7, + "percentage": 40.3, "color": "#e74c3c" }, { "code": "S", "name": "Society", "count": 346, - "percentage": 25.6, + "percentage": 23.0, "color": "#9b59b6" }, { "code": "A", "name": "Archive", "count": 222, - "percentage": 16.4, + "percentage": 14.8, "color": "#3498db" }, + { + "code": "L", + "name": "Library", + "count": 176, + "percentage": 11.7, + "color": "#2ecc71" + }, { "code": "O", "name": "Official", - "count": 51, - "percentage": 3.8, + "count": 52, + "percentage": 3.5, "color": "#f39c12" }, { "code": "D", "name": "Digital", "count": 30, - "percentage": 2.2, - "color": "#34495e" - }, - { - "code": "L", - "name": "Library", - "count": 27, "percentage": 2.0, - "color": "#2ecc71" + "color": "#34495e" }, { "code": "N", "name": "NGO", "count": 12, - "percentage": 0.9, + "percentage": 0.8, "color": "#e91e63" }, { "code": "B", "name": "Botanical", "count": 11, - "percentage": 0.8, + "percentage": 0.7, "color": "#4caf50" }, { @@ -80,14 +82,14 @@ "code": "F", "name": "Features", "count": 9, - "percentage": 0.7, + "percentage": 0.6, "color": "#95a5a6" }, { "code": "E", "name": "Education", "count": 9, - "percentage": 0.7, + "percentage": 0.6, "color": "#ff9800" }, { @@ -115,23 +117,23 @@ "top_cities": [ { "city": "Den Haag", - "count": 49 + "count": 53 }, { "city": "Amsterdam", - "count": 42 + "count": 43 }, { "city": "Arnhem", "count": 19 }, { - "city": "Rotterdam", - "count": 17 + "city": "Groningen", + "count": 19 }, { - "city": "Groningen", - "count": 16 + "city": "Rotterdam", + "count": 19 }, { "city": "Zwolle", @@ -139,59 +141,59 @@ }, { "city": "Leeuwarden", - "count": 12 + "count": 14 }, { "city": "Nijmegen", - "count": 11 + "count": 12 }, { "city": "Utrecht", - "count": 11 + "count": 12 }, { "city": "Leiden", - "count": 10 + "count": 11 }, { "city": "Maastricht", - "count": 9 + "count": 10 }, { "city": "Enschede", - "count": 9 - }, - { - "city": "Roermond", - "count": 7 - }, - { - "city": "Haarlem", - "count": 7 - }, - { - "city": "Den Bosch", - "count": 6 - }, - { - "city": "Assen", - "count": 5 - }, - { - "city": "Apeldoorn", - "count": 5 - }, - { - "city": "Hardenberg", - "count": 5 - }, - { - "city": "Hoorn", - "count": 5 + "count": 10 }, { "city": "Deventer", - "count": 5 + "count": 10 + }, + { + "city": "Assen", + "count": 8 + }, + { + "city": "Roermond", + "count": 8 + }, + { + "city": "Haarlem", + "count": 8 + }, + { + "city": "Den Bosch", + "count": 7 + }, + { + "city": "Apeldoorn", + "count": 6 + }, + { + "city": "Hardenberg", + "count": 6 + }, + { + "city": "Heerlen", + "count": 6 } ], "collection_systems": [], @@ -279,88 +281,96 @@ ], "enrichment_status": [ { - "status": "Success", - "count": 1103, - "percentage": 81.6, + "status": "Enriched", + "count": 1466, + "percentage": 97.6, "color": "#2ecc71" }, { - "status": "Enriched", - "count": 19, - "percentage": 1.4, - "color": "#9e9e9e" + "status": "Not Enriched", + "count": 36, + "percentage": 2.4, + "color": "#e74c3c" + } + ], + "enrichment_sources": [ + { + "source": "Google Maps", + "count": 1345, + "percentage": 89.5, + "color": "#e74c3c" }, { - "status": "Enriched_via_website", - "count": 2, - "percentage": 0.1, - "color": "#9e9e9e" + "source": "Wikidata", + "count": 1216, + "percentage": 81.0, + "color": "#3498db" }, { - "status": "Skipped", - "count": 226, - "percentage": 16.7, - "color": "#f39c12" + "source": "Website", + "count": 425, + "percentage": 28.3, + "color": "#9b59b6" }, { - "status": "Enriched_via_wikidata_and_website", - "count": 2, - "percentage": 0.1, - "color": "#9e9e9e" + "source": "ISIL", + "count": 357, + "percentage": 23.8, + "color": "#2ecc71" } ], "identifier_coverage": [ { - "identifier": "Website", - "count": 940, - "percentage": 69.5 + "identifier": "Coordinates", + "count": 1411, + "percentage": 93.9 }, { - "identifier": "Coordinates", - "count": 717, - "percentage": 53.0 + "identifier": "Website", + "count": 940, + "percentage": 62.6 }, { "identifier": "Wikipedia NL", "count": 620, - "percentage": 45.9 + "percentage": 41.3 }, { "identifier": "Image", "count": 532, - "percentage": 39.3 + "percentage": 35.4 }, { "identifier": "ISIL Code", - "count": 68, - "percentage": 5.0 + "count": 357, + "percentage": 23.8 } ], "google_maps_coverage": [ { "feature": "Street View", - "count": 1344, - "percentage": 99.4 + "count": 1341, + "percentage": 89.3 }, { "feature": "Rating", - "count": 1166, - "percentage": 86.2 + "count": 1167, + "percentage": 77.7 }, { "feature": "Reviews", - "count": 1163, - "percentage": 86.0 + "count": 1160, + "percentage": 77.2 }, { "feature": "Photos", - "count": 1155, - "percentage": 85.4 + "count": 1151, + "percentage": 76.6 }, { "feature": "Opening Hours", - "count": 990, - "percentage": 73.2 + "count": 989, + "percentage": 65.8 } ], "founding_timeline": [ @@ -940,37 +950,55 @@ "provinces": [ { "province": "Zuid-Holland", - "count": 133, + "count": 224, "color": "#bcbd22", "types": { + "S": { + "code": "S", + "name": "Society", + "count": 25, + "color": "#9b59b6" + }, "M": { "code": "M", "name": "Museum", - "count": 91, + "count": 102, "color": "#e74c3c" }, + "D": { + "code": "D", + "name": "Digital", + "count": 4, + "color": "#34495e" + }, "A": { "code": "A", "name": "Archive", - "count": 23, + "count": 29, "color": "#3498db" }, "N": { "code": "N", "name": "NGO", - "count": 1, + "count": 5, "color": "#e91e63" }, "O": { "code": "O", "name": "Official", - "count": 10, + "count": 33, "color": "#f39c12" }, + "U": { + "code": "U", + "name": "Unknown", + "count": 3, + "color": "#9e9e9e" + }, "L": { "code": "L", "name": "Library", - "count": 3, + "count": 19, "color": "#2ecc71" }, "F": { @@ -990,54 +1018,54 @@ "name": "Research", "count": 1, "color": "#1abc9c" - }, - "D": { - "code": "D", - "name": "Digital", - "count": 1, - "color": "#34495e" } } }, { "province": "Gelderland", - "count": 117, + "count": 220, "color": "#8c564b", "types": { "A": { "code": "A", "name": "Archive", - "count": 13, + "count": 29, "color": "#3498db" }, "M": { "code": "M", "name": "Museum", - "count": 87, + "count": 105, "color": "#e74c3c" }, "S": { "code": "S", "name": "Society", - "count": 5, + "count": 46, "color": "#9b59b6" }, + "D": { + "code": "D", + "name": "Digital", + "count": 10, + "color": "#34495e" + }, "L": { "code": "L", "name": "Library", - "count": 2, + "count": 13, "color": "#2ecc71" }, "O": { "code": "O", "name": "Official", - "count": 3, + "count": 5, "color": "#f39c12" }, "E": { "code": "E", "name": "Education", - "count": 1, + "count": 3, "color": "#ff9800" }, "B": { @@ -1049,7 +1077,7 @@ "N": { "code": "N", "name": "NGO", - "count": 1, + "count": 3, "color": "#e91e63" }, "U": { @@ -1058,6 +1086,12 @@ "count": 2, "color": "#9e9e9e" }, + "C": { + "code": "C", + "name": "Corporation", + "count": 1, + "color": "#795548" + }, "F": { "code": "F", "name": "Features", @@ -1067,26 +1101,123 @@ } }, { - "province": "Noord-Holland", - "count": 101, - "color": "#7f7f7f", + "province": "Overijssel", + "count": 218, + "color": "#d62728", "types": { "M": { "code": "M", "name": "Museum", - "count": 74, + "count": 65, "color": "#e74c3c" }, + "U": { + "code": "U", + "name": "Unknown", + "count": 3, + "color": "#9e9e9e" + }, + "L": { + "code": "L", + "name": "Library", + "count": 20, + "color": "#2ecc71" + }, + "A": { + "code": "A", + "name": "Archive", + "count": 38, + "color": "#3498db" + }, + "S": { + "code": "S", + "name": "Society", + "count": 79, + "color": "#9b59b6" + }, + "D": { + "code": "D", + "name": "Digital", + "count": 6, + "color": "#34495e" + }, + "N": { + "code": "N", + "name": "NGO", + "count": 1, + "color": "#e91e63" + }, + "C": { + "code": "C", + "name": "Corporation", + "count": 2, + "color": "#795548" + }, + "I": { + "code": "I", + "name": "Intangible", + "count": 1, + "color": "#673ab7" + }, + "O": { + "code": "O", + "name": "Official", + "count": 2, + "color": "#f39c12" + }, + "R": { + "code": "R", + "name": "Research", + "count": 1, + "color": "#1abc9c" + } + } + }, + { + "province": "Noord-Holland", + "count": 176, + "color": "#7f7f7f", + "types": { + "O": { + "code": "O", + "name": "Official", + "count": 5, + "color": "#f39c12" + }, + "M": { + "code": "M", + "name": "Museum", + "count": 90, + "color": "#e74c3c" + }, + "S": { + "code": "S", + "name": "Society", + "count": 36, + "color": "#9b59b6" + }, + "N": { + "code": "N", + "name": "NGO", + "count": 2, + "color": "#e91e63" + }, "R": { "code": "R", "name": "Research", "count": 5, "color": "#1abc9c" }, + "C": { + "code": "C", + "name": "Corporation", + "count": 1, + "color": "#795548" + }, "L": { "code": "L", "name": "Library", - "count": 1, + "count": 12, "color": "#2ecc71" }, "G": { @@ -1095,30 +1226,24 @@ "count": 1, "color": "#00bcd4" }, - "O": { - "code": "O", - "name": "Official", - "count": 2, - "color": "#f39c12" - }, "A": { "code": "A", "name": "Archive", - "count": 11, + "count": 16, "color": "#3498db" }, + "U": { + "code": "U", + "name": "Unknown", + "count": 2, + "color": "#9e9e9e" + }, "B": { "code": "B", "name": "Botanical", "count": 2, "color": "#4caf50" }, - "U": { - "code": "U", - "name": "Unknown", - "count": 1, - "color": "#9e9e9e" - }, "I": { "code": "I", "name": "Intangible", @@ -1131,23 +1256,29 @@ "count": 1, "color": "#ff9800" }, - "S": { - "code": "S", - "name": "Society", + "D": { + "code": "D", + "name": "Digital", "count": 2, - "color": "#9b59b6" + "color": "#34495e" } } }, { "province": "Noord-Brabant", - "count": 78, + "count": 172, "color": "#aec7e8", "types": { + "S": { + "code": "S", + "name": "Society", + "count": 75, + "color": "#9b59b6" + }, "M": { "code": "M", "name": "Museum", - "count": 60, + "count": 70, "color": "#e74c3c" }, "O": { @@ -1156,6 +1287,226 @@ "count": 2, "color": "#f39c12" }, + "A": { + "code": "A", + "name": "Archive", + "count": 13, + "color": "#3498db" + }, + "D": { + "code": "D", + "name": "Digital", + "count": 1, + "color": "#34495e" + }, + "L": { + "code": "L", + "name": "Library", + "count": 8, + "color": "#2ecc71" + }, + "N": { + "code": "N", + "name": "NGO", + "count": 1, + "color": "#e91e63" + }, + "E": { + "code": "E", + "name": "Education", + "count": 2, + "color": "#ff9800" + } + } + }, + { + "province": "Friesland", + "count": 80, + "color": "#ff7f0e", + "types": { + "A": { + "code": "A", + "name": "Archive", + "count": 24, + "color": "#3498db" + }, + "M": { + "code": "M", + "name": "Museum", + "count": 42, + "color": "#e74c3c" + }, + "U": { + "code": "U", + "name": "Unknown", + "count": 1, + "color": "#9e9e9e" + }, + "O": { + "code": "O", + "name": "Official", + "count": 2, + "color": "#f39c12" + }, + "B": { + "code": "B", + "name": "Botanical", + "count": 3, + "color": "#4caf50" + }, + "D": { + "code": "D", + "name": "Digital", + "count": 1, + "color": "#34495e" + }, + "F": { + "code": "F", + "name": "Features", + "count": 1, + "color": "#95a5a6" + }, + "R": { + "code": "R", + "name": "Research", + "count": 1, + "color": "#1abc9c" + }, + "S": { + "code": "S", + "name": "Society", + "count": 3, + "color": "#9b59b6" + }, + "L": { + "code": "L", + "name": "Library", + "count": 2, + "color": "#2ecc71" + } + } + }, + { + "province": "Limburg", + "count": 79, + "color": "#ffbb78", + "types": { + "S": { + "code": "S", + "name": "Society", + "count": 31, + "color": "#9b59b6" + }, + "O": { + "code": "O", + "name": "Official", + "count": 1, + "color": "#f39c12" + }, + "M": { + "code": "M", + "name": "Museum", + "count": 26, + "color": "#e74c3c" + }, + "L": { + "code": "L", + "name": "Library", + "count": 6, + "color": "#2ecc71" + }, + "A": { + "code": "A", + "name": "Archive", + "count": 13, + "color": "#3498db" + }, + "B": { + "code": "B", + "name": "Botanical", + "count": 1, + "color": "#4caf50" + }, + "E": { + "code": "E", + "name": "Education", + "count": 1, + "color": "#ff9800" + } + } + }, + { + "province": "Groningen", + "count": 70, + "color": "#1f77b4", + "types": { + "M": { + "code": "M", + "name": "Museum", + "count": 25, + "color": "#e74c3c" + }, + "A": { + "code": "A", + "name": "Archive", + "count": 27, + "color": "#3498db" + }, + "S": { + "code": "S", + "name": "Society", + "count": 6, + "color": "#9b59b6" + }, + "F": { + "code": "F", + "name": "Features", + "count": 1, + "color": "#95a5a6" + }, + "L": { + "code": "L", + "name": "Library", + "count": 4, + "color": "#2ecc71" + }, + "R": { + "code": "R", + "name": "Research", + "count": 1, + "color": "#1abc9c" + }, + "O": { + "code": "O", + "name": "Official", + "count": 1, + "color": "#f39c12" + }, + "E": { + "code": "E", + "name": "Education", + "count": 1, + "color": "#ff9800" + }, + "B": { + "code": "B", + "name": "Botanical", + "count": 2, + "color": "#4caf50" + }, + "D": { + "code": "D", + "name": "Digital", + "count": 2, + "color": "#34495e" + } + } + }, + { + "province": "Zeeland", + "count": 51, + "color": "#17becf", + "types": { "A": { "code": "A", "name": "Archive", @@ -1168,241 +1519,86 @@ "count": 3, "color": "#9b59b6" }, - "E": { - "code": "E", - "name": "Education", - "count": 2, - "color": "#ff9800" - }, - "L": { - "code": "L", - "name": "Library", - "count": 1, - "color": "#2ecc71" - } - } - }, - { - "province": "Overijssel", - "count": 73, - "color": "#d62728", - "types": { "M": { "code": "M", "name": "Museum", - "count": 51, + "count": 30, "color": "#e74c3c" }, - "L": { - "code": "L", - "name": "Library", - "count": 1, - "color": "#2ecc71" - }, - "A": { - "code": "A", - "name": "Archive", - "count": 19, - "color": "#3498db" - }, - "O": { - "code": "O", - "name": "Official", - "count": 1, - "color": "#f39c12" - }, "R": { "code": "R", "name": "Research", "count": 1, "color": "#1abc9c" - } - } - }, - { - "province": "Friesland", - "count": 57, - "color": "#ff7f0e", - "types": { - "A": { - "code": "A", - "name": "Archive", - "count": 15, - "color": "#3498db" }, - "M": { - "code": "M", - "name": "Museum", - "count": 37, - "color": "#e74c3c" + "D": { + "code": "D", + "name": "Digital", + "count": 1, + "color": "#34495e" }, - "B": { - "code": "B", - "name": "Botanical", + "F": { + "code": "F", + "name": "Features", "count": 3, - "color": "#4caf50" - }, - "F": { - "code": "F", - "name": "Features", - "count": 1, - "color": "#95a5a6" - }, - "R": { - "code": "R", - "name": "Research", - "count": 1, - "color": "#1abc9c" - } - } - }, - { - "province": "Limburg", - "count": 35, - "color": "#ffbb78", - "types": { - "O": { - "code": "O", - "name": "Official", - "count": 1, - "color": "#f39c12" - }, - "M": { - "code": "M", - "name": "Museum", - "count": 24, - "color": "#e74c3c" - }, - "L": { - "code": "L", - "name": "Library", - "count": 1, - "color": "#2ecc71" - }, - "A": { - "code": "A", - "name": "Archive", - "count": 7, - "color": "#3498db" - }, - "B": { - "code": "B", - "name": "Botanical", - "count": 1, - "color": "#4caf50" - }, - "E": { - "code": "E", - "name": "Education", - "count": 1, - "color": "#ff9800" - } - } - }, - { - "province": "Zeeland", - "count": 33, - "color": "#17becf", - "types": { - "M": { - "code": "M", - "name": "Museum", - "count": 23, - "color": "#e74c3c" - }, - "A": { - "code": "A", - "name": "Archive", - "count": 6, - "color": "#3498db" - }, - "R": { - "code": "R", - "name": "Research", - "count": 1, - "color": "#1abc9c" - }, - "F": { - "code": "F", - "name": "Features", - "count": 2, "color": "#95a5a6" }, "L": { "code": "L", "name": "Library", - "count": 1, + "count": 3, "color": "#2ecc71" } } }, - { - "province": "Groningen", - "count": 30, - "color": "#1f77b4", - "types": { - "M": { - "code": "M", - "name": "Museum", - "count": 20, - "color": "#e74c3c" - }, - "A": { - "code": "A", - "name": "Archive", - "count": 6, - "color": "#3498db" - }, - "L": { - "code": "L", - "name": "Library", - "count": 1, - "color": "#2ecc71" - }, - "O": { - "code": "O", - "name": "Official", - "count": 1, - "color": "#f39c12" - }, - "B": { - "code": "B", - "name": "Botanical", - "count": 1, - "color": "#4caf50" - }, - "S": { - "code": "S", - "name": "Society", - "count": 1, - "color": "#9b59b6" - } - } - }, { "province": "Drenthe", - "count": 25, + "count": 45, "color": "#2ca02c", "types": { "M": { "code": "M", "name": "Museum", - "count": 14, + "count": 16, "color": "#e74c3c" }, "A": { "code": "A", "name": "Archive", - "count": 11, + "count": 13, "color": "#3498db" + }, + "S": { + "code": "S", + "name": "Society", + "count": 14, + "color": "#9b59b6" + }, + "L": { + "code": "L", + "name": "Library", + "count": 2, + "color": "#2ecc71" } } }, { "province": "Flevoland", - "count": 20, + "count": 42, "color": "#9467bd", "types": { + "S": { + "code": "S", + "name": "Society", + "count": 12, + "color": "#9b59b6" + }, + "L": { + "code": "L", + "name": "Library", + "count": 5, + "color": "#2ecc71" + }, "A": { "code": "A", "name": "Archive", @@ -1412,39 +1608,75 @@ "M": { "code": "M", "name": "Museum", - "count": 15, + "count": 17, "color": "#e74c3c" }, + "F": { + "code": "F", + "name": "Features", + "count": 1, + "color": "#95a5a6" + }, + "U": { + "code": "U", + "name": "Unknown", + "count": 1, + "color": "#9e9e9e" + }, "O": { "code": "O", "name": "Official", "count": 1, "color": "#f39c12" + }, + "D": { + "code": "D", + "name": "Digital", + "count": 1, + "color": "#34495e" } } }, { "province": "Utrecht", - "count": 14, + "count": 33, "color": "#e377c2", "types": { "M": { "code": "M", "name": "Museum", - "count": 11, + "count": 13, "color": "#e74c3c" }, + "A": { + "code": "A", + "name": "Archive", + "count": 6, + "color": "#3498db" + }, + "S": { + "code": "S", + "name": "Society", + "count": 11, + "color": "#9b59b6" + }, "E": { "code": "E", "name": "Education", "count": 1, "color": "#ff9800" }, - "A": { - "code": "A", - "name": "Archive", - "count": 2, - "color": "#3498db" + "D": { + "code": "D", + "name": "Digital", + "count": 1, + "color": "#34495e" + }, + "L": { + "code": "L", + "name": "Library", + "count": 1, + "color": "#2ecc71" } } } diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/01_iso_standards.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/01_iso_standards.yaml new file mode 100644 index 0000000000..928f8f1dba --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/01_iso_standards.yaml @@ -0,0 +1,110 @@ +# Identifier Standards - Category 1: ISO Standards +# Instance data for formal international ISO standards +# +# These are formal ISO/IEC standards with Technical Committee governance. + +- id: hc:Standard/ISIL + name: International Standard Identifier for Libraries and Related Organizations + abbreviation: ISIL + iso_standard_number: ISO 15511 + standard_type: ISO_STANDARD + governance_model: ISO_TC + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q470458 + category: "1. ISO Standards" + + description: >- + International Standard Identifier for Libraries and Related Organizations (ISO 15511). + + Format: {country-code}-{local-identifier} + Example: NL-AmRMA (Rijksmuseum Amsterdam) + + Scope: Libraries (L), Archives (A), Museums (M), Research institutes (R), + and related heritage organizations worldwide. + + Note: Despite "Libraries" in the name, ISIL is widely used for archives, + museums, and research institutions. Many national ISIL agencies register + all heritage custodian types. + + Registration Authority: Danish Agency for Culture and Palaces + National agencies: 60+ countries maintain ISIL registries + + applicable_schema_types: + - schema:Library + - schema:Museum + - schema:ArchiveOrganization + - schema:ResearchOrganization + - schema:GovernmentOrganization + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - M # Museums + - R # Research centers + - O # Official institutions + - G # Galleries + + lookup_url_template: "https://ld.zdb-services.de/resource/organisations/{id}" + website: https://www.iso.org/standard/77849.html + first_published_year: 2003 + current_version: "ISO 15511:2019 (3rd edition)" + + formats: + - id: hc:IdentifierFormat/ISIL-full + format_name: Full format with country prefix + pattern: "^[A-Z]{2}-[A-Za-z0-9-]+$" + example: "NL-AmRMA" + is_canonical: true + is_uri_format: false + +- id: hc:Standard/ISNI + name: International Standard Name Identifier + abbreviation: ISNI + iso_standard_number: ISO 27729 + standard_type: ISO_STANDARD + governance_model: ISO_TC + scope_type: GLOBAL + identifier_domain: PERSON + wikidata_id: wd:Q423048 + category: "1. ISO Standards" + + description: >- + International Standard Name Identifier (ISO 27729). + + Format: 16-digit number (0000 0000 0000 0000) + Example: 0000 0001 2260 177X + + Scope: Public identities of persons and organizations involved in creative work. + Registration Authority: ISNI International Agency (WIPO) + + applicable_schema_types: + - schema:Organization + - schema:Person + + glamorcubesfixphdnt_types: + - G # Galleries (artists, galleries) + - L # Libraries (authors) + - M # Museums (artists, creators) + - R # Research centers (researchers) + + lookup_url_template: "https://isni.org/isni/{id}" + website: https://isni.org/ + first_published_year: 2012 + current_version: "ISO 27729:2012" + + formats: + - id: hc:IdentifierFormat/ISNI-display + format_name: Display format with spaces + pattern: "^[0-9]{4} [0-9]{4} [0-9]{4} [0-9]{3}[0-9X]$" + example: "0000 0001 2260 177X" + is_canonical: false + is_uri_format: false + + - id: hc:IdentifierFormat/ISNI-compact + format_name: Compact format (canonical) + pattern: "^[0-9]{15}[0-9X]$" + example: "000000012601177X" + is_canonical: true + is_uri_format: false + transformation_to_canonical: "Remove spaces" diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/02_authority_files.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/02_authority_files.yaml new file mode 100644 index 0000000000..7fea05521f --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/02_authority_files.yaml @@ -0,0 +1,911 @@ +# Identifier Standards - Category 2: Authority Files (National Libraries) +# Instance data for national library authority files +# +# These are typically PROPRIETARY_SYSTEM standards maintained by national libraries. + +- id: hc:Standard/VIAF + name: Virtual International Authority File + abbreviation: VIAF + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q54919 + category: "2. Authority Files" + + description: >- + Virtual International Authority File. + + Format: Numeric cluster ID + Example: 257711507 + Lookup: https://viaf.org/viaf/{id} + + Aggregates authority records from 37+ national libraries. + Operated by OCLC. + + applicable_schema_types: + - schema:Organization + - schema:Person + + glamorcubesfixphdnt_types: + - G # Galleries + - L # Libraries + - A # Archives + - M # Museums + - R # Research centers + + lookup_url_template: "https://viaf.org/viaf/{id}" + website: https://viaf.org/ + data_license: https://opendatacommons.org/licenses/by/ + +- id: hc:Standard/GND + name: Gemeinsame Normdatei + abbreviation: GND + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q36578 + category: "2. Authority Files" + + description: >- + Gemeinsame Normdatei (Integrated Authority File). + + Format: Numeric ID + Example: 1006837-5 + Lookup: https://d-nb.info/gnd/{id} + + German National Library authority file for persons, corporate bodies, + subject headings, and works. + + applicable_schema_types: + - schema:Organization + - schema:Person + - schema:CreativeWork + + geographic_scope: + - hc:Country/DE + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "https://d-nb.info/gnd/{id}" + website: https://www.dnb.de/gnd + +- id: hc:Standard/LCNAF + name: Library of Congress Name Authority File + abbreviation: LCNAF + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q13219454 + category: "2. Authority Files" + + description: >- + Library of Congress Name Authority File. + + Format: Alphanumeric (n, nr, no prefixes) + Example: n80020283 + Lookup: https://id.loc.gov/authorities/names/{id} + + US national authority file for names. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/US + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "https://id.loc.gov/authorities/names/{id}" + website: https://id.loc.gov/ + +- id: hc:Standard/BNF + name: Bibliothèque nationale de France identifier + abbreviation: BnF + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q19938912 + category: "2. Authority Files" + + description: >- + Bibliothèque nationale de France identifier. + + Format: Alphanumeric + Example: 11865019j + Lookup: https://data.bnf.fr/ark:/12148/cb{id} + + French national library authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + - schema:CreativeWork + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "https://data.bnf.fr/ark:/12148/cb{id}" + website: https://data.bnf.fr/ + +- id: hc:Standard/NTA + name: Nederlandse Thesaurus van Auteursnamen + abbreviation: NTA + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1879979 + category: "2. Authority Files" + + description: >- + Nederlandse Thesaurus van Auteursnamen (Dutch Name Thesaurus). + + Format: Numeric + Lookup: http://data.bibliotheken.nl/id/thes/p{id} + + Dutch national authority file maintained by KB. + Contributes to VIAF. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/NL + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "http://data.bibliotheken.nl/id/thes/p{id}" + website: https://www.kb.nl/ + +- id: hc:Standard/NDL + name: National Diet Library Authority ID + abbreviation: NDL + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q477675 + category: "2. Authority Files" + + description: >- + National Diet Library (Japan) Authority ID. + + Format: Numeric + Example: 00629424 + + Japanese national library authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/JP + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "https://id.ndl.go.jp/auth/ndlna/{id}" + +- id: hc:Standard/NLA + name: National Library of Australia Trove + abbreviation: NLA + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q623578 + category: "2. Authority Files" + + description: >- + National Library of Australia Trove People and Organisations. + + Format: Numeric + Example: 35912436 + Lookup: https://trove.nla.gov.au/people/{id} + + Australian national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/AU + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "https://trove.nla.gov.au/people/{id}" + website: https://trove.nla.gov.au/ + +- id: hc:Standard/BNE + name: Biblioteca Nacional de EspaĂąa identifier + abbreviation: BNE + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q50424308 + category: "2. Authority Files" + + description: >- + Biblioteca Nacional de EspaĂąa identifier. + + Format: XX followed by digits + Example: XX125696 + + Spanish national library authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/ES + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + lookup_url_template: "https://datos.bne.es/resource/{id}" + +- id: hc:Standard/NLI + name: National Library of Israel identifier + abbreviation: NLI + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q188915 + category: "2. Authority Files" + + description: >- + National Library of Israel identifier. + + Format: Large numeric + Example: 987007265752405171 + + Israeli national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/IL + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - H # Holy sites + +- id: hc:Standard/NUKAT + name: NUKAT Center of Warsaw University Library + abbreviation: NUKAT + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q11789729 + category: "2. Authority Files" + + description: >- + NUKAT Center of Warsaw University Library. + + Format: Alphanumeric (n prefix) + Example: n97700249 + + Polish union catalog authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/PL + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/NKC + name: National Library of the Czech Republic Authority + abbreviation: NKC + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1967876 + category: "2. Authority Files" + + description: >- + National Library of the Czech Republic Authority ID. + + Format: Alphanumeric (ko prefix) + Example: ko2003204754 + + Czech national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/CZ + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/SELIBR + name: LIBRIS Swedish Union Catalogue + abbreviation: SELIBR + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1798125 + category: "2. Authority Files" + + description: >- + LIBRIS - Swedish Union Catalogue. + + Format: Numeric or URI + Example: 123719 + Lookup: https://libris.kb.se/auth/{id} + + Swedish national union catalog. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/SE + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + + lookup_url_template: "https://libris.kb.se/auth/{id}" + +- id: hc:Standard/NORAF + name: National Library of Norway Authority File + abbreviation: NORAF + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q3935049 + category: "2. Authority Files" + + description: >- + National Library of Norway Authority File. + + Format: Numeric + Example: 90322400 + + Norwegian national authority file (BIBSYS). + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/NO + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/BANQ + name: Bibliothèque et Archives nationales du QuĂŠbec + abbreviation: BAnQ + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: REGIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q2864635 + category: "2. Authority Files" + + description: >- + Bibliothèque et Archives nationales du QuĂŠbec authority ID. + + Format: 10-digit numeric + Example: 0000072308 + + Quebec national library authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/CA + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/CANTIC + name: CatĂ leg d'Autoritats de Noms i TĂtols de Catalunya + abbreviation: CANTIC + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: REGIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1024340 + category: "2. Authority Files" + + description: >- + CatĂ leg d'Autoritats de Noms i TĂtols de Catalunya. + + Format: Large numeric + Example: 981058513966506706 + + Catalan authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/ES + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/EGAXA + name: National Library of Greece Authority + abbreviation: EGAXA + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q638839 + category: "2. Authority Files" + + description: >- + National Library of Greece Authority ID. + + Format: Numeric + Example: 44027 + + Greek national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/GR + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/NSK + name: National and University Library in Zagreb Authority + abbreviation: NSK + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1051131 + category: "2. Authority Files" + + description: >- + National and University Library in Zagreb Authority ID. + + Format: Numeric + Example: 000076058 + + Croatian national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/HR + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/NLP + name: National Library of Poland identifier + abbreviation: NLP + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q164003 + category: "2. Authority Files" + + description: >- + National Library of Poland identifier. + + Format: Large numeric (MMS ID) + Example: 9810669944905606 + + Polish national library authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/PL + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/PTBNP + name: Biblioteca Nacional de Portugal Authority + abbreviation: BNP + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q245966 + category: "2. Authority Files" + + description: >- + Biblioteca Nacional de Portugal Authority ID. + + Format: Numeric + Example: 273489 + + Portuguese national library authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/PT + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/LAC + name: Library and Archives Canada Canadiana Authorities + abbreviation: LAC + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1036948 + category: "2. Authority Files" + + description: >- + Library and Archives Canada Canadiana Authorities. + + Format: Alphanumeric + Example: ncf10035121 or 0017F0504 + + Canadian national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/CA + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/LNB + name: National Library of Latvia Authority + abbreviation: LNB + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q663254 + category: "2. Authority Files" + + description: >- + National Library of Latvia Authority ID. + + Format: Numeric + Example: 000051777 + + Latvian national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/LV + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/LNL + name: National Library of Lithuania Authority + abbreviation: LNL + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q1810265 + category: "2. Authority Files" + + description: >- + National Library of Lithuania Authority ID. + + Format: Alphanumeric + Example: LNB:V*105320 + + Lithuanian national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/LT + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/NLK + name: National Library of Korea Authority + abbreviation: NLK + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q487262 + category: "2. Authority Files" + + description: >- + National Library of Korea Authority ID. + + Format: Alphanumeric + Example: KAB201902143 + + Korean national authority file. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/KR + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/NLR + name: National Library of Russia Authority + abbreviation: NLR + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q631802 + category: "2. Authority Files" + + description: >- + National Library of Russia Authority ID. + + Maintained by Russian National Library (Saint Petersburg). + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/RU + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/ICCU + name: Istituto Centrale per il Catalogo Unico + abbreviation: ICCU + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q576951 + category: "2. Authority Files" + + description: >- + Istituto Centrale per il Catalogo Unico (SBN) Author ID. + + Format: Alphanumeric + Example: CFIV060439 + + Italian national union catalog authority. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/IT + + glamorcubesfixphdnt_types: + - L + - A + - M + - R + +- id: hc:Standard/IDREF + name: IdRef - Identifiants et RĂŠfĂŠrentiels + abbreviation: IdRef + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q47757534 + category: "2. Authority Files" + + description: >- + IdRef - Identifiants et RĂŠfĂŠrentiels pour l'Enseignement supĂŠrieur. + + Format: Numeric + Example: 026394677 + Lookup: https://www.idref.fr/{id} + + French higher education authority file (ABES). + + applicable_schema_types: + - schema:Organization + - schema:Person + - schema:EducationalOrganization + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - L + - R + - E # Education providers + + lookup_url_template: "https://www.idref.fr/{id}" + +- id: hc:Standard/RERO + name: RERO Library Network + abbreviation: RERO + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: REGIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q2135731 + category: "2. Authority Files" + + description: >- + RERO (RĂŠseau des bibliothèques de Suisse occidentale) Authority ID. + + Format: Alphanumeric (A prefix) + Example: A000185571 + + Western Switzerland library network. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/CH + + glamorcubesfixphdnt_types: + - L + - A + - R + +- id: hc:Standard/SWNL + name: Swiss National Library Authority + abbreviation: SNL + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q193563 + category: "2. Authority Files" + + description: >- + Swiss National Library Authority ID. + + Helveticat - Swiss National Library catalog. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/CH + + glamorcubesfixphdnt_types: + - L + - A + - M + - R diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/03_consortium_services.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/03_consortium_services.yaml new file mode 100644 index 0000000000..44f8387172 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/03_consortium_services.yaml @@ -0,0 +1,167 @@ +# Identifier Standards - Category 3: Consortium / Aggregation Services +# Instance data for collaborative aggregation services +# +# These are services that aggregate or coordinate identifiers across institutions. + +- id: hc:Standard/FAST + name: Faceted Application of Subject Terminology + abbreviation: FAST + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: SUBJECT_TERM + wikidata_id: wd:Q3294867 + category: "3. Consortium Services" + + description: >- + Faceted Application of Subject Terminology. + + Format: Numeric + Example: 541467 + Lookup: http://id.worldcat.org/fast/{id} + + Simplified LCSH for linked data. Operated by OCLC. + + applicable_schema_types: + - schema:DefinedTerm + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - M # Museums + - R # Research centers + + lookup_url_template: "http://id.worldcat.org/fast/{id}" + website: https://www.oclc.org/research/areas/data-science/fast.html + +- id: hc:Standard/ORCID + name: Open Researcher and Contributor ID + abbreviation: ORCID + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: PERSON + wikidata_id: wd:Q51044 + category: "3. Consortium Services" + + description: >- + Open Researcher and Contributor ID. + + Format: 16-digit (0000-0000-0000-0000) + Example: 0000-0002-1825-0097 + Lookup: https://orcid.org/{id} + + Persistent identifier for researchers. Not typically for institutions, + but may identify individual curators/directors. + + applicable_schema_types: + - schema:Person + + glamorcubesfixphdnt_types: + - R # Research centers + - E # Education providers + - L # Libraries (librarians) + - M # Museums (curators) + + lookup_url_template: "https://orcid.org/{id}" + website: https://orcid.org/ + + formats: + - id: hc:IdentifierFormat/ORCID-display + format_name: Display format with hyphens + pattern: "^[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9X]$" + example: "0000-0002-1825-0097" + is_canonical: true + is_uri_format: false + +- id: hc:Standard/ROR + name: Research Organization Registry + abbreviation: ROR + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q63565260 + category: "3. Consortium Services" + + description: >- + Research Organization Registry. + + Format: Alphanumeric (9 characters) + Example: 05k441034 + Lookup: https://ror.org/{id} + + Community-led registry of research organizations. + Successor to GRID. + + applicable_schema_types: + - schema:ResearchOrganization + - schema:EducationalOrganization + + glamorcubesfixphdnt_types: + - R # Research centers + - E # Education providers + - L # Libraries (research libraries) + - M # Museums (with research programs) + + lookup_url_template: "https://ror.org/{id}" + website: https://ror.org/ + data_license: https://creativecommons.org/publicdomain/zero/1.0/ + +- id: hc:Standard/GRID + name: Global Research Identifier Database + abbreviation: GRID + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q27768150 + category: "3. Consortium Services" + deprecated: true + deprecated_reason: "Superseded by ROR in 2022" + successor: hc:Standard/ROR + + description: >- + Global Research Identifier Database (deprecated). + + Format: grid.NNNNNN.X + Example: grid.500473.5 + + Deprecated in favor of ROR. Historical data preserved. + + applicable_schema_types: + - schema:ResearchOrganization + + glamorcubesfixphdnt_types: + - R + - E + + website: https://grid.ac/ + +- id: hc:Standard/RINGGOLD + name: Ringgold Identifier + abbreviation: RINGGOLD + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q7335327 + category: "3. Consortium Services" + + description: >- + Ringgold Identifier. + + Format: Numeric + Example: 55917 + + Commercial identifier for organizations in publishing supply chain. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - L # Libraries + - R # Research centers + - E # Education providers + + website: https://www.ringgold.com/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/04_art_cultural_heritage.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/04_art_cultural_heritage.yaml new file mode 100644 index 0000000000..43164c471d --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/04_art_cultural_heritage.yaml @@ -0,0 +1,365 @@ +# Identifier Standards - Category 4: Art & Cultural Heritage (Domain-Specific) +# Instance data for art history and cultural heritage identifiers +# +# These are specialized identifiers for art, music, and cultural heritage domains. + +- id: hc:Standard/ULAN + name: Union List of Artist Names + abbreviation: ULAN + standard_type: CONTROLLED_VOCABULARY + governance_model: SINGLE_AUTHORITY + scope_type: GLOBAL + identifier_domain: PERSON + wikidata_id: wd:Q2494649 + category: "4. Art & Cultural Heritage" + + description: >- + Union List of Artist Names (Getty Research Institute). + + Format: Numeric (9 digits) + Example: 500125189 + Lookup: http://vocab.getty.edu/ulan/{id} + + Thesaurus of artists and art-related persons/organizations. + + applicable_schema_types: + - schema:Person + - schema:Organization + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - R # Research centers + + lookup_url_template: "http://vocab.getty.edu/ulan/{id}" + website: https://www.getty.edu/research/tools/vocabularies/ulan/ + data_license: https://opendatacommons.org/licenses/by/ + +- id: hc:Standard/AAT + name: Art & Architecture Thesaurus + abbreviation: AAT + standard_type: CONTROLLED_VOCABULARY + governance_model: SINGLE_AUTHORITY + scope_type: GLOBAL + identifier_domain: SUBJECT_TERM + wikidata_id: wd:Q611299 + category: "4. Art & Cultural Heritage" + + description: >- + Art & Architecture Thesaurus (Getty). + + Format: Numeric + Lookup: http://vocab.getty.edu/aat/{id} + + Controlled vocabulary for art and architecture terminology. + + applicable_schema_types: + - schema:DefinedTerm + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - A # Archives + - R # Research centers + - F # Features/Monuments + + lookup_url_template: "http://vocab.getty.edu/aat/{id}" + website: https://www.getty.edu/research/tools/vocabularies/aat/ + data_license: https://opendatacommons.org/licenses/by/ + +- id: hc:Standard/TGN + name: Getty Thesaurus of Geographic Names + abbreviation: TGN + standard_type: CONTROLLED_VOCABULARY + governance_model: SINGLE_AUTHORITY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q1520117 + category: "4. Art & Cultural Heritage" + + description: >- + Getty Thesaurus of Geographic Names. + + Format: Numeric + Lookup: http://vocab.getty.edu/tgn/{id} + + Controlled vocabulary for geographic places. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - F # Features/Monuments + - H # Holy sites + + lookup_url_template: "http://vocab.getty.edu/tgn/{id}" + website: https://www.getty.edu/research/tools/vocabularies/tgn/ + data_license: https://opendatacommons.org/licenses/by/ + +- id: hc:Standard/RKD + name: RKDartists + abbreviation: RKD + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: PERSON + wikidata_id: wd:Q17299517 + category: "4. Art & Cultural Heritage" + + description: >- + RKDartists (Netherlands Institute for Art History). + + Format: Numeric + Example: 86205 + Lookup: https://rkd.nl/explore/artists/{id} + + Dutch art history thesaurus. + + applicable_schema_types: + - schema:Person + + geographic_scope: + - hc:Country/NL + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - R # Research centers + + lookup_url_template: "https://rkd.nl/explore/artists/{id}" + website: https://rkd.nl/ + +- id: hc:Standard/RISM + name: RĂŠpertoire International des Sources Musicales + abbreviation: RISM + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q219137 + category: "4. Art & Cultural Heritage" + + description: >- + RĂŠpertoire International des Sources Musicales. + + Format: institutions/{id} + Example: institutions/63378 + Lookup: https://rism.online/{id} + + International inventory of musical sources and institutions. + + applicable_schema_types: + - schema:Organization + - schema:MusicGroup + + glamorcubesfixphdnt_types: + - L # Libraries (music libraries) + - A # Archives (music archives) + - M # Museums (music museums) + - R # Research centers + - H # Holy sites (church music collections) + + lookup_url_template: "https://rism.online/{id}" + website: https://rism.info/ + +- id: hc:Standard/CERL + name: Consortium of European Research Libraries Thesaurus + abbreviation: CERL + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: REGIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q1542072 + category: "4. Art & Cultural Heritage" + + description: >- + Consortium of European Research Libraries Thesaurus. + + Format: Alphanumeric + Lookup: https://data.cerl.org/thesaurus/{id} + + European heritage institutions and printers. + + applicable_schema_types: + - schema:Organization + - schema:Library + + geographic_scope: + - hc:Region/Europe + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - R # Research centers + + lookup_url_template: "https://data.cerl.org/thesaurus/{id}" + website: https://www.cerl.org/ + +- id: hc:Standard/ACMI + name: Australian Centre for the Moving Image + abbreviation: ACMI + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: PERSON + wikidata_id: wd:Q4651706 + category: "4. Art & Cultural Heritage" + + description: >- + Australian Centre for the Moving Image identifier. + + Format: creators/{id} + Example: creators/24020 + + Australian film and media collections. + + applicable_schema_types: + - schema:Person + - schema:Organization + + geographic_scope: + - hc:Country/AU + + glamorcubesfixphdnt_types: + - M # Museums + - A # Archives (film archives) + +- id: hc:Standard/AGORHA + name: AGORHA - Art History Resources + abbreviation: AGORHA + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: NATIONAL + identifier_domain: PERSON + wikidata_id: wd:Q55012201 + category: "4. Art & Cultural Heritage" + + description: >- + AGORHA - Accès Global et OrganisĂŠ aux Ressources en Histoire de l'Art. + + Format: Numeric or UUID + Example: 131402 + + French art history aggregation platform (INHA). + + applicable_schema_types: + - schema:Person + - schema:Organization + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - R # Research centers + +- id: hc:Standard/MET + name: Metropolitan Museum of Art Constituent ID + abbreviation: MET + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: INSTITUTIONAL + identifier_domain: PERSON + wikidata_id: wd:Q160236 + category: "4. Art & Cultural Heritage" + + description: >- + Metropolitan Museum of Art Constituent ID. + + Format: Numeric + Example: 161511 + + Artists and creators in Met collection. + + applicable_schema_types: + - schema:Person + - schema:Organization + + glamorcubesfixphdnt_types: + - M # Museums + - G # Galleries + +- id: hc:Standard/BRITISHMUSEUM + name: British Museum Person/Institution ID + abbreviation: BM + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: INSTITUTIONAL + identifier_domain: PERSON + wikidata_id: wd:Q6373 + category: "4. Art & Cultural Heritage" + + description: >- + British Museum person or institution ID. + + Format: Numeric + Example: 62636 + + British Museum collection database. + + applicable_schema_types: + - schema:Person + - schema:Organization + + glamorcubesfixphdnt_types: + - M # Museums + - A # Archives + +- id: hc:Standard/PHILAMUSEUM + name: Philadelphia Museum of Art Entity ID + abbreviation: PMA + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: INSTITUTIONAL + identifier_domain: PERSON + wikidata_id: wd:Q510324 + category: "4. Art & Cultural Heritage" + + description: >- + Philadelphia Museum of Art entity ID. + + Format: Numeric + Example: 26530 + + Philadelphia Museum of Art collections database. + + applicable_schema_types: + - schema:Person + - schema:Organization + + glamorcubesfixphdnt_types: + - M # Museums + - G # Galleries + +- id: hc:Standard/RA + name: Royal Academy Collections + abbreviation: RA + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: INSTITUTIONAL + identifier_domain: PERSON + wikidata_id: wd:Q270920 + category: "4. Art & Cultural Heritage" + + description: >- + Royal Academy Collections identifier. + + Format: Numeric or slug + Example: 13819 or musee-du-louvre + + Royal Academy of Arts (London) collections. + + applicable_schema_types: + - schema:Person + - schema:Organization + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - E # Education providers (art schools) diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/05_archives_manuscripts.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/05_archives_manuscripts.yaml new file mode 100644 index 0000000000..59e6f3e737 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/05_archives_manuscripts.yaml @@ -0,0 +1,124 @@ +# Identifier Standards - Category 5: Archives / Manuscripts +# Instance data for archival and manuscript identifiers +# +# These are specialized identifiers for archival institutions and manuscript collections. + +- id: hc:Standard/ARCHON + name: ARCHON Code + abbreviation: ARCHON + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q75558697 + category: "5. Archives / Manuscripts" + + description: >- + ARCHON Code (UK National Archives). + + Format: Numeric + + UK archives directory code. + + applicable_schema_types: + - schema:ArchiveOrganization + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - A # Archives + - L # Libraries (with archival collections) + +- id: hc:Standard/SCHOENBERG + name: Schoenberg Database of Manuscripts + abbreviation: SDBM + standard_type: CONSORTIUM_SERVICE + governance_model: ACADEMIC + scope_type: GLOBAL + identifier_domain: PERSON + wikidata_id: wd:Q61781545 + category: "5. Archives / Manuscripts" + + description: >- + Schoenberg Database of Manuscripts name ID. + + Format: Numeric + Example: 40083 + + Database of manuscripts and their provenance. + Maintained by University of Pennsylvania Libraries. + + applicable_schema_types: + - schema:Person + - schema:Organization + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - M # Museums (with manuscript collections) + + website: https://sdbm.library.upenn.edu/ + +- id: hc:Standard/PINAKES + name: Pinakes + abbreviation: PINAKES + standard_type: ACADEMIC_DATABASE + governance_model: ACADEMIC + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q7196481 + category: "5. Archives / Manuscripts" + + description: >- + Pinakes institution ID. + + Format: Numeric + Example: 948 + + Database of ancient Greek texts and manuscripts. + Focus on Greek manuscript repositories worldwide. + + applicable_schema_types: + - schema:ArchiveOrganization + - schema:Library + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - H # Holy sites (monasteries with manuscripts) + + website: https://pinakes.irht.cnrs.fr/ + +- id: hc:Standard/FRANCEARCHIVES + name: FranceArchives + abbreviation: FA + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q64979996 + category: "5. Archives / Manuscripts" + + description: >- + FranceArchives agent ID. + + Format: Numeric + Example: 131449519 + + French national archives portal. + Aggregates data from departmental archives, municipal archives, + and institutional repositories across France. + + applicable_schema_types: + - schema:ArchiveOrganization + - schema:GovernmentOrganization + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - A # Archives + - O # Official institutions + + website: https://francearchives.fr/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/06_national_quality_standards.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/06_national_quality_standards.yaml new file mode 100644 index 0000000000..3d3785f5db --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/06_national_quality_standards.yaml @@ -0,0 +1,73 @@ +# Identifier Standards - Category 6: National Quality Standards +# Instance data for museum/archive quality certification standards +# +# These are quality standards and certification registries, not pure identifiers. + +- id: hc:Standard/MUSEUMNORM + name: Museumnorm (Netherlands Museum Standard) + abbreviation: MN + standard_type: QUALITY_CERTIFICATION + governance_model: INDUSTRY_BODY + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q2292728 + category: "6. National Quality Standards" + + description: >- + Museumnorm (Netherlands Museum Standard). + + Not an identifier but a quality certification standard. + Maintained by Stichting Museumregister Nederland. + + Museums meeting the standard are listed in Museumregister Nederland. + Certification includes collections care, governance, public access, + and professional standards. + + applicable_schema_types: + - schema:Museum + + geographic_scope: + - hc:Country/NL + + glamorcubesfixphdnt_types: + - M # Museums + + website: https://museumvereniging.nl/kennisbank/museumnorm/ + related_registry: https://www.museumregisternederland.nl/ + +- id: hc:Standard/MUSEOFILE + name: Museofile - French Museum Registry + abbreviation: MUSEOFILE + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q3330568 + category: "6. National Quality Standards" + + description: >- + Museofile - French Museum Registry. + + Format: M followed by digits + Example: M5031 + + Official French museum registry managed by Ministry of Culture. + Includes "MusĂŠes de France" label (official state recognition). + + applicable_schema_types: + - schema:Museum + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - M # Museums + + website: https://www.culture.gouv.fr/ + + formats: + - id: hc:IdentifierFormat/MUSEOFILE-standard + format_name: Standard format + pattern: "^M[0-9]+$" + example: "M5031" + is_canonical: true diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/07_web_open_data.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/07_web_open_data.yaml new file mode 100644 index 0000000000..0afe29784b --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/07_web_open_data.yaml @@ -0,0 +1,196 @@ +# Identifier Standards - Category 7: Web / Open Data Identifiers +# Instance data for crowdsourced and open data identifiers +# +# These are identifiers from open data platforms and crowdsourced databases. + +- id: hc:Standard/WIKIDATA + name: Wikidata + abbreviation: WD + standard_type: CROWDSOURCED + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q2013 + category: "7. Web / Open Data" + + description: >- + Wikidata Q-identifier. + + Format: Q followed by digits + Example: Q190804 + Lookup: https://www.wikidata.org/wiki/{id} + + Wikimedia Foundation structured data project. + Free knowledge base with over 100 million items. + + applicable_schema_types: + - schema:Thing # Universal - any entity type + + glamorcubesfixphdnt_types: + - G # Galleries + - L # Libraries + - A # Archives + - M # Museums + - O # Official institutions + - R # Research centers + - C # Corporations + - B # Botanical/Zoos + - E # Education providers + - S # Collecting societies + - F # Features/Monuments + - I # Intangible heritage + - X # Mixed + - P # Personal collections + - H # Holy sites + - D # Digital platforms + - N # NGOs + - T # Taste/smell heritage + + lookup_url_template: "https://www.wikidata.org/wiki/{id}" + website: https://www.wikidata.org/ + data_license: https://creativecommons.org/publicdomain/zero/1.0/ + + formats: + - id: hc:IdentifierFormat/WIKIDATA-qid + format_name: Q-identifier + pattern: "^Q[1-9][0-9]*$" + example: "Q190804" + is_canonical: true + +- id: hc:Standard/OPENSTREETMAP + name: OpenStreetMap + abbreviation: OSM + standard_type: CROWDSOURCED + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q936 + category: "7. Web / Open Data" + + description: >- + OpenStreetMap relation ID. + + Format: Numeric + Example: 7515426 + Lookup: https://www.openstreetmap.org/relation/{id} + + Crowdsourced geographic data. + Includes nodes, ways, and relations for physical locations. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - B # Botanical/Zoos + - F # Features/Monuments + - H # Holy sites + + lookup_url_template: "https://www.openstreetmap.org/{type}/{id}" + website: https://www.openstreetmap.org/ + data_license: https://opendatacommons.org/licenses/odbl/ + +- id: hc:Standard/GEONAMES + name: GeoNames + abbreviation: GN + standard_type: CROWDSOURCED + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q830106 + category: "7. Web / Open Data" + + description: >- + GeoNames ID. + + Format: Numeric + Example: 2997319 + Lookup: https://www.geonames.org/{id} + + Geographic database with place identifiers. + Over 25 million geographical names. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - F # Features/Monuments + - H # Holy sites + + lookup_url_template: "https://www.geonames.org/{id}" + website: https://www.geonames.org/ + data_license: https://creativecommons.org/licenses/by/4.0/ + +- id: hc:Standard/FREEBASE + name: Freebase + abbreviation: FB + standard_type: CROWDSOURCED + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q15241312 + category: "7. Web / Open Data" + deprecated: true + deprecated_reason: "Shut down in 2016; data migrated to Wikidata" + successor: hc:Standard/WIKIDATA + + description: >- + Freebase ID (deprecated, mapped to Wikidata). + + Format: /m/ followed by alphanumeric + Example: /m/04gdr + + Deprecated knowledge base. Data migrated to Wikidata. + Historical identifiers still referenced in some datasets. + + applicable_schema_types: + - schema:Thing + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + +- id: hc:Standard/DBPEDIA + name: DBpedia + abbreviation: DBP + standard_type: EXTRACTED_DATA + governance_model: ACADEMIC + scope_type: GLOBAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q465 + category: "7. Web / Open Data" + + description: >- + DBpedia resource URI. + + Format: URI path + Lookup: https://dbpedia.org/resource/{name} + + Structured data extracted from Wikipedia. + Provides RDF representation of Wikipedia content. + + applicable_schema_types: + - schema:Thing + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - H # Holy sites + - F # Features + + lookup_url_template: "https://dbpedia.org/resource/{id}" + website: https://www.dbpedia.org/ + data_license: https://creativecommons.org/licenses/by-sa/3.0/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/08_religious_ecclesiastical.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/08_religious_ecclesiastical.yaml new file mode 100644 index 0000000000..dff0aa92a6 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/08_religious_ecclesiastical.yaml @@ -0,0 +1,34 @@ +# Identifier Standards - Category 8: Religious / Ecclesiastical +# Instance data for religious and ecclesiastical identifiers +# +# These are identifiers from Vatican and other religious institutions. + +- id: hc:Standard/VATICAN + name: Vatican Library VcBA ID + abbreviation: VcBA + standard_type: PROPRIETARY_SYSTEM + governance_model: SINGLE_AUTHORITY + scope_type: INSTITUTIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q213678 + category: "8. Religious / Ecclesiastical" + + description: >- + Vatican Library VcBA ID. + + Format: Alphanumeric + Example: 494/881 + + Vatican Apostolic Library authority file. + Includes authors, corporate bodies, and subjects. + + applicable_schema_types: + - schema:Organization + - schema:Person + + glamorcubesfixphdnt_types: + - H # Holy sites + - L # Libraries + - A # Archives + + website: https://www.vaticanlibrary.va/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/09_encyclopedias.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/09_encyclopedias.yaml new file mode 100644 index 0000000000..e93df49340 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/09_encyclopedias.yaml @@ -0,0 +1,196 @@ +# Identifier Standards - Category 9: Encyclopedias / Reference Works +# Instance data for encyclopedia and reference work identifiers +# +# These are identifiers from major encyclopedias that cover heritage institutions. + +- id: hc:Standard/BRITANNICA + name: EncyclopĂŚdia Britannica Online + abbreviation: EB + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q455 + category: "9. Encyclopedias" + + description: >- + EncyclopĂŚdia Britannica Online ID. + + Format: topic/{slug} + Example: topic/Louvre-Museum + Lookup: https://www.britannica.com/{id} + + applicable_schema_types: + - schema:Thing + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - F # Features/Monuments + - H # Holy sites + + lookup_url_template: "https://www.britannica.com/{id}" + website: https://www.britannica.com/ + +- id: hc:Standard/BROCKHAUS + name: Brockhaus Enzyklopädie Online + abbreviation: BROCKHAUS + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: REGIONAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q237227 + category: "9. Encyclopedias" + + description: >- + Brockhaus Enzyklopädie Online ID. + + Format: Slug + Example: louvre + + German encyclopedia. + + applicable_schema_types: + - schema:Thing + + geographic_scope: + - hc:Country/DE + - hc:Country/AT + - hc:Country/CH + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + +- id: hc:Standard/LAROUSSE + name: EncyclopĂŠdie Larousse + abbreviation: LAROUSSE + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: REGIONAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q273499 + category: "9. Encyclopedias" + + description: >- + EncyclopĂŠdie Larousse ID. + + Format: Category/slug + Example: divers/Louvre/130508 + + French encyclopedia. + + applicable_schema_types: + - schema:Thing + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + +- id: hc:Standard/TRECCANI + name: Treccani Enciclopedia + abbreviation: TRECCANI + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: REGIONAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q731361 + category: "9. Encyclopedias" + + description: >- + Treccani Enciclopedia ID. + + Format: Slug + Example: louvre + + Italian encyclopedia. + + applicable_schema_types: + - schema:Thing + + geographic_scope: + - hc:Country/IT + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + +- id: hc:Standard/GRE + name: Great Russian Encyclopedia + abbreviation: GRE + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q1768199 + category: "9. Encyclopedias" + + description: >- + Great Russian Encyclopedia (Bolshaya Rossiyskaya Entsiklopediya). + + Format: Numeric or slug + Example: 2149568 or luvr-56cd4f + + Russian national encyclopedia. + + applicable_schema_types: + - schema:Thing + + geographic_scope: + - hc:Country/RU + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + +- id: hc:Standard/SNL + name: Store norske leksikon + abbreviation: SNL + standard_type: COMMUNITY_NONPROFIT + governance_model: COUNCIL + scope_type: NATIONAL + identifier_domain: UNIVERSAL + wikidata_id: wd:Q1131721 + category: "9. Encyclopedias" + + description: >- + Store norske leksikon (Great Norwegian Encyclopedia). + + Format: Slug + Example: Louvre + + Norwegian encyclopedia. + + applicable_schema_types: + - schema:Thing + + geographic_scope: + - hc:Country/NO + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + + website: https://snl.no/ + data_license: https://creativecommons.org/licenses/by-sa/3.0/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/10_architecture_buildings.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/10_architecture_buildings.yaml new file mode 100644 index 0000000000..9971384784 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/10_architecture_buildings.yaml @@ -0,0 +1,67 @@ +# Identifier Standards - Category 10: Architecture / Buildings +# Instance data for architecture and building structure databases +# +# These are identifiers for physical structures and architectural works. + +- id: hc:Standard/STRUCTURAE + name: Structurae + abbreviation: STRUCTURAE + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: BUILDING + wikidata_id: wd:Q1061861 + category: "10. Architecture / Buildings" + + description: >- + Structurae structure ID. + + Format: Numeric + Example: 10000041 + Lookup: https://structurae.net/en/structures/{id} + + International database of structures and civil engineering works. + Includes bridges, buildings, towers, and other constructions. + + applicable_schema_types: + - schema:Place + - schema:CivicStructure + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - M # Museums (buildings) + - L # Libraries (buildings) + - H # Holy sites + + lookup_url_template: "https://structurae.net/en/structures/{id}" + website: https://structurae.net/ + +- id: hc:Standard/ARCHINFO + name: archINFORM + abbreviation: ARCHINFO + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: BUILDING + wikidata_id: wd:Q365819 + category: "10. Architecture / Buildings" + + description: >- + archINFORM project ID. + + Format: Numeric + Example: 16933 + + Architecture database covering buildings, architects, and projects. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - M # Museums (buildings) + - L # Libraries (buildings) + - G # Galleries (buildings) + - H # Holy sites + + website: https://www.archinform.net/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/11_social_media.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/11_social_media.yaml new file mode 100644 index 0000000000..b9fa9dd5f1 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/11_social_media.yaml @@ -0,0 +1,172 @@ +# Identifier Standards - Category 11: Social Media / Web Presence +# Instance data for social media platform identifiers +# +# These are identifiers for institutional presence on social media platforms. + +- id: hc:Standard/FACEBOOK + name: Facebook + abbreviation: FB + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: SOCIAL_MEDIA + wikidata_id: wd:Q355 + category: "11. Social Media" + + description: >- + Facebook username/page ID. + + Format: Username + Example: museedulouvre + + Social media presence verification. + Includes organizational pages and accounts. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - B # Botanical/Zoos + - H # Holy sites + - N # NGOs + + lookup_url_template: "https://www.facebook.com/{id}" + website: https://www.facebook.com/ + +- id: hc:Standard/TWITTER + name: X (Twitter) + abbreviation: X + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: SOCIAL_MEDIA + wikidata_id: wd:Q918 + category: "11. Social Media" + + description: >- + X (Twitter) username. + + Format: Username + Example: MuseeLouvre + + Social media presence. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - N # NGOs + + lookup_url_template: "https://twitter.com/{id}" + website: https://twitter.com/ + +- id: hc:Standard/INSTAGRAM + name: Instagram + abbreviation: IG + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: SOCIAL_MEDIA + wikidata_id: wd:Q209330 + category: "11. Social Media" + + description: >- + Instagram username. + + Format: Username + Example: museelouvre + + Social media presence. + Popular for visual heritage content. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - G + - M + - B # Botanical/Zoos + - H # Holy sites + + lookup_url_template: "https://www.instagram.com/{id}" + website: https://www.instagram.com/ + +- id: hc:Standard/YOUTUBE + name: YouTube + abbreviation: YT + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: SOCIAL_MEDIA + wikidata_id: wd:Q866 + category: "11. Social Media" + + description: >- + YouTube channel ID. + + Format: UC followed by alphanumeric + Example: UCafm6w_rPndqAtokQy04Jdw + + Video content platform. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - E # Education providers + + lookup_url_template: "https://www.youtube.com/channel/{id}" + website: https://www.youtube.com/ + + formats: + - id: hc:IdentifierFormat/YOUTUBE-channel + format_name: Channel ID format + pattern: "^UC[A-Za-z0-9_-]{22}$" + example: "UCafm6w_rPndqAtokQy04Jdw" + is_canonical: true + +- id: hc:Standard/LINKEDIN + name: LinkedIn + abbreviation: LI + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: SOCIAL_MEDIA + wikidata_id: wd:Q213660 + category: "11. Social Media" + + description: >- + LinkedIn company or organization ID. + + Format: Slug + Example: musee-du-louvre + + Professional network presence. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - C # Corporations + + lookup_url_template: "https://www.linkedin.com/company/{id}" + website: https://www.linkedin.com/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/12_commercial_discovery.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/12_commercial_discovery.yaml new file mode 100644 index 0000000000..effd37b307 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/12_commercial_discovery.yaml @@ -0,0 +1,160 @@ +# Identifier Standards - Category 12: Commercial / Discovery Platforms +# Instance data for tourism and discovery platform identifiers +# +# These are identifiers from commercial platforms used for discovery. + +- id: hc:Standard/TRIPADVISOR + name: TripAdvisor + abbreviation: TA + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q1404217 + category: "12. Commercial / Discovery" + + description: >- + TripAdvisor ID. + + Format: Numeric + Example: 188757 + + Travel and tourism platform. + Important for visitor reviews and ratings. + + applicable_schema_types: + - schema:TouristAttraction + - schema:Museum + - schema:Place + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - B # Botanical/Zoos + - F # Features/Monuments + - H # Holy sites + + website: https://www.tripadvisor.com/ + +- id: hc:Standard/YELP + name: Yelp + abbreviation: YELP + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q51668 + category: "12. Commercial / Discovery" + + description: >- + Yelp ID. + + Format: Slug + Example: musĂŠe-du-louvre-paris-2 + + Business review platform. + + applicable_schema_types: + - schema:LocalBusiness + - schema:Museum + + glamorcubesfixphdnt_types: + - G + - M + - T # Taste/smell heritage + + website: https://www.yelp.com/ + +- id: hc:Standard/FOURSQUARE + name: Foursquare + abbreviation: 4SQ + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q51709 + category: "12. Commercial / Discovery" + + description: >- + Foursquare City Guide venue ID. + + Format: Alphanumeric + Example: 4adcda10f964a520af3521e3 + + Location-based discovery platform. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - G + - M + - B # Botanical/Zoos + - T # Taste/smell + + website: https://foursquare.com/ + +- id: hc:Standard/GOOGLEMAPS + name: Google Maps + abbreviation: GMAP + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q12013 + category: "12. Commercial / Discovery" + + description: >- + Google Maps Customer ID. + + Format: Large numeric + Example: 13363865620386383060 + + Google Maps / Google Business Profile. + Also known as Google Place ID. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - B # Botanical/Zoos + - F # Features/Monuments + - H # Holy sites + - T # Taste/smell + + website: https://maps.google.com/ + +- id: hc:Standard/APPLEMAPS + name: Apple Maps + abbreviation: AMAP + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q276880 + category: "12. Commercial / Discovery" + + description: >- + Apple Maps ID. + + Format: Large numeric + Example: 18090677995442714818 + + Apple Maps place identifier. + + applicable_schema_types: + - schema:Place + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - B # Botanical/Zoos + - H # Holy sites + + website: https://maps.apple.com/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/13_dutch_specific.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/13_dutch_specific.yaml new file mode 100644 index 0000000000..88c6fe7dad --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/13_dutch_specific.yaml @@ -0,0 +1,97 @@ +# Identifier Standards - Category 13: Dutch-Specific +# Instance data for Netherlands-specific identifiers +# +# These are identifiers specific to the Dutch heritage sector. + +- id: hc:Standard/KVK + name: Kamer van Koophandel + abbreviation: KvK + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: LEGAL_ENTITY + wikidata_id: wd:Q1130073 + category: "13. Dutch-Specific" + + description: >- + Kamer van Koophandel (Netherlands Chamber of Commerce) number. + + Format: 8-digit numeric + Example: 41200896 (Rijksmuseum) + Lookup: https://www.kvk.nl/zoeken/?source=all&q={number} + + Dutch legal entity registration number for ALL organization types: + - Foundations (stichtingen) - most museums, archives, libraries + - Associations (verenigingen) - heritage societies, collecting clubs + - Corporations (BV, NV) - commercial galleries, auction houses + - Cooperatives (coĂśperaties) + - Religious organizations (kerkgenootschappen) + - Educational institutions + - NGOs and charities + + Nearly every Dutch heritage institution with legal entity status has a KvK number. + + Note: Even foreign organizations with Dutch branches may have KvK numbers. + Related: RSIN (fiscal number) is often derived from KvK. + + applicable_schema_types: + - schema:Organization + + geographic_scope: + - hc:Country/NL + + glamorcubesfixphdnt_types: + - G # Galleries + - L # Libraries + - A # Archives + - M # Museums + - O # Official institutions + - R # Research centers + - C # Corporations + - B # Botanical/Zoos + - E # Education providers + - S # Collecting societies + - H # Holy sites + - N # NGOs + - T # Taste/smell heritage + + lookup_url_template: "https://www.kvk.nl/zoeken/?source=all&q={id}" + website: https://www.kvk.nl/ + + formats: + - id: hc:IdentifierFormat/KVK-standard + format_name: Standard 8-digit format + pattern: "^[0-9]{8}$" + example: "41200896" + is_canonical: true + +- id: hc:Standard/RIJKSCOLLECTIE + name: Rijkscollectie + abbreviation: RC + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: COLLECTION + wikidata_id: wd:Q18600441 + category: "13. Dutch-Specific" + + description: >- + Rijkscollectie (Dutch National Collection) identifier. + + Identifier for objects in Dutch state-owned collections. + Managed by Rijksdienst voor het Cultureel Erfgoed (RCE). + + Portal: https://collectie.rijksoverheid.nl/ + + applicable_schema_types: + - schema:CreativeWork + - schema:VisualArtwork + + geographic_scope: + - hc:Country/NL + + glamorcubesfixphdnt_types: + - M # Museums (state museums) + - O # Official institutions + + website: https://collectie.rijksoverheid.nl/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/14_legal_entity_registries.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/14_legal_entity_registries.yaml new file mode 100644 index 0000000000..a0dc00af73 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/14_legal_entity_registries.yaml @@ -0,0 +1,272 @@ +# Identifier Standards - Category 14: Legal Entity Registries (International) +# Instance data for legal entity registration systems worldwide +# +# These apply to ALL organization types with legal entity status. + +- id: hc:Standard/COMPANIES_HOUSE + name: UK Companies House + abbreviation: CH + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: LEGAL_ENTITY + wikidata_id: wd:Q246597 + category: "14. Legal Entity Registries" + + description: >- + UK Companies House registration number. + + Format: 8 characters (2 letters + 6 digits, or 8 digits) + Example: 01066716 (British Museum Company) + Lookup: https://find-and-update.company-information.service.gov.uk/company/{number} + + Registers ALL UK legal entities including: + - Companies limited by guarantee (most museums, galleries) + - Charitable Incorporated Organisations (CIOs) + - Community Interest Companies (CICs) + - Limited companies, PLCs + + Related: Charity Commission number for registered charities. + + applicable_schema_types: + - schema:Organization + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - C # Corporations + - B # Botanical/Zoos + - E # Education providers + - S # Collecting societies + - N # NGOs + + lookup_url_template: "https://find-and-update.company-information.service.gov.uk/company/{id}" + website: https://www.gov.uk/government/organisations/companies-house + + formats: + - id: hc:IdentifierFormat/CH-numeric + format_name: Numeric format + pattern: "^[0-9]{8}$" + example: "01066716" + is_canonical: true + + - id: hc:IdentifierFormat/CH-prefix + format_name: Prefix format (Scotland, NI) + pattern: "^(SC|NI|OC)[0-9]{6}$" + example: "SC123456" + is_canonical: false + +- id: hc:Standard/HANDELSREGISTER + name: German Commercial Register + abbreviation: HR + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: LEGAL_ENTITY + wikidata_id: wd:Q707784 + category: "14. Legal Entity Registries" + + description: >- + German Commercial Register (Handelsregister) number. + + Format: Court code + HRA/HRB + number + Example: HRB 12345 B (Berlin) + Lookup: https://www.handelsregister.de/ + + Registers German legal entities including: + - GmbH (Gesellschaft mit beschränkter Haftung) + - e.V. (eingetragener Verein) - registered associations + - Stiftungen (foundations) + - AG (Aktiengesellschaft) + + Note: Many German museums are operated by Stiftungen or e.V. + + applicable_schema_types: + - schema:Organization + + geographic_scope: + - hc:Country/DE + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - C + - B + - E + - S + - N + + website: https://www.handelsregister.de/ + +- id: hc:Standard/SIREN + name: French SIREN/SIRET + abbreviation: SIREN + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: LEGAL_ENTITY + wikidata_id: wd:Q3493495 + category: "14. Legal Entity Registries" + + description: >- + French SIREN/SIRET business identification number. + + Format: SIREN = 9 digits; SIRET = 14 digits (SIREN + NIC) + Example: 180070007 (Bibliothèque nationale de France SIREN) + Lookup: https://annuaire-entreprises.data.gouv.fr/ + + Registers ALL French legal entities including: + - Ătablissements publics (public institutions) + - Associations loi 1901 + - Fondations + - SociĂŠtĂŠs (companies) + + Related: RNA (RĂŠpertoire National des Associations) for associations. + + applicable_schema_types: + - schema:Organization + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - C + - B + - E + - S + - N + - T + + lookup_url_template: "https://annuaire-entreprises.data.gouv.fr/entreprise/{id}" + website: https://www.insee.fr/ + + formats: + - id: hc:IdentifierFormat/SIREN-9 + format_name: SIREN (9 digits) + pattern: "^[0-9]{9}$" + example: "180070007" + is_canonical: true + + - id: hc:IdentifierFormat/SIRET-14 + format_name: SIRET (14 digits) + pattern: "^[0-9]{14}$" + example: "18007000700024" + is_canonical: false + +- id: hc:Standard/ABN + name: Australian Business Number + abbreviation: ABN + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: LEGAL_ENTITY + wikidata_id: wd:Q4651897 + category: "14. Legal Entity Registries" + + description: >- + Australian Business Number. + + Format: 11 digits + Example: 84 002 705 224 (Museum of Applied Arts and Sciences) + Lookup: https://abr.business.gov.au/ + + Registers Australian entities for tax and business purposes including: + - Companies + - Trusts + - Incorporated associations + - Government entities + + Related: ARBN for foreign companies registered in Australia. + + applicable_schema_types: + - schema:Organization + + geographic_scope: + - hc:Country/AU + + glamorcubesfixphdnt_types: + - G + - L + - A + - M + - R + - C + - B + - E + - N + + lookup_url_template: "https://abr.business.gov.au/ABN/View/{id}" + website: https://abr.business.gov.au/ + + formats: + - id: hc:IdentifierFormat/ABN-display + format_name: Display format with spaces + pattern: "^[0-9]{2} [0-9]{3} [0-9]{3} [0-9]{3}$" + example: "84 002 705 224" + is_canonical: false + + - id: hc:IdentifierFormat/ABN-compact + format_name: Compact format + pattern: "^[0-9]{11}$" + example: "84002705224" + is_canonical: true + +- id: hc:Standard/LEI + name: Legal Entity Identifier + abbreviation: LEI + standard_type: ISO_STANDARD + governance_model: ISO_TC + scope_type: GLOBAL + identifier_domain: LEGAL_ENTITY + iso_standard_number: ISO 17442 + wikidata_id: wd:Q6517749 + category: "14. Legal Entity Registries" + + description: >- + Legal Entity Identifier (ISO 17442). + + Format: 20 alphanumeric characters + Example: 5493001KJTIIGC8Y1R12 + Lookup: https://search.gleif.org/ + + Global standard for legal entity identification in financial transactions. + Managed by GLEIF (Global Legal Entity Identifier Foundation). + + Applies to any legal entity worldwide, including: + - Corporations + - Foundations (when involved in financial transactions) + - Government entities + - Non-profits with financial reporting requirements + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - C # Corporations (primary use case) + - O # Official institutions + - R # Research centers (with funding) + - E # Education providers (universities) + + lookup_url_template: "https://search.gleif.org/#/record/{id}" + website: https://www.gleif.org/ + + formats: + - id: hc:IdentifierFormat/LEI-standard + format_name: Standard 20-character format + pattern: "^[0-9A-Z]{20}$" + example: "5493001KJTIIGC8Y1R12" + is_canonical: true diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/15_japanese_identifiers.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/15_japanese_identifiers.yaml new file mode 100644 index 0000000000..aa580484ec --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/15_japanese_identifiers.yaml @@ -0,0 +1,70 @@ +# Identifier Standards - Category 15: Japanese Identifiers +# Instance data for Japanese-specific identifiers +# +# These are identifiers specific to the Japanese heritage sector. + +- id: hc:Standard/NACSISCAT + name: NACSIS-CAT Author ID + abbreviation: NACSIS + standard_type: CONSORTIUM_SERVICE + governance_model: ACADEMIC + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q10726338 + category: "15. Japanese Identifiers" + + description: >- + NACSIS-CAT author ID (CiNii). + + Format: Alphanumeric + Example: DA01705974 + + Japanese academic union catalog. + Part of National Institute of Informatics (NII) services. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/JP + + glamorcubesfixphdnt_types: + - L # Libraries + - E # Education providers (universities) + - R # Research centers + + website: https://cir.nii.ac.jp/ + +- id: hc:Standard/CINII + name: CiNii Research ID + abbreviation: CINII + standard_type: CONSORTIUM_SERVICE + governance_model: ACADEMIC + scope_type: NATIONAL + identifier_domain: NAME_AUTHORITY + wikidata_id: wd:Q10726338 + category: "15. Japanese Identifiers" + + description: >- + CiNii Research ID. + + Format: Large numeric + Example: 1140563741685244160 + + Japanese scholarly information database. + Covers articles, books, journals, and research data. + + applicable_schema_types: + - schema:Organization + - schema:Person + + geographic_scope: + - hc:Country/JP + + glamorcubesfixphdnt_types: + - L + - R + - E + + website: https://cir.nii.ac.jp/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/16_botanical_zoos.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/16_botanical_zoos.yaml new file mode 100644 index 0000000000..bc812925c6 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/16_botanical_zoos.yaml @@ -0,0 +1,124 @@ +# Identifier Standards - Category 16: Botanical Gardens / Zoos +# Instance data for botanical garden and zoo registries +# +# These are identifiers specific to living collections institutions. + +- id: hc:Standard/BGCI + name: Botanic Gardens Conservation International + abbreviation: BGCI + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q893845 + category: "16. Botanical Gardens / Zoos" + + description: >- + Botanic Gardens Conservation International - GardenSearch ID. + + Format: Numeric + Lookup: https://tools.bgci.org/garden.php?id={id} + + Global registry of over 3,600 botanical gardens worldwide. + BGCI coordinates plant conservation efforts globally. + + applicable_schema_types: + - schema:Park + - schema:TouristAttraction + + glamorcubesfixphdnt_types: + - B # Botanical/Zoos + + lookup_url_template: "https://tools.bgci.org/garden.php?id={id}" + website: https://www.bgci.org/ + +- id: hc:Standard/WAZA + name: World Association of Zoos and Aquariums + abbreviation: WAZA + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q2539149 + category: "16. Botanical Gardens / Zoos" + + description: >- + World Association of Zoos and Aquariums member registry. + + Format: Numeric/Slug + Lookup: https://www.waza.org/members/ + + Global alliance of zoos and aquariums dedicated to animal care + and conservation. + + applicable_schema_types: + - schema:Zoo + - schema:Aquarium + + glamorcubesfixphdnt_types: + - B # Botanical/Zoos + + website: https://www.waza.org/ + +- id: hc:Standard/AZA + name: Association of Zoos and Aquariums + abbreviation: AZA + standard_type: QUALITY_CERTIFICATION + governance_model: INDUSTRY_BODY + scope_type: REGIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q4766065 + category: "16. Botanical Gardens / Zoos" + + description: >- + Association of Zoos and Aquariums (North America) accreditation. + + Format: Accreditation status/ID + + North American zoo and aquarium accreditation body. + Accreditation indicates meeting high standards for animal care, + conservation, education, and safety. + + applicable_schema_types: + - schema:Zoo + - schema:Aquarium + + geographic_scope: + - hc:Country/US + - hc:Country/CA + - hc:Country/MX + + glamorcubesfixphdnt_types: + - B # Botanical/Zoos + + website: https://www.aza.org/ + +- id: hc:Standard/EAZA + name: European Association of Zoos and Aquaria + abbreviation: EAZA + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: REGIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q1376853 + category: "16. Botanical Gardens / Zoos" + + description: >- + European Association of Zoos and Aquaria member ID. + + Format: Membership ID + + European zoo and aquarium association for conservation + and education. + + applicable_schema_types: + - schema:Zoo + - schema:Aquarium + + geographic_scope: + - hc:Region/Europe + + glamorcubesfixphdnt_types: + - B # Botanical/Zoos + + website: https://www.eaza.net/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/17_higher_education.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/17_higher_education.yaml new file mode 100644 index 0000000000..733995c27f --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/17_higher_education.yaml @@ -0,0 +1,106 @@ +# Identifier Standards - Category 17: Higher Education / Research +# Instance data for higher education institution registries +# +# These are identifiers for universities and research institutions. + +- id: hc:Standard/WHED + name: World Higher Education Database + abbreviation: WHED + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q7981938 + category: "17. Higher Education" + + description: >- + World Higher Education Database (IAU). + + Format: Numeric + Lookup: https://whed.net/ + + International Association of Universities database of + higher education institutions worldwide. + Over 20,000 institutions in 196 countries. + + applicable_schema_types: + - schema:EducationalOrganization + - schema:CollegeOrUniversity + + glamorcubesfixphdnt_types: + - E # Education providers + - R # Research centers + - L # Libraries (university libraries) + + website: https://whed.net/ + +- id: hc:Standard/HESA + name: Higher Education Statistics Agency + abbreviation: HESA + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q5759694 + category: "17. Higher Education" + + description: >- + Higher Education Statistics Agency (UK) institution ID. + + Format: Alphanumeric + + UK higher education statistics and data. + Covers all UK higher education providers. + + applicable_schema_types: + - schema:EducationalOrganization + - schema:CollegeOrUniversity + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - E # Education providers + - R # Research centers + + website: https://www.hesa.ac.uk/ + +- id: hc:Standard/IPEDS + name: Integrated Postsecondary Education Data System + abbreviation: IPEDS + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q6043461 + category: "17. Higher Education" + + description: >- + Integrated Postsecondary Education Data System (US). + + Format: 6-digit numeric + Example: 166629 + + US Department of Education higher education data system. + Covers all Title IV eligible institutions. + + applicable_schema_types: + - schema:EducationalOrganization + - schema:CollegeOrUniversity + + geographic_scope: + - hc:Country/US + + glamorcubesfixphdnt_types: + - E # Education providers + - R # Research centers + - L # Libraries (academic libraries) + + website: https://nces.ed.gov/ipeds/ + + formats: + - id: hc:IdentifierFormat/IPEDS-unitid + format_name: UNITID format + pattern: "^[0-9]{6}$" + example: "166629" + is_canonical: true diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/18_numismatic_philatelic.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/18_numismatic_philatelic.yaml new file mode 100644 index 0000000000..922dfd6954 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/18_numismatic_philatelic.yaml @@ -0,0 +1,187 @@ +# Identifier Standards - Category 18: Numismatic / Philatelic (Collecting) +# Instance data for collecting society identifiers +# +# These are identifiers for numismatic and philatelic collecting domains. + +- id: hc:Standard/ANS_MANTIS + name: American Numismatic Society MANTIS + abbreviation: ANS + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: COLLECTION + wikidata_id: wd:Q463281 + category: "18. Numismatic / Philatelic" + + description: >- + American Numismatic Society - MANTIS database ID. + + Format: Alphanumeric + Lookup: https://numismatics.org/search/ + + Numismatic Technologies Integration Service for coins, + medals, and currency. + + applicable_schema_types: + - schema:Organization + - schema:Museum + + glamorcubesfixphdnt_types: + - S # Collecting societies + - M # Museums (numismatic museums) + + website: https://numismatics.org/ + +- id: hc:Standard/NGC + name: Numismatic Guaranty Corporation + abbreviation: NGC + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q6955982 + category: "18. Numismatic / Philatelic" + + description: >- + Numismatic Guaranty Corporation coin certification number. + + Format: Alphanumeric + Lookup: https://www.ngccoin.com/ + + Third-party coin grading and certification service. + + applicable_schema_types: + - schema:Product + + glamorcubesfixphdnt_types: + - S # Collecting societies + - P # Personal collections + + website: https://www.ngccoin.com/ + +- id: hc:Standard/PCGS + name: Professional Coin Grading Service + abbreviation: PCGS + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q7247220 + category: "18. Numismatic / Philatelic" + + description: >- + Professional Coin Grading Service certification number. + + Format: Alphanumeric + + Leading coin authentication and grading service. + + applicable_schema_types: + - schema:Product + + glamorcubesfixphdnt_types: + - S # Collecting societies + - P # Personal collections + + website: https://www.pcgs.com/ + +- id: hc:Standard/COLNECT + name: Colnect + abbreviation: COLNECT + standard_type: CROWDSOURCED + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q1108623 + category: "18. Numismatic / Philatelic" + + description: >- + Colnect collectibles catalog ID. + + Format: Numeric + Lookup: https://colnect.com/ + + Community-driven catalog for stamps, coins, banknotes, + and other collectibles (400K+ collectors). + + applicable_schema_types: + - schema:Product + + glamorcubesfixphdnt_types: + - S # Collecting societies + - P # Personal collections + + website: https://colnect.com/ + +- id: hc:Standard/SCOTT + name: Scott Catalogue + abbreviation: SCOTT + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q836791 + category: "18. Numismatic / Philatelic" + + description: >- + Scott Catalogue number (philately). + + Format: Country code + number + Example: US 1 + + Standard stamp catalog numbering system (North America). + + applicable_schema_types: + - schema:Product + + glamorcubesfixphdnt_types: + - S # Collecting societies + - P # Personal collections + +- id: hc:Standard/MICHEL + name: Michel Catalogue + abbreviation: MICHEL + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q837381 + category: "18. Numismatic / Philatelic" + + description: >- + Michel Catalogue number (philately). + + Format: Country code + number + + European standard stamp catalog numbering system. + + applicable_schema_types: + - schema:Product + + glamorcubesfixphdnt_types: + - S # Collecting societies + - P # Personal collections + +- id: hc:Standard/STANLEY_GIBBONS + name: Stanley Gibbons Catalogue + abbreviation: SG + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q923643 + category: "18. Numismatic / Philatelic" + + description: >- + Stanley Gibbons stamp catalog number. + + Format: Country + number + + British/Commonwealth stamp catalog standard. + + applicable_schema_types: + - schema:Product + + glamorcubesfixphdnt_types: + - S # Collecting societies + - P # Personal collections diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/19_monuments_heritage_sites.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/19_monuments_heritage_sites.yaml new file mode 100644 index 0000000000..1eeeb2d86c --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/19_monuments_heritage_sites.yaml @@ -0,0 +1,286 @@ +# Identifier Standards - Category 19: Monuments / Heritage Sites +# Instance data for monument and heritage site registries +# +# These are identifiers for protected heritage sites and monuments. + +- id: hc:Standard/UNESCO_WHC + name: UNESCO World Heritage Centre + abbreviation: WHC + standard_type: INTERNATIONAL_TREATY + governance_model: INTERGOVERNMENTAL + scope_type: GLOBAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q9259 + category: "19. Monuments / Heritage Sites" + + description: >- + UNESCO World Heritage Centre site ID. + + Format: Numeric + Example: 81 + Lookup: https://whc.unesco.org/en/list/{id} + + Official UNESCO World Heritage site registry. + Over 1,100 sites in 167 countries. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - M # Museums (site museums) + + lookup_url_template: "https://whc.unesco.org/en/list/{id}" + website: https://whc.unesco.org/ + +- id: hc:Standard/NRHP + name: National Register of Historic Places + abbreviation: NRHP + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q214080 + category: "19. Monuments / Heritage Sites" + + description: >- + National Register of Historic Places (US) reference number. + + Format: 8-digit numeric + Example: 66000115 + Lookup: https://www.nps.gov/subjects/nationalregister/ + + US official list of historic places worthy of preservation. + Over 95,000 listings. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/US + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - M # Museums (in historic buildings) + - L # Libraries (in historic buildings) + + website: https://www.nps.gov/subjects/nationalregister/ + + formats: + - id: hc:IdentifierFormat/NRHP-refnum + format_name: Reference number + pattern: "^[0-9]{8}$" + example: "66000115" + is_canonical: true + +- id: hc:Standard/NHLE + name: National Heritage List for England + abbreviation: NHLE + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q6973935 + category: "19. Monuments / Heritage Sites" + + description: >- + National Heritage List for England entry number. + + Format: 7-digit numeric + Example: 1066873 + Lookup: https://historicengland.org.uk/listing/the-list/ + + Official database of protected heritage assets in England + (listed buildings, scheduled monuments, etc.). + Over 400,000 entries. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - M # Museums + - L # Libraries + + lookup_url_template: "https://historicengland.org.uk/listing/the-list/list-entry/{id}" + website: https://historicengland.org.uk/ + +- id: hc:Standard/HES + name: Historic Environment Scotland + abbreviation: HES + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q22908164 + category: "19. Monuments / Heritage Sites" + + description: >- + Historic Environment Scotland designation ID. + + Format: Alphanumeric + Lookup: https://portal.historicenvironment.scot/ + + Scottish listed buildings and heritage designations. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + + website: https://www.historicenvironment.scot/ + +- id: hc:Standard/CADW + name: Cadw + abbreviation: CADW + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q2164220 + category: "19. Monuments / Heritage Sites" + + description: >- + Cadw (Welsh historic environment service) listing ID. + + Format: Numeric + + Welsh government historic environment division. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + + website: https://cadw.gov.wales/ + +- id: hc:Standard/RIJKSMONUMENT + name: Rijksmonumentnummer + abbreviation: RM + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q916333 + category: "19. Monuments / Heritage Sites" + + description: >- + Rijksmonumentnummer (Netherlands National Monument number). + + Format: Numeric + Lookup: https://monumentenregister.cultureelerfgoed.nl/ + + Dutch national monument registry maintained by RCE. + Over 62,000 registered monuments. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/NL + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - M # Museums (in historic buildings) + - L # Libraries (in historic buildings) + + lookup_url_template: "https://monumentenregister.cultureelerfgoed.nl/monumenten/{id}" + website: https://monumentenregister.cultureelerfgoed.nl/ + +- id: hc:Standard/MERIMEE + name: Base MĂŠrimĂŠe + abbreviation: MERIMEE + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q3299598 + category: "19. Monuments / Heritage Sites" + + description: >- + Base MĂŠrimĂŠe (French heritage database) reference. + + Format: PA or IA + 8 digits + Example: PA00085796 + + French Ministry of Culture heritage database. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/FR + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - M # Museums + + website: https://www.pop.culture.gouv.fr/ + + formats: + - id: hc:IdentifierFormat/MERIMEE-pa + format_name: Protected monument (PA) + pattern: "^PA[0-9]{8}$" + example: "PA00085796" + is_canonical: true + + - id: hc:IdentifierFormat/MERIMEE-ia + format_name: Inventoried monument (IA) + pattern: "^IA[0-9]{8}$" + example: "IA00000001" + is_canonical: false + +- id: hc:Standard/DENKMALLISTE + name: German Denkmalliste + abbreviation: DL + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q811165 + category: "19. Monuments / Heritage Sites" + + description: >- + German Denkmalliste (monument list) ID. + + Format: Varies by state + + German heritage registry (federal states maintain lists). + Each Bundesland has its own numbering system. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + geographic_scope: + - hc:Country/DE + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - M # Museums diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/20_intangible_heritage.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/20_intangible_heritage.yaml new file mode 100644 index 0000000000..b204c64956 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/20_intangible_heritage.yaml @@ -0,0 +1,64 @@ +# Identifier Standards - Category 20: Intangible Heritage +# Instance data for intangible cultural heritage identifiers +# +# These are identifiers for UNESCO intangible heritage elements. + +- id: hc:Standard/UNESCO_ICH + name: UNESCO Intangible Cultural Heritage + abbreviation: ICH + standard_type: INTERNATIONAL_TREATY + governance_model: INTERGOVERNMENTAL + scope_type: GLOBAL + identifier_domain: INTANGIBLE_HERITAGE + wikidata_id: wd:Q1362466 + category: "20. Intangible Heritage" + + description: >- + UNESCO Intangible Cultural Heritage element ID. + + Format: 5-digit numeric + Example: 00673 + Lookup: https://ich.unesco.org/en/RL/{id} + + UNESCO List of Intangible Cultural Heritage of Humanity. + Includes traditions, performing arts, rituals, crafts. + Over 700 elements from 140+ countries. + + applicable_schema_types: + - schema:Thing + + glamorcubesfixphdnt_types: + - I # Intangible heritage groups + - S # Collecting societies (preserving traditions) + - T # Taste/smell heritage + + lookup_url_template: "https://ich.unesco.org/en/RL/{id}" + website: https://ich.unesco.org/ + +- id: hc:Standard/UNESCO_ICH_GSP + name: UNESCO ICH Register of Good Safeguarding Practices + abbreviation: ICH-GSP + standard_type: INTERNATIONAL_TREATY + governance_model: INTERGOVERNMENTAL + scope_type: GLOBAL + identifier_domain: INTANGIBLE_HERITAGE + wikidata_id: wd:Q1362466 + category: "20. Intangible Heritage" + + description: >- + UNESCO ICH Register of Good Safeguarding Practices ID. + + Format: 5-digit numeric + + Best practices for safeguarding intangible heritage. + Showcases successful preservation programs. + + applicable_schema_types: + - schema:Thing + + glamorcubesfixphdnt_types: + - I # Intangible heritage groups + - O # Official institutions (heritage agencies) + - N # NGOs + + website: https://ich.unesco.org/en/register diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/21_provenance_art_registry.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/21_provenance_art_registry.yaml new file mode 100644 index 0000000000..cbbb40895b --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/21_provenance_art_registry.yaml @@ -0,0 +1,125 @@ +# Identifier Standards - Category 21: Provenance / Art Registry +# Instance data for art provenance and stolen art registries +# +# These are identifiers for tracking art provenance and stolen works. + +- id: hc:Standard/ALR + name: Art Loss Register + abbreviation: ALR + standard_type: COMMERCIAL_SERVICE + governance_model: PROPRIETARY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q4800420 + category: "21. Provenance / Art Registry" + + description: >- + Art Loss Register item ID. + + Format: Alphanumeric + + World's largest private database of stolen art, + antiques, and collectibles (700,000+ items). + + applicable_schema_types: + - schema:VisualArtwork + - schema:Product + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - P # Personal collections + + website: https://www.artloss.com/ + +- id: hc:Standard/LOSTART + name: Lost Art Database + abbreviation: LOSTART + standard_type: GOVERNMENT_REGISTRY + governance_model: GOVERNMENT + scope_type: NATIONAL + identifier_domain: OBJECT + wikidata_id: wd:Q1871651 + category: "21. Provenance / Art Registry" + + description: >- + Lost Art Database ID (Germany). + + Format: Numeric + Lookup: https://www.lostart.de/ + + German database for Nazi-looted and war-lost art. + Managed by German Lost Art Foundation. + + applicable_schema_types: + - schema:VisualArtwork + - schema:Product + + geographic_scope: + - hc:Country/DE + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - A # Archives + + lookup_url_template: "https://www.lostart.de/de/Verlust/{id}" + website: https://www.lostart.de/ + +- id: hc:Standard/GETTY_PI + name: Getty Provenance Index + abbreviation: GPI + standard_type: ACADEMIC_DATABASE + governance_model: SINGLE_AUTHORITY + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q1520339 + category: "21. Provenance / Art Registry" + + description: >- + Getty Provenance Index database ID. + + Format: Varies + Lookup: https://www.getty.edu/research/tools/provenance/ + + Art sales catalogs, inventories, and provenance data + from Getty Research Institute. + + applicable_schema_types: + - schema:VisualArtwork + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - R # Research centers + + website: https://www.getty.edu/research/tools/provenance/ + +- id: hc:Standard/LOOTEDART + name: Central Registry of Looted Cultural Property + abbreviation: CRILCP + standard_type: COMMUNITY_NONPROFIT + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: OBJECT + wikidata_id: wd:Q109652096 + category: "21. Provenance / Art Registry" + + description: >- + Central Registry of Information on Looted Cultural Property ID. + + Format: URL-based + Lookup: https://www.lootedart.com/ + + Database of looted cultural property 1933-1945. + + applicable_schema_types: + - schema:VisualArtwork + - schema:Product + + glamorcubesfixphdnt_types: + - G # Galleries + - M # Museums + - A # Archives + + website: https://www.lootedart.com/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/22_persistent_identifiers.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/22_persistent_identifiers.yaml new file mode 100644 index 0000000000..29ca648213 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/22_persistent_identifiers.yaml @@ -0,0 +1,183 @@ +# Identifier Standards - Category 22: Persistent Identifiers (Digital) +# Instance data for digital persistent identifier systems +# +# These are identifier schemes for persistent digital references. + +- id: hc:Standard/DOI + name: Digital Object Identifier + abbreviation: DOI + standard_type: ISO_STANDARD + governance_model: ISO_TC + scope_type: GLOBAL + identifier_domain: DIGITAL_OBJECT + iso_standard_number: ISO 26324 + wikidata_id: wd:Q25670 + category: "22. Persistent Identifiers" + + description: >- + Digital Object Identifier. + + Format: 10.prefix/suffix + Example: 10.1000/xyz123 + Lookup: https://doi.org/{id} + + Persistent identifier for digital objects. + Managed by International DOI Foundation. + Over 300 million DOIs assigned. + + applicable_schema_types: + - schema:CreativeWork + - schema:Dataset + + glamorcubesfixphdnt_types: + - L # Libraries (digital collections) + - A # Archives (digital archives) + - R # Research centers + - D # Digital platforms + + lookup_url_template: "https://doi.org/{id}" + website: https://www.doi.org/ + + formats: + - id: hc:IdentifierFormat/DOI-standard + format_name: Standard DOI format + pattern: "^10\\.[0-9]{4,}/[^\\s]+$" + example: "10.1000/xyz123" + is_canonical: true + +- id: hc:Standard/HANDLE + name: Handle System + abbreviation: HDL + standard_type: OPEN_STANDARD + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: DIGITAL_OBJECT + wikidata_id: wd:Q2701640 + category: "22. Persistent Identifiers" + + description: >- + Handle System persistent identifier. + + Format: prefix/suffix + Example: 2381/12345 + Lookup: https://hdl.handle.net/{id} + + Distributed system for persistent identifiers. + Managed by DONA Foundation. + DOI is built on Handle System. + + applicable_schema_types: + - schema:CreativeWork + - schema:Dataset + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - R # Research centers + - D # Digital platforms + + lookup_url_template: "https://hdl.handle.net/{id}" + website: https://www.handle.net/ + +- id: hc:Standard/ARK + name: Archival Resource Key + abbreviation: ARK + standard_type: OPEN_STANDARD + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: DIGITAL_OBJECT + wikidata_id: wd:Q2860491 + category: "22. Persistent Identifiers" + + description: >- + Archival Resource Key persistent identifier. + + Format: ark:/NAAN/Name + Example: ark:/12148/btv1b8449691v + + Open, decentralized persistent identifier scheme. + No registration fees. Self-hosted resolution. + + applicable_schema_types: + - schema:CreativeWork + - schema:ArchiveComponent + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - M # Museums + - D # Digital platforms + + website: https://arks.org/ + + formats: + - id: hc:IdentifierFormat/ARK-standard + format_name: Standard ARK format + pattern: "^ark:/[0-9]{5}/[A-Za-z0-9]+$" + example: "ark:/12148/btv1b8449691v" + is_canonical: true + +- id: hc:Standard/PURL + name: Persistent Uniform Resource Locator + abbreviation: PURL + standard_type: OPEN_STANDARD + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: DIGITAL_OBJECT + wikidata_id: wd:Q1759399 + category: "22. Persistent Identifiers" + + description: >- + Persistent Uniform Resource Locator. + + Format: URL + Lookup: https://purl.org/ + + Redirection-based persistent identifiers. + Hosted by Internet Archive. + + applicable_schema_types: + - schema:CreativeWork + - schema:WebPage + + glamorcubesfixphdnt_types: + - L # Libraries + - A # Archives + - R # Research centers + - D # Digital platforms + + website: https://archive.org/services/purl/ + +- id: hc:Standard/URN_NBN + name: URN National Bibliography Number + abbreviation: URN:NBN + standard_type: OPEN_STANDARD + governance_model: COUNCIL + scope_type: REGIONAL + identifier_domain: DIGITAL_OBJECT + wikidata_id: wd:Q1061508 + category: "22. Persistent Identifiers" + + description: >- + Uniform Resource Name - National Bibliography Number. + + Format: urn:nbn:{country-code}-{id} + Example: urn:nbn:de:0111-pedocs-123456 + + National library persistent identifier scheme. + Used in many European countries. + + applicable_schema_types: + - schema:CreativeWork + + glamorcubesfixphdnt_types: + - L # Libraries (national libraries) + - A # Archives + - R # Research centers + + formats: + - id: hc:IdentifierFormat/URN-NBN-de + format_name: German URN:NBN + pattern: "^urn:nbn:de:[0-9]+-[a-z0-9]+-[0-9]+$" + example: "urn:nbn:de:0111-pedocs-123456" + is_canonical: true diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/23_heritage_ngos.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/23_heritage_ngos.yaml new file mode 100644 index 0000000000..cd5dd123a3 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/23_heritage_ngos.yaml @@ -0,0 +1,128 @@ +# Identifier Standards - Category 23: Heritage NGOs +# Instance data for heritage NGO registries and networks +# +# These are identifiers from international heritage NGOs. + +- id: hc:Standard/ICOMOS + name: International Council on Monuments and Sites + abbreviation: ICOMOS + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q48744 + category: "23. Heritage NGOs" + + description: >- + ICOMOS (International Council on Monuments and Sites) member ID. + + Format: Organization/member reference + + NGO for conservation of monuments and sites. + Advisory body to UNESCO World Heritage. + Over 11,000 members in 150+ countries. + + applicable_schema_types: + - schema:NGO + - schema:Organization + + glamorcubesfixphdnt_types: + - N # NGOs + - O # Official institutions (heritage agencies) + - R # Research centers + + website: https://www.icomos.org/ + +- id: hc:Standard/EUROPA_NOSTRA + name: Europa Nostra + abbreviation: EN + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: REGIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q672042 + category: "23. Heritage NGOs" + + description: >- + Europa Nostra member/award registry. + + Format: Reference number + + Pan-European heritage federation (50+ countries). + Awards European Heritage Awards/Europa Nostra Awards. + + applicable_schema_types: + - schema:NGO + - schema:Organization + + geographic_scope: + - hc:Region/Europe + + glamorcubesfixphdnt_types: + - N # NGOs + - M # Museums + - F # Features/Monuments + + website: https://www.europanostra.org/ + +- id: hc:Standard/WMF + name: World Monuments Fund + abbreviation: WMF + standard_type: COMMUNITY_NONPROFIT + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q3569312 + category: "23. Heritage NGOs" + + description: >- + World Monuments Fund Watch List entry. + + Format: Project/site reference + + International organization for heritage site preservation. + Publishes biennial World Monuments Watch list. + + applicable_schema_types: + - schema:LandmarksOrHistoricalBuildings + - schema:Place + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - H # Holy sites + - N # NGOs + + website: https://www.wmf.org/ + +- id: hc:Standard/HERITAGE_GATEWAY + name: Heritage Gateway + abbreviation: HG + standard_type: CONSORTIUM_SERVICE + governance_model: COUNCIL + scope_type: NATIONAL + identifier_domain: HERITAGE_SITE + wikidata_id: wd:Q17020227 + category: "23. Heritage NGOs" + + description: >- + Heritage Gateway (UK) record ID. + + Format: HER reference + Lookup: https://www.heritagegateway.org.uk/ + + UK aggregated access to Historic Environment Records. + Portal to local and national heritage data. + + applicable_schema_types: + - schema:Place + - schema:LandmarksOrHistoricalBuildings + + geographic_scope: + - hc:Country/GB + + glamorcubesfixphdnt_types: + - F # Features/Monuments + - A # Archives (HERs) + - O # Official institutions + + website: https://www.heritagegateway.org.uk/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/24_religious_heritage.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/24_religious_heritage.yaml new file mode 100644 index 0000000000..3eb3029a89 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/24_religious_heritage.yaml @@ -0,0 +1,123 @@ +# Identifier Standards - Category 24: Religious Heritage +# Instance data for religious heritage databases +# +# These are identifiers for religious institutions and heritage. + +- id: hc:Standard/WCD + name: World Christian Database + abbreviation: WCD + standard_type: COMMERCIAL_SERVICE + governance_model: ACADEMIC + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q8034664 + category: "24. Religious Heritage" + + description: >- + World Christian Database identifier. + + Format: Numeric + + Comprehensive database on global Christianity, + denominations, and religious institutions. + Maintained by Gordon-Conwell Theological Seminary. + + applicable_schema_types: + - schema:Organization + - schema:PlaceOfWorship + + glamorcubesfixphdnt_types: + - H # Holy sites + + website: https://www.worldchristiandatabase.org/ + +- id: hc:Standard/ARDA + name: Association of Religion Data Archives + abbreviation: ARDA + standard_type: ACADEMIC_DATABASE + governance_model: ACADEMIC + scope_type: NATIONAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q2860284 + category: "24. Religious Heritage" + + description: >- + Association of Religion Data Archives identifier. + + Format: Dataset/congregation ID + Lookup: https://www.thearda.com/ + + US religion data including congregational surveys. + Hosted at Penn State University. + + applicable_schema_types: + - schema:Organization + - schema:PlaceOfWorship + + geographic_scope: + - hc:Country/US + + glamorcubesfixphdnt_types: + - H # Holy sites + - R # Research centers + + website: https://www.thearda.com/ + +- id: hc:Standard/JEWISHGEN + name: JewishGen + abbreviation: JG + standard_type: COMMUNITY_NONPROFIT + governance_model: COMMUNITY + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q6189979 + category: "24. Religious Heritage" + + description: >- + JewishGen synagogue/community identifier. + + Format: Numeric + Lookup: https://www.jewishgen.org/ + + Jewish genealogy and community research database. + Includes Shul Records America and international synagogue data. + + applicable_schema_types: + - schema:PlaceOfWorship + - schema:Organization + + glamorcubesfixphdnt_types: + - H # Holy sites + - A # Archives (genealogical) + - L # Libraries (Jewish libraries) + + website: https://www.jewishgen.org/ + +- id: hc:Standard/DRH + name: Database of Religious History + abbreviation: DRH + standard_type: ACADEMIC_DATABASE + governance_model: ACADEMIC + scope_type: GLOBAL + identifier_domain: HERITAGE_INSTITUTION + wikidata_id: wd:Q106654011 + category: "24. Religious Heritage" + + description: >- + Database of Religious History entry ID. + + Format: Numeric + Lookup: https://religiondatabase.org/ + + Academic database of religious groups and traditions. + Maintained by University of British Columbia. + + applicable_schema_types: + - schema:Organization + + glamorcubesfixphdnt_types: + - H # Holy sites + - I # Intangible heritage (religious traditions) + - R # Research centers + + website: https://religiondatabase.org/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/25_gastronomy_culinary.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/25_gastronomy_culinary.yaml new file mode 100644 index 0000000000..ecf4522398 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/25_gastronomy_culinary.yaml @@ -0,0 +1,127 @@ +# Identifier Standards - Category 25: Gastronomy / Culinary Heritage +# Instance data for culinary and gastronomic heritage identifiers +# +# These are identifiers for food culture and culinary heritage. + +- id: hc:Standard/UNESCO_CITY_GASTRONOMY + name: UNESCO Creative Cities Network - City of Gastronomy + abbreviation: CCN-G + standard_type: INTERNATIONAL_TREATY + governance_model: INTERGOVERNMENTAL + scope_type: GLOBAL + identifier_domain: PLACE + wikidata_id: wd:Q3240003 + category: "25. Gastronomy / Culinary" + + description: >- + UNESCO Creative Cities Network - City of Gastronomy designation. + + Format: City designation + + UNESCO designation for cities with recognized culinary heritage. + Part of Creative Cities Network (56 gastronomy cities as of 2024). + Examples: Parma, Lyon, Chengdu, Tucson, Jeonju. + + applicable_schema_types: + - schema:City + - schema:Place + + glamorcubesfixphdnt_types: + - T # Taste/smell heritage + - I # Intangible heritage + + website: https://en.unesco.org/creative-cities/ + +- id: hc:Standard/SLOW_FOOD + name: Slow Food Presidia / Ark of Taste + abbreviation: SF + standard_type: COMMUNITY_NONPROFIT + governance_model: COUNCIL + scope_type: GLOBAL + identifier_domain: INTANGIBLE_HERITAGE + wikidata_id: wd:Q377365 + category: "25. Gastronomy / Culinary" + + description: >- + Slow Food Presidia / Ark of Taste identifier. + + Format: Reference number + + Slow Food Foundation catalogs of endangered food traditions + and products worthy of preservation. + + - Ark of Taste: Catalog of heritage food products at risk + - Presidia: Support projects for traditional producers + + applicable_schema_types: + - schema:Product + - schema:FoodEstablishment + + glamorcubesfixphdnt_types: + - T # Taste/smell heritage + - I # Intangible heritage + - N # NGOs + + website: https://www.fondazioneslowfood.com/ + +- id: hc:Standard/IGP + name: Protected Geographical Indication + abbreviation: IGP + standard_type: INTERNATIONAL_TREATY + governance_model: INTERGOVERNMENTAL + scope_type: REGIONAL + identifier_domain: PRODUCT + wikidata_id: wd:Q1065977 + category: "25. Gastronomy / Culinary" + + description: >- + Protected Geographical Indication (EU) registration. + + Format: EU registration number + + EU quality scheme for agricultural products and foodstuffs. + Products have qualities or reputation linked to geographic origin. + + Examples: Welsh Lamb, Bayerisches Bier, JamĂłn de Teruel. + + applicable_schema_types: + - schema:Product + + geographic_scope: + - hc:Region/Europe + + glamorcubesfixphdnt_types: + - T # Taste/smell heritage + + website: https://agriculture.ec.europa.eu/farming/geographical-indications-and-quality-schemes/ + +- id: hc:Standard/PDO + name: Protected Designation of Origin + abbreviation: PDO + standard_type: INTERNATIONAL_TREATY + governance_model: INTERGOVERNMENTAL + scope_type: REGIONAL + identifier_domain: PRODUCT + wikidata_id: wd:Q209470 + category: "25. Gastronomy / Culinary" + + description: >- + Protected Designation of Origin (EU) registration. + + Format: EU registration number + + EU quality scheme for products strongly linked to place of origin. + Production, processing, and preparation must occur in specific region. + + Examples: Champagne, Parmigiano-Reggiano, Feta. + + applicable_schema_types: + - schema:Product + + geographic_scope: + - hc:Region/Europe + + glamorcubesfixphdnt_types: + - T # Taste/smell heritage + + website: https://agriculture.ec.europa.eu/farming/geographical-indications-and-quality-schemes/ diff --git a/frontend/public/schemas/20251121/linkml/instances/identifier_standards/_index.yaml b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/_index.yaml new file mode 100644 index 0000000000..1c241a98d4 --- /dev/null +++ b/frontend/public/schemas/20251121/linkml/instances/identifier_standards/_index.yaml @@ -0,0 +1,240 @@ +# Identifier Standards Index +# Generated: 2025-11-28 +# Total Standards: 131 +# +# This file provides a manifest of all identifier standard instance files +# for programmatic loading by the frontend and other tools. + +id: hc:IdentifierStandardsIndex +name: Identifier Standards Registry +description: >- + Complete registry of 131 identifier standards across 25 categories, + ranging from ISO standards to commercial services, covering heritage + institutions, authority files, persistent identifiers, and more. + +version: "1.0.0" +generated: "2025-11-28T00:00:00Z" + +# Statistics +statistics: + total_standards: 131 + total_categories: 25 + deprecated_standards: 2 # FREEBASE, GRID + +# Category Files +categories: + - id: 1 + name: ISO Standards + file: 01_iso_standards.yaml + count: 2 + standards: [ISIL, ISNI] + + - id: 2 + name: Authority Files (National Libraries) + file: 02_authority_files.yaml + count: 28 + standards: [VIAF, GND, LCNAF, BNF, BNE, NTA, ICCU, NDL, NLA, NLI, NLK, NLP, NLR, NSK, PTBNP, LAC, BANQ, CANTIC, EGAXA, IDREF, LNB, LNL, NORAF, NKC, NUKAT, RERO, SELIBR, SWNL] + + - id: 3 + name: Consortium Services + file: 03_consortium_services.yaml + count: 5 + standards: [FAST, ORCID, ROR, GRID, RINGGOLD] + notes: "GRID is deprecated, superseded by ROR" + + - id: 4 + name: Art & Cultural Heritage + file: 04_art_cultural_heritage.yaml + count: 12 + standards: [ULAN, AAT, TGN, RKD, RISM, CERL, ACMI, AGORHA, MET, BRITISHMUSEUM, PHILAMUSEUM, RA] + + - id: 5 + name: Archives & Manuscripts + file: 05_archives_manuscripts.yaml + count: 4 + standards: [ARCHON, SCHOENBERG, PINAKES, FRANCEARCHIVES] + + - id: 6 + name: National Quality Standards + file: 06_national_quality_standards.yaml + count: 2 + standards: [MUSEUMNORM, MUSEOFILE] + + - id: 7 + name: Web / Open Data + file: 07_web_open_data.yaml + count: 5 + standards: [WIKIDATA, OPENSTREETMAP, GEONAMES, FREEBASE, DBPEDIA] + notes: "FREEBASE is deprecated, data migrated to Wikidata" + + - id: 8 + name: Religious / Ecclesiastical + file: 08_religious_ecclesiastical.yaml + count: 1 + standards: [VATICAN] + + - id: 9 + name: Encyclopedias / Reference Works + file: 09_encyclopedias.yaml + count: 6 + standards: [BRITANNICA, BROCKHAUS, LAROUSSE, TRECCANI, GRE, SNL] + + - id: 10 + name: Architecture & Buildings + file: 10_architecture_buildings.yaml + count: 2 + standards: [STRUCTURAE, ARCHINFO] + + - id: 11 + name: Social Media + file: 11_social_media.yaml + count: 5 + standards: [FACEBOOK, TWITTER, INSTAGRAM, YOUTUBE, LINKEDIN] + + - id: 12 + name: Commercial / Discovery Platforms + file: 12_commercial_discovery.yaml + count: 5 + standards: [TRIPADVISOR, YELP, FOURSQUARE, GOOGLEMAPS, APPLEMAPS] + + - id: 13 + name: Dutch-Specific + file: 13_dutch_specific.yaml + count: 2 + standards: [KVK, RIJKSCOLLECTIE] + + - id: 14 + name: Legal Entity Registries + file: 14_legal_entity_registries.yaml + count: 5 + standards: [COMPANIES_HOUSE, HANDELSREGISTER, SIREN, ABN, LEI] + + - id: 15 + name: Japanese Identifiers + file: 15_japanese_identifiers.yaml + count: 2 + standards: [NACSISCAT, CINII] + + - id: 16 + name: Botanical Gardens & Zoos + file: 16_botanical_zoos.yaml + count: 4 + standards: [BGCI, WAZA, AZA, EAZA] + + - id: 17 + name: Higher Education & Research + file: 17_higher_education.yaml + count: 3 + standards: [WHED, HESA, IPEDS] + + - id: 18 + name: Numismatic & Philatelic (Collecting) + file: 18_numismatic_philatelic.yaml + count: 7 + standards: [ANS_MANTIS, NGC, PCGS, COLNECT, SCOTT, MICHEL, STANLEY_GIBBONS] + + - id: 19 + name: Monuments & Heritage Sites + file: 19_monuments_heritage_sites.yaml + count: 8 + standards: [UNESCO_WHC, NRHP, NHLE, HES, CADW, RIJKSMONUMENT, MERIMEE, DENKMALLISTE] + + - id: 20 + name: Intangible Heritage + file: 20_intangible_heritage.yaml + count: 2 + standards: [UNESCO_ICH, UNESCO_ICH_GSP] + + - id: 21 + name: Provenance & Art Registry + file: 21_provenance_art_registry.yaml + count: 4 + standards: [ALR, LOSTART, GETTY_PI, LOOTEDART] + + - id: 22 + name: Persistent Identifiers (Digital) + file: 22_persistent_identifiers.yaml + count: 5 + standards: [DOI, HANDLE, ARK, PURL, URN_NBN] + + - id: 23 + name: Heritage NGOs + file: 23_heritage_ngos.yaml + count: 4 + standards: [ICOMOS, EUROPA_NOSTRA, WMF, HERITAGE_GATEWAY] + + - id: 24 + name: Religious Heritage + file: 24_religious_heritage.yaml + count: 4 + standards: [WCD, ARDA, JEWISHGEN, DRH] + + - id: 25 + name: Gastronomy & Culinary Heritage + file: 25_gastronomy_culinary.yaml + count: 4 + standards: [UNESCO_CITY_GASTRONOMY, SLOW_FOOD, IGP, PDO] + +# Standard Type Distribution +type_distribution: + PROPRIETARY_SYSTEM: 34 + COMMERCIAL_SERVICE: 24 + CONSORTIUM_SERVICE: 20 + GOVERNMENT_REGISTRY: 19 + INTERNATIONAL_TREATY: 6 + CROWDSOURCED: 5 + COMMUNITY_NONPROFIT: 5 + OPEN_STANDARD: 4 + ISO_STANDARD: 4 + ACADEMIC_DATABASE: 4 + CONTROLLED_VOCABULARY: 3 + QUALITY_CERTIFICATION: 2 + EXTRACTED_DATA: 1 + +# Scope Distribution +scope_distribution: + GLOBAL: 60 + NATIONAL: 53 + REGIONAL: 13 + INSTITUTIONAL: 5 + +# Domain Distribution +domain_distribution: + NAME_AUTHORITY: 31 + HERITAGE_INSTITUTION: 24 + PERSON: 11 + OBJECT: 10 + HERITAGE_SITE: 10 + UNIVERSAL: 9 + PLACE: 9 + LEGAL_ENTITY: 6 + SOCIAL_MEDIA: 5 + DIGITAL_OBJECT: 5 + INTANGIBLE_HERITAGE: 3 + SUBJECT_TERM: 2 + PRODUCT: 2 + COLLECTION: 2 + BUILDING: 2 + +# GLAMORCUBESFIXPHDNT Coverage +# Shows which custodian types are covered by at least one identifier standard +glamorcubesfixphdnt_coverage: + G: true # Galleries - covered by ISIL, ULAN, etc. + L: true # Libraries - covered by ISIL, VIAF, etc. + A: true # Archives - covered by ISIL, ARCHON, etc. + M: true # Museums - covered by ISIL, MUSEUMNORM, etc. + O: true # Official institutions - covered by ISIL + R: true # Research centers - covered by ROR, ORCID + C: true # Corporations - covered by KVK, LEI + U: false # Unknown - no specific standard + B: true # Botanical/Zoos - covered by BGCI, WAZA + E: true # Education providers - covered by WHED, IPEDS + S: true # Collecting societies - covered by numismatic/philatelic standards + F: true # Features/Monuments - covered by UNESCO_WHC, NRHP, etc. + I: true # Intangible heritage - covered by UNESCO_ICH + X: false # Mixed - no specific standard (uses multiple) + P: false # Personal collections - no specific standard + H: true # Holy sites - covered by WCD, VATICAN + D: true # Digital platforms - covered by DOI, ARK, etc. + N: true # NGOs - covered by ICOMOS, WMF + T: true # Taste/smell heritage - covered by IGP, PDO, SLOW_FOOD diff --git a/frontend/public/schemas/20251121/linkml/modules/classes/Standard.yaml b/frontend/public/schemas/20251121/linkml/modules/classes/Standard.yaml index dc30ee89de..ec928060ec 100644 --- a/frontend/public/schemas/20251121/linkml/modules/classes/Standard.yaml +++ b/frontend/public/schemas/20251121/linkml/modules/classes/Standard.yaml @@ -361,6 +361,103 @@ classes: - ORCID: CC0 (public domain) - Wikidata: CC0 range: uri + + applicable_schema_types: + slot_uri: schema:about + description: >- + Schema.org classes that this identifier standard applies to. + + This enables semantic querying like "which identifiers apply to Museums?" + + Examples: + - ISIL: [schema:Library, schema:Museum, schema:ArchiveOrganization, + schema:ResearchOrganization, schema:GovernmentOrganization] + - ORCID: [schema:Person] + - ROR: [schema:ResearchOrganization, schema:EducationalOrganization] + - KvK: [schema:Organization] (all legal entity types) + + Uses Schema.org class URIs from https://schema.org/ + range: uriorcurie + multivalued: true + + wikidata_id: + slot_uri: schema:sameAs + description: >- + Wikidata Q-identifier for this standard. + + Examples: + - ISIL: Q470458 + - VIAF: Q54919 + - ORCID: Q51044 + + Enables linking to Wikidata knowledge graph. + range: uriorcurie + + glamorcubesfixphdnt_types: + slot_uri: schema:applicableCategory + description: >- + GLAMORCUBESFIXPHDNT custodian type codes this standard applies to. + + Single-letter codes: + - G: Galleries + - L: Libraries + - A: Archives + - M: Museums + - O: Official institutions + - R: Research centers + - C: Corporations + - U: Unknown + - B: Botanical gardens/Zoos + - E: Education providers + - S: Collecting societies + - F: Features/Monuments + - I: Intangible heritage groups + - X: Mixed + - P: Personal collections + - H: Holy sites + - D: Digital platforms + - N: NGOs + - T: Taste/smell heritage + + Examples: + - ISIL: ["L", "A", "M", "R", "O", "G"] + - BGCI: ["B"] + - UNESCO_WHC: ["F", "H"] + range: string + multivalued: true + + category: + slot_uri: schema:category + description: >- + Category grouping for this identifier standard. + + Categories: + 1. ISO Standards + 2. Authority Files (National Libraries) + 3. Consortium Services + 4. Domain-Specific Art/Cultural Heritage + 5. Archives/Manuscripts + 6. National Quality Standards + 7. Web/Open Data + 8. Religious/Ecclesiastical + 9. Encyclopedias/Reference Works + 10. Architecture/Buildings + 11. Social Media/Web Presence + 12. Commercial/Discovery Platforms + 13. Dutch-Specific + 14. Legal Entity Registries + 15. Japanese Identifiers + 16. Botanical Gardens/Zoos + 17. Higher Education/Research + 18. Numismatic/Philatelic (Collecting) + 19. Monuments/Heritage Sites + 20. Intangible Heritage + 21. Provenance/Art Registry + 22. Persistent Identifiers (Digital) + 23. Heritage NGOs + 24. Religious Heritage + 25. Gastronomy/Culinary Heritage + range: string IdentifierFormat: class_uri: schema:PropertyValue @@ -518,6 +615,7 @@ enums: - VIAF (OCLC + 37 national libraries) - ORCID (open consortium) - ROR (community-governed) + - FAST (OCLC subject headings) PROPRIETARY_SYSTEM: description: >- @@ -532,6 +630,7 @@ enums: - Wikidata Q-IDs (Wikimedia Foundation) - GND (Deutsche Nationalbibliothek) - LCNAF (Library of Congress) + - ULAN (Getty Research Institute) NATIONAL_STANDARD: description: >- @@ -556,7 +655,7 @@ enums: - Community consensus-driven Examples: - - DOI (before ISO 26324) + - DOI (before ISO formalization) - Handle System QUALITY_STANDARD: @@ -584,6 +683,146 @@ enums: Note: Institutions certified under quality standards may be listed in a register (e.g., Museumregister Nederland), but this is certification status, not an identifier assignment. + + COMMERCIAL_SERVICE: + description: >- + Commercial platform providing identifier-like functionality. + + Characteristics: + - For-profit company operates service + - Terms of service controlled by company + - May have API restrictions or costs + + Examples: + - TripAdvisor (review platform) + - Google Maps (place IDs) + - LinkedIn (profile URLs) + - Yelp (business IDs) + + GOVERNMENT_REGISTRY: + description: >- + Official government registry assigning identifiers. + + Characteristics: + - Operated by government agency + - Legal authority for registration + - Official records + + Examples: + - NRHP (US National Register of Historic Places) + - NHLE (UK National Heritage List for England) + - Rijksmonument (NL heritage registry) + - Companies House (UK company registration) + + INTERNATIONAL_TREATY: + description: >- + Identifier system established by international treaty or convention. + + Characteristics: + - Governed by international body (UN, UNESCO) + - Treaty-based legal framework + - Intergovernmental oversight + + Examples: + - UNESCO World Heritage (WHC) + - UNESCO Intangible Cultural Heritage + - IGP/PDO (EU geographic indications) + + CROWDSOURCED: + description: >- + Community-edited open data platform. + + Characteristics: + - Open editing by public + - Community governance + - CC0 or open license + + Examples: + - Wikidata + - OpenStreetMap + - GeoNames + + COMMUNITY_NONPROFIT: + description: >- + Non-profit organization maintaining identifier system. + + Characteristics: + - Non-profit governance + - Community-focused mission + - Often membership-based + + Examples: + - ICOMOS (heritage sites) + - World Monuments Fund + - Europa Nostra + + OPEN_STANDARD: + description: >- + Open technical standard for persistent identifiers. + + Characteristics: + - Technical specification published openly + - Multiple implementations allowed + - Community or standards body governance + + Examples: + - DOI (Digital Object Identifier) + - Handle System + - ARK (Archival Resource Key) + - PURL + + ACADEMIC_DATABASE: + description: >- + Academic or research database with identifier system. + + Characteristics: + - Academic institution maintains + - Scholarly/research focus + - Often freely accessible + + Examples: + - CiNii (Japan scholarly database) + - IPEDS (US education statistics) + - Database of Religious History + + CONTROLLED_VOCABULARY: + description: >- + Controlled vocabulary or thesaurus providing term identifiers. + + Characteristics: + - Standardized terminology + - Hierarchical relationships + - Used for subject access + + Examples: + - AAT (Art & Architecture Thesaurus) + - TGN (Getty Thesaurus of Geographic Names) + - FAST (Faceted Application of Subject Terminology) + + QUALITY_CERTIFICATION: + description: >- + Quality certification or accreditation system. + + Characteristics: + - Certification body assesses compliance + - Standards-based assessment + - Grants certification status + + Examples: + - Museumnorm (NL museum quality) + - MusĂŠofile (FR museum registry) + + EXTRACTED_DATA: + description: >- + Identifiers extracted from other data sources. + + Characteristics: + - Derived from primary sources (Wikipedia, etc.) + - Structured data extraction + - Often linked data focus + + Examples: + - DBpedia (extracted from Wikipedia) GovernanceModelEnum: description: >- @@ -600,7 +839,7 @@ enums: SINGLE_AUTHORITY: description: >- Single organization makes all governance decisions. - Examples: Wikidata (Wikimedia Foundation) + Examples: Wikidata (Wikimedia Foundation), national libraries COMMUNITY_CONSENSUS: description: >- Community-driven decision making (RFCs, votes). @@ -609,6 +848,30 @@ enums: description: >- Governing board elected by member organizations. Examples: OCLC, ORCID + PROPRIETARY: + description: >- + Commercial entity controls governance unilaterally. + Examples: TripAdvisor, Google Maps, Facebook + GOVERNMENT: + description: >- + Government agency controls governance. + Examples: NRHP (National Park Service), Companies House + ACADEMIC: + description: >- + Academic institution or consortium governs. + Examples: CiNii (NII Japan), DBpedia (Leipzig University) + INTERGOVERNMENTAL: + description: >- + International/intergovernmental body governs. + Examples: UNESCO (World Heritage), European Union (IGP/PDO) + COMMUNITY: + description: >- + Open community governance with consensus-based decisions. + Examples: OpenStreetMap, GeoNames + INDUSTRY_BODY: + description: >- + Industry association or professional body governs. + Examples: WAZA (zoos), BGCI (botanical gardens) StandardScopeTypeEnum: description: Classification of geographic scope for standards @@ -620,15 +883,19 @@ enums: NATIONAL: description: >- Standard applies to a single country. - Examples: KvK (NL), Companies House (UK) + Examples: KvK (NL), Companies House (UK), NRHP (US) REGIONAL: description: >- Standard applies to a region or group of countries. - Examples: NUTS (EU), LEI (global but with regional allocators) + Examples: NUTS (EU), LEI (global but with regional allocators), IGP/PDO (EU) DOMAIN_SPECIFIC: description: >- Standard limited to specific institution types regardless of geography. - Examples: IGSN (geological samples) + Examples: IGSN (geological samples), BGCI (botanical gardens) + INSTITUTIONAL: + description: >- + Standard applies to a single institution or organization. + Examples: Museum-specific collection IDs, institutional repositories IdentifierDomainEnum: description: Classification of what entities an identifier applies to @@ -659,7 +926,7 @@ enums: NAME_AUTHORITY: description: >- Identifies authority records for names. - Examples: VIAF, LCNAF, GND + Examples: VIAF, LCNAF, GND, BnF RESEARCH_ORG: description: >- Identifies research organizations specifically. @@ -667,7 +934,7 @@ enums: LEGAL_ENTITY: description: >- Identifies legal entities for financial/regulatory purposes. - Examples: LEI (Legal Entity Identifier) + Examples: LEI (Legal Entity Identifier), KvK, Companies House COLLECTION: description: >- Identifies collections or datasets. @@ -675,8 +942,40 @@ enums: PLACE: description: >- Identifies geographic places. - Examples: GeoNames ID, What3Words + Examples: GeoNames ID, What3Words, OpenStreetMap BUILDING: description: >- Identifies buildings and architectural structures. Examples: Structurae, archINFORM + HERITAGE_SITE: + description: >- + Identifies protected heritage sites and monuments. + Examples: UNESCO World Heritage, NRHP, NHLE, Rijksmonument + OBJECT: + description: >- + Identifies physical objects (artworks, artifacts, specimens). + Examples: Museum object IDs, ACMI, NGC (coins) + UNIVERSAL: + description: >- + Applies to any entity type (universal identifier). + Examples: Wikidata Q-IDs, DBpedia URIs + SOCIAL_MEDIA: + description: >- + Social media profile or page identifiers. + Examples: Facebook page ID, Twitter handle, Instagram username + DIGITAL_OBJECT: + description: >- + Identifies digital objects and persistent identifiers. + Examples: DOI, Handle, ARK, PURL, URN:NBN + INTANGIBLE_HERITAGE: + description: >- + Identifies intangible cultural heritage elements. + Examples: UNESCO ICH, UNESCO ICH Good Safeguarding Practices + SUBJECT_TERM: + description: >- + Identifies subject terms in controlled vocabularies. + Examples: AAT, FAST, TGN + PRODUCT: + description: >- + Identifies products with geographic or quality designations. + Examples: IGP, PDO (Protected Designation of Origin) diff --git a/frontend/public/schemas/20251121/linkml/modules/enums/IdentifierStandardEnum.yaml b/frontend/public/schemas/20251121/linkml/modules/enums/IdentifierStandardEnum.yaml index e5d6f283db..1a51c49ce6 100644 --- a/frontend/public/schemas/20251121/linkml/modules/enums/IdentifierStandardEnum.yaml +++ b/frontend/public/schemas/20251121/linkml/modules/enums/IdentifierStandardEnum.yaml @@ -1,4 +1,32 @@ -# Identifier Standard Enum +# ============================================================================ +# DEPRECATED - USE INSTANCE DATA INSTEAD +# ============================================================================ +# +# This enum file is DEPRECATED as of 2025-11-28. +# +# The identifier standards have been migrated to rich instance data files: +# Location: schemas/20251121/linkml/instances/identifier_standards/ +# +# Benefits of instance data: +# - Rich metadata (descriptions, formats, regex patterns, lookup URLs) +# - Wikidata identifiers for linked data integration +# - Schema.org type mappings (applicable_schema_types) +# - GLAMORCUBESFIXPHDNT type mappings +# - Deprecation tracking with successor references +# - Format variants with canonical flags +# +# Migration guide: +# 1. Load _index.yaml for category listing and statistics +# 2. Load individual category files (01_iso_standards.yaml, etc.) +# 3. Reference Standard.yaml for class definition and enum values +# +# See also: +# - Standard.yaml - Standard class with StandardTypeEnum, GovernanceModelEnum, etc. +# - instances/identifier_standards/_index.yaml - Index with 131 standards across 25 categories +# +# ============================================================================ +# +# Identifier Standard Enum (DEPRECATED - kept for backwards compatibility) # Comprehensive enumeration of identifier standards for heritage institutions # # Covers ALL GLAMORCUBESFIXPHDNT custodian types: @@ -62,6 +90,7 @@ title: Identifier Standard Enumeration prefixes: linkml: https://w3id.org/linkml/ wd: http://www.wikidata.org/entity/ + schema: http://schema.org/ imports: - linkml:types @@ -112,6 +141,10 @@ enums: Wikidata: Q470458 meaning: wd:Q470458 + annotations: + schema_range: >- + schema:Library, schema:Museum, schema:ArchiveOrganization, + schema:ResearchOrganization, schema:GovernmentOrganization ISNI: description: >- @@ -125,6 +158,8 @@ enums: Wikidata: Q423048 meaning: wd:Q423048 + annotations: + schema_range: schema:Organization, schema:Person # ============================================ # 2. AUTHORITY FILES - National Libraries @@ -143,6 +178,8 @@ enums: Wikidata: Q54919 meaning: wd:Q54919 + annotations: + schema_range: schema:Organization, schema:Person GND: description: >- @@ -157,6 +194,8 @@ enums: Wikidata: Q36578 meaning: wd:Q36578 + annotations: + schema_range: schema:Organization, schema:Person, schema:CreativeWork LCNAF: description: >- @@ -170,6 +209,8 @@ enums: Wikidata: Q13219454 meaning: wd:Q13219454 + annotations: + schema_range: schema:Organization, schema:Person BNF: description: >- @@ -183,6 +224,8 @@ enums: Wikidata: Q19938912 meaning: wd:Q19938912 + annotations: + schema_range: schema:Organization, schema:Person, schema:CreativeWork NTA: description: >- @@ -196,6 +239,8 @@ enums: Wikidata: Q1879979 meaning: wd:Q1879979 + annotations: + schema_range: schema:Organization, schema:Person NDL: description: >- @@ -208,6 +253,8 @@ enums: Wikidata: Q477675 meaning: wd:Q477675 + annotations: + schema_range: schema:Organization, schema:Person NLA: description: >- @@ -219,6 +266,8 @@ enums: Australian national authority file. meaning: wd:Q623578 + annotations: + schema_range: schema:Organization, schema:Person BNE: description: >- @@ -231,6 +280,8 @@ enums: Wikidata: Q50424308 meaning: wd:Q50424308 + annotations: + schema_range: schema:Organization, schema:Person NLI: description: >- @@ -241,6 +292,8 @@ enums: Israeli national authority file. meaning: wd:Q188915 + annotations: + schema_range: schema:Organization, schema:Person NUKAT: description: >- @@ -253,6 +306,8 @@ enums: Wikidata: Q11789729 meaning: wd:Q11789729 + annotations: + schema_range: schema:Organization, schema:Person NKC: description: >- @@ -263,6 +318,8 @@ enums: Czech national authority file. meaning: wd:Q1967876 + annotations: + schema_range: schema:Organization, schema:Person SELIBR: description: >- @@ -276,6 +333,8 @@ enums: Wikidata: Q1798125 meaning: wd:Q1798125 + annotations: + schema_range: schema:Organization, schema:Person NORAF: description: >- @@ -286,6 +345,8 @@ enums: Norwegian national authority file (BIBSYS). meaning: wd:Q3935049 + annotations: + schema_range: schema:Organization, schema:Person BANQ: description: >- @@ -296,6 +357,8 @@ enums: Quebec national library authority file. meaning: wd:Q2864635 + annotations: + schema_range: schema:Organization, schema:Person CANTIC: description: >- @@ -306,6 +369,8 @@ enums: Catalan authority file. meaning: wd:Q1024340 + annotations: + schema_range: schema:Organization, schema:Person EGAXA: description: >- @@ -316,6 +381,8 @@ enums: Greek national authority file. meaning: wd:Q638839 + annotations: + schema_range: schema:Organization, schema:Person NSK: description: >- @@ -326,6 +393,8 @@ enums: Croatian national authority file. meaning: wd:Q1051131 + annotations: + schema_range: schema:Organization, schema:Person NLP: description: >- @@ -336,6 +405,8 @@ enums: Polish national library authority file. meaning: wd:Q164003 + annotations: + schema_range: schema:Organization, schema:Person PTBNP: description: >- @@ -346,6 +417,8 @@ enums: Portuguese national library authority file. meaning: wd:Q245966 + annotations: + schema_range: schema:Organization, schema:Person LAC: description: >- @@ -356,6 +429,8 @@ enums: Canadian national authority file. meaning: wd:Q1036948 + annotations: + schema_range: schema:Organization, schema:Person LNB: description: >- @@ -366,6 +441,8 @@ enums: Latvian national authority file. meaning: wd:Q663254 + annotations: + schema_range: schema:Organization, schema:Person LNL: description: >- @@ -376,6 +453,8 @@ enums: Lithuanian national authority file. meaning: wd:Q1810265 + annotations: + schema_range: schema:Organization, schema:Person NLK: description: >- @@ -386,6 +465,8 @@ enums: Korean national authority file. meaning: wd:Q487262 + annotations: + schema_range: schema:Organization, schema:Person NLR: description: >- @@ -393,6 +474,8 @@ enums: Maintained by Russian National Library (Saint Petersburg). meaning: wd:Q631802 + annotations: + schema_range: schema:Organization, schema:Person ICCU: description: >- @@ -405,6 +488,8 @@ enums: Wikidata: Q576951 meaning: wd:Q576951 + annotations: + schema_range: schema:Organization, schema:Person IDREF: description: >- @@ -418,6 +503,8 @@ enums: Wikidata: Q47757534 meaning: wd:Q47757534 + annotations: + schema_range: schema:Organization, schema:Person, schema:EducationalOrganization RERO: description: >- @@ -428,6 +515,8 @@ enums: Western Switzerland library network. meaning: wd:Q2135731 + annotations: + schema_range: schema:Organization, schema:Person SWNL: description: >- @@ -435,6 +524,8 @@ enums: Helveticat - Swiss National Library catalog. meaning: wd:Q193563 + annotations: + schema_range: schema:Organization, schema:Person # ============================================ # 3. CONSORTIUM / AGGREGATION SERVICES @@ -452,6 +543,8 @@ enums: Wikidata: Q3294867 meaning: wd:Q3294867 + annotations: + schema_range: schema:DefinedTerm ORCID: description: >- @@ -466,6 +559,8 @@ enums: Wikidata: Q51044 meaning: wd:Q51044 + annotations: + schema_range: schema:Person ROR: description: >- @@ -480,6 +575,8 @@ enums: Wikidata: Q63565260 meaning: wd:Q63565260 + annotations: + schema_range: schema:ResearchOrganization, schema:EducationalOrganization GRID: description: >- @@ -492,6 +589,8 @@ enums: Wikidata: Q27768150 meaning: wd:Q27768150 + annotations: + schema_range: schema:ResearchOrganization RINGGOLD: description: >- @@ -504,6 +603,8 @@ enums: Wikidata: Q7335327 meaning: wd:Q7335327 + annotations: + schema_range: schema:Organization # ============================================ # 4. DOMAIN-SPECIFIC - Art & Cultural Heritage @@ -521,6 +622,8 @@ enums: Wikidata: Q2494649 meaning: wd:Q2494649 + annotations: + schema_range: schema:Person, schema:Organization AAT: description: >- @@ -533,6 +636,8 @@ enums: Wikidata: Q611299 meaning: wd:Q611299 + annotations: + schema_range: schema:DefinedTerm TGN: description: >- @@ -545,6 +650,8 @@ enums: Wikidata: Q1520117 meaning: wd:Q1520117 + annotations: + schema_range: schema:Place RKD: description: >- @@ -558,6 +665,8 @@ enums: Wikidata: Q17299517 meaning: wd:Q17299517 + annotations: + schema_range: schema:Person RISM: description: >- @@ -571,6 +680,8 @@ enums: Wikidata: Q219137 meaning: wd:Q219137 + annotations: + schema_range: schema:Organization, schema:MusicGroup CERL: description: >- @@ -583,6 +694,8 @@ enums: Wikidata: Q1542072 meaning: wd:Q1542072 + annotations: + schema_range: schema:Organization, schema:Library ACMI: description: >- @@ -593,6 +706,8 @@ enums: Australian film and media collections. meaning: wd:Q4651706 + annotations: + schema_range: schema:Person, schema:Organization AGORHA: description: >- @@ -605,6 +720,8 @@ enums: Wikidata: Q55012201 meaning: wd:Q55012201 + annotations: + schema_range: schema:Person, schema:Organization MET: description: >- @@ -615,6 +732,8 @@ enums: Artists and creators in Met collection. meaning: wd:Q160236 + annotations: + schema_range: schema:Person, schema:Organization BRITISHMUSEUM: description: >- @@ -625,6 +744,8 @@ enums: British Museum collection database. meaning: wd:Q6373 + annotations: + schema_range: schema:Person, schema:Organization PHILAMUSEUM: description: >- @@ -635,6 +756,8 @@ enums: Philadelphia Museum of Art collections database. meaning: wd:Q510324 + annotations: + schema_range: schema:Person, schema:Organization RA: description: >- @@ -645,6 +768,8 @@ enums: Royal Academy of Arts (London) collections. meaning: wd:Q270920 + annotations: + schema_range: schema:Person, schema:Organization # ============================================ # 5. ARCHIVES / MANUSCRIPTS @@ -660,6 +785,8 @@ enums: Wikidata: Q75558697 meaning: wd:Q75558697 + annotations: + schema_range: schema:ArchiveOrganization SCHOENBERG: description: >- diff --git a/frontend/src/pages/NDEStatsPage.css b/frontend/src/pages/NDEStatsPage.css index d00e6fcbc0..be3432f75b 100644 --- a/frontend/src/pages/NDEStatsPage.css +++ b/frontend/src/pages/NDEStatsPage.css @@ -78,6 +78,13 @@ font-weight: 500; } +.card-subtext { + font-size: 0.75rem; + color: #2ecc71; + margin-top: 0.25rem; + font-weight: 600; +} + /* Charts Section */ .charts-section { max-width: 1200px; diff --git a/frontend/src/pages/NDEStatsPage.tsx b/frontend/src/pages/NDEStatsPage.tsx index 78774bd38b..c7fde00e67 100644 --- a/frontend/src/pages/NDEStatsPage.tsx +++ b/frontend/src/pages/NDEStatsPage.tsx @@ -79,6 +79,13 @@ interface GoogleMapsCoverage { percentage: number; } +interface EnrichmentSource { + source: string; + count: number; + percentage: number; + color: string; +} + interface TimelineData { decade: number; count: number; @@ -103,6 +110,8 @@ interface StatsData { total_entries: number; summary: { total_institutions: number; + enriched?: number; + not_enriched?: number; with_coordinates: number; with_wikidata: number; with_google_maps?: number; @@ -116,6 +125,7 @@ interface StatsData { top_cities: CityData[]; wikidata_types: WikidataType[]; enrichment_status: EnrichmentStatus[]; + enrichment_sources?: EnrichmentSource[]; identifier_coverage: IdentifierCoverage[]; google_maps_coverage?: GoogleMapsCoverage[]; founding_timeline: TimelineData[]; @@ -1053,8 +1063,9 @@ export default function NDEStatsPage() {