Add script to validate KB library entries and generate enrichment report
- Implemented a Python script to validate KB library YAML files for required fields and data quality. - Analyzed enrichment coverage from Wikidata and Google Maps, generating statistics. - Created a comprehensive markdown report summarizing validation results and enrichment quality. - Included error handling for file loading and validation processes. - Generated JSON statistics for further analysis.
This commit is contained in:
parent
5cdce584b2
commit
30162e6526
286 changed files with 40794 additions and 2725 deletions
349
.opencode/DATA_PRESERVATION_RULES.md
Normal file
349
.opencode/DATA_PRESERVATION_RULES.md
Normal file
|
|
@ -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.
|
||||
74
AGENTS.md
74
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.**
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
205
data/nde/enriched/entries/0130_natuurmuseum_fryslan.yaml
Normal file
205
data/nde/enriched/entries/0130_natuurmuseum_fryslan.yaml
Normal file
|
|
@ -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.
|
||||
|
|
@ -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
|
||||
233
data/nde/enriched/entries/0137_schokkervereniging.yaml
Normal file
233
data/nde/enriched/entries/0137_schokkervereniging.yaml
Normal file
|
|
@ -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).
|
||||
|
|
@ -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
|
||||
119
data/nde/enriched/entries/0139_de_hollandse_cirkel.yaml
Normal file
119
data/nde/enriched/entries/0139_de_hollandse_cirkel.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
124
data/nde/enriched/entries/0182_historische_kring_elden.yaml
Normal file
124
data/nde/enriched/entries/0182_historische_kring_elden.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -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
|
||||
151
data/nde/enriched/entries/0187_stichting_warmoes.yaml
Normal file
151
data/nde/enriched/entries/0187_stichting_warmoes.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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)
|
||||
|
|
@ -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
|
||||
157
data/nde/enriched/entries/0203_stichting_korpora.yaml
Normal file
157
data/nde/enriched/entries/0203_stichting_korpora.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
140
data/nde/enriched/entries/0273_streekarchief_bommelerwaard.yaml
Normal file
140
data/nde/enriched/entries/0273_streekarchief_bommelerwaard.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -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
|
||||
186
data/nde/enriched/entries/0278_tempel_kerkmuseum.yaml
Normal file
186
data/nde/enriched/entries/0278_tempel_kerkmuseum.yaml
Normal file
|
|
@ -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
|
||||
|
|
@ -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)
|
||||
|
|
@ -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
|
||||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
232
data/nde/enriched/entries/1353_kb_isil.yaml
Normal file
232
data/nde/enriched/entries/1353_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
230
data/nde/enriched/entries/1354_kb_isil.yaml
Normal file
230
data/nde/enriched/entries/1354_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
202
data/nde/enriched/entries/1355_kb_isil.yaml
Normal file
202
data/nde/enriched/entries/1355_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
174
data/nde/enriched/entries/1356_kb_isil.yaml
Normal file
174
data/nde/enriched/entries/1356_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
182
data/nde/enriched/entries/1357_kb_isil.yaml
Normal file
182
data/nde/enriched/entries/1357_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
202
data/nde/enriched/entries/1358_kb_isil.yaml
Normal file
202
data/nde/enriched/entries/1358_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
181
data/nde/enriched/entries/1359_kb_isil.yaml
Normal file
181
data/nde/enriched/entries/1359_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
181
data/nde/enriched/entries/1360_kb_isil.yaml
Normal file
181
data/nde/enriched/entries/1360_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
189
data/nde/enriched/entries/1361_kb_isil.yaml
Normal file
189
data/nde/enriched/entries/1361_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
188
data/nde/enriched/entries/1362_kb_isil.yaml
Normal file
188
data/nde/enriched/entries/1362_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
191
data/nde/enriched/entries/1363_kb_isil.yaml
Normal file
191
data/nde/enriched/entries/1363_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
185
data/nde/enriched/entries/1364_kb_isil.yaml
Normal file
185
data/nde/enriched/entries/1364_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
170
data/nde/enriched/entries/1365_kb_isil.yaml
Normal file
170
data/nde/enriched/entries/1365_kb_isil.yaml
Normal file
|
|
@ -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/
|
||||
135
data/nde/enriched/entries/1366_kb_isil.yaml
Normal file
135
data/nde/enriched/entries/1366_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
132
data/nde/enriched/entries/1367_kb_isil.yaml
Normal file
132
data/nde/enriched/entries/1367_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
192
data/nde/enriched/entries/1368_kb_isil.yaml
Normal file
192
data/nde/enriched/entries/1368_kb_isil.yaml
Normal file
|
|
@ -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'
|
||||
181
data/nde/enriched/entries/1369_kb_isil.yaml
Normal file
181
data/nde/enriched/entries/1369_kb_isil.yaml
Normal file
|
|
@ -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'
|
||||
203
data/nde/enriched/entries/1370_kb_isil.yaml
Normal file
203
data/nde/enriched/entries/1370_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
226
data/nde/enriched/entries/1371_kb_isil.yaml
Normal file
226
data/nde/enriched/entries/1371_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
199
data/nde/enriched/entries/1372_kb_isil.yaml
Normal file
199
data/nde/enriched/entries/1372_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
189
data/nde/enriched/entries/1373_kb_isil.yaml
Normal file
189
data/nde/enriched/entries/1373_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
133
data/nde/enriched/entries/1374_kb_isil.yaml
Normal file
133
data/nde/enriched/entries/1374_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
157
data/nde/enriched/entries/1375_kb_isil.yaml
Normal file
157
data/nde/enriched/entries/1375_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
218
data/nde/enriched/entries/1376_kb_isil.yaml
Normal file
218
data/nde/enriched/entries/1376_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
163
data/nde/enriched/entries/1377_kb_isil.yaml
Normal file
163
data/nde/enriched/entries/1377_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
210
data/nde/enriched/entries/1378_kb_isil.yaml
Normal file
210
data/nde/enriched/entries/1378_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
202
data/nde/enriched/entries/1379_kb_isil.yaml
Normal file
202
data/nde/enriched/entries/1379_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
219
data/nde/enriched/entries/1380_kb_isil.yaml
Normal file
219
data/nde/enriched/entries/1380_kb_isil.yaml
Normal file
|
|
@ -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)
|
||||
177
data/nde/enriched/entries/1381_kb_isil.yaml
Normal file
177
data/nde/enriched/entries/1381_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
166
data/nde/enriched/entries/1382_kb_isil.yaml
Normal file
166
data/nde/enriched/entries/1382_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
162
data/nde/enriched/entries/1383_kb_isil.yaml
Normal file
162
data/nde/enriched/entries/1383_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
160
data/nde/enriched/entries/1384_kb_isil.yaml
Normal file
160
data/nde/enriched/entries/1384_kb_isil.yaml
Normal file
|
|
@ -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
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue