enrich entries
This commit is contained in:
parent
2497e5913f
commit
097d116b72
3089 changed files with 900571 additions and 57153 deletions
266
.opencode/DEPLOYMENT_RULES.md
Normal file
266
.opencode/DEPLOYMENT_RULES.md
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Deployment Rules for AI Agents
|
||||
|
||||
**Last Updated**: 2025-12-01
|
||||
**Status**: MANDATORY for all deployment operations
|
||||
|
||||
---
|
||||
|
||||
## 🚨 CRITICAL: Deployment Method
|
||||
|
||||
**This project uses LOCAL DEPLOYMENT, NOT GitHub Actions.**
|
||||
|
||||
All deployments are executed from the developer's local machine via SSH/rsync to the Hetzner Cloud server.
|
||||
|
||||
---
|
||||
|
||||
## Server Information
|
||||
|
||||
| Property | Value |
|
||||
|----------|-------|
|
||||
| **Provider** | Hetzner Cloud |
|
||||
| **Server Name** | `glam-sparql` |
|
||||
| **IP Address** | `91.98.224.44` |
|
||||
| **SSH User** | `root` |
|
||||
| **Frontend Path** | `/var/www/glam-frontend/` |
|
||||
| **Data Path** | `/mnt/data/` |
|
||||
|
||||
---
|
||||
|
||||
## Deployment Script
|
||||
|
||||
**Location**: `infrastructure/deploy.sh`
|
||||
|
||||
### Usage
|
||||
|
||||
```bash
|
||||
# Deploy frontend only (most common)
|
||||
./infrastructure/deploy.sh --frontend
|
||||
|
||||
# Deploy schema/ontology data only
|
||||
./infrastructure/deploy.sh --data
|
||||
|
||||
# Check server status
|
||||
./infrastructure/deploy.sh --status
|
||||
|
||||
# Deploy everything (infrastructure + data + frontend + reload)
|
||||
./infrastructure/deploy.sh --all
|
||||
```
|
||||
|
||||
### Options Reference
|
||||
|
||||
| Option | Description |
|
||||
|--------|-------------|
|
||||
| `--frontend` | Build and deploy React frontend |
|
||||
| `--data` | Deploy ontology/schema files |
|
||||
| `--infra` | Deploy infrastructure via Terraform |
|
||||
| `--reload` | Reload data into Oxigraph SPARQL server |
|
||||
| `--status` | Check server and service status |
|
||||
| `--all` | Execute all deployment steps |
|
||||
|
||||
---
|
||||
|
||||
## Frontend Deployment Process
|
||||
|
||||
When `--frontend` is executed:
|
||||
|
||||
1. **Build Step** (`frontend/` directory):
|
||||
```bash
|
||||
npm ci # Install dependencies
|
||||
npm run build # Vite production build
|
||||
```
|
||||
|
||||
2. **Schema Sync** (automated in build):
|
||||
```bash
|
||||
# Copies LinkML schemas to public directory
|
||||
rsync schemas/20251121/linkml/ → frontend/public/schemas/20251121/linkml/
|
||||
```
|
||||
|
||||
3. **Manifest Generation** (automated in build):
|
||||
```bash
|
||||
node scripts/generate-schema-manifest.cjs
|
||||
# Creates: frontend/public/schemas/20251121/linkml/manifest.json
|
||||
```
|
||||
|
||||
4. **Deploy to Server**:
|
||||
```bash
|
||||
rsync -avz --progress --delete \
|
||||
frontend/dist/ \
|
||||
root@91.98.224.44:/var/www/glam-frontend/
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Prerequisites
|
||||
|
||||
### Environment Variables
|
||||
|
||||
Required in `.env` file at project root:
|
||||
|
||||
```bash
|
||||
# Hetzner Cloud API Token (required for all deployments)
|
||||
HETZNER_HC_API_TOKEN=your_token_here
|
||||
|
||||
# Optional - domain configuration
|
||||
GLAM_DOMAIN=sparql.glam-ontology.org
|
||||
ADMIN_EMAIL=admin@glam-ontology.org
|
||||
```
|
||||
|
||||
### SSH Access
|
||||
|
||||
- SSH key must be added to Hetzner server
|
||||
- Test connection: `ssh root@91.98.224.44 "echo connected"`
|
||||
|
||||
### Local Dependencies
|
||||
|
||||
- `rsync` (file synchronization)
|
||||
- `jq` (JSON parsing for status checks)
|
||||
- `npm` (for frontend builds)
|
||||
- `terraform` (only for `--infra` option)
|
||||
|
||||
---
|
||||
|
||||
## Common Deployment Scenarios
|
||||
|
||||
### 1. After Frontend Code Changes
|
||||
|
||||
```bash
|
||||
./infrastructure/deploy.sh --frontend
|
||||
```
|
||||
|
||||
**What happens**:
|
||||
- Builds React app with Vite
|
||||
- Syncs LinkML schemas to public directory
|
||||
- Generates schema manifest
|
||||
- Deploys to `/var/www/glam-frontend/`
|
||||
|
||||
### 2. After Schema Changes
|
||||
|
||||
```bash
|
||||
./infrastructure/deploy.sh --data --reload
|
||||
```
|
||||
|
||||
**What happens**:
|
||||
- Syncs ontology files (`.ttl`, `.rdf`, `.owl`, `.jsonld`)
|
||||
- Syncs RDF schemas
|
||||
- Syncs LinkML schemas
|
||||
- Syncs UML diagrams (`.mmd`)
|
||||
- Reloads Oxigraph with new data
|
||||
|
||||
### 3. Full Deployment
|
||||
|
||||
```bash
|
||||
./infrastructure/deploy.sh --all
|
||||
```
|
||||
|
||||
**Use sparingly** - this runs Terraform and may modify infrastructure.
|
||||
|
||||
### 4. Verify Deployment
|
||||
|
||||
```bash
|
||||
./infrastructure/deploy.sh --status
|
||||
```
|
||||
|
||||
**Shows**:
|
||||
- Server status (IP, type, location)
|
||||
- Service status (Oxigraph, Caddy)
|
||||
- SPARQL triple count
|
||||
|
||||
---
|
||||
|
||||
## AI Agent Deployment Rules
|
||||
|
||||
### DO
|
||||
|
||||
- ✅ Use `./infrastructure/deploy.sh --frontend` after frontend changes
|
||||
- ✅ Verify build succeeds locally before deploying
|
||||
- ✅ Run `--status` to confirm deployment success
|
||||
- ✅ Document what was deployed in session summary
|
||||
|
||||
### DO NOT
|
||||
|
||||
- ❌ Push to `main` branch expecting CI/CD (there is none)
|
||||
- ❌ Manually rsync without using the deploy script
|
||||
- ❌ Modify server files directly via SSH
|
||||
- ❌ Use `--all` without explicit user confirmation
|
||||
- ❌ Deploy without testing locally first
|
||||
|
||||
---
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Build Fails
|
||||
|
||||
```bash
|
||||
cd frontend
|
||||
rm -rf node_modules
|
||||
npm ci
|
||||
npm run build
|
||||
```
|
||||
|
||||
### SSH Connection Refused
|
||||
|
||||
```bash
|
||||
# Check server is running
|
||||
./infrastructure/deploy.sh --status
|
||||
|
||||
# Test SSH directly
|
||||
ssh -o ConnectTimeout=5 root@91.98.224.44 "echo connected"
|
||||
```
|
||||
|
||||
### Schema Manifest Missing
|
||||
|
||||
```bash
|
||||
cd frontend
|
||||
node scripts/generate-schema-manifest.cjs
|
||||
# Should create: public/schemas/20251121/linkml/manifest.json
|
||||
```
|
||||
|
||||
### Deployment Stuck
|
||||
|
||||
```bash
|
||||
# Check if rsync is running
|
||||
ps aux | grep rsync
|
||||
|
||||
# Force kill and retry
|
||||
pkill rsync
|
||||
./infrastructure/deploy.sh --frontend
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Post-Deployment Verification
|
||||
|
||||
After any deployment, verify:
|
||||
|
||||
1. **Server Status**:
|
||||
```bash
|
||||
./infrastructure/deploy.sh --status
|
||||
```
|
||||
|
||||
2. **Frontend Accessible**:
|
||||
- Open `http://91.98.224.44` in browser
|
||||
- Check browser console for errors
|
||||
|
||||
3. **SPARQL Endpoint** (if `--data` deployed):
|
||||
```bash
|
||||
curl -X POST -H "Content-Type: application/sparql-query" \
|
||||
-d "SELECT (COUNT(*) AS ?c) WHERE { ?s ?p ?o }" \
|
||||
http://91.98.224.44:7878/query
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Related Documentation
|
||||
|
||||
- **Full Deployment Guide**: `docs/DEPLOYMENT_GUIDE.md`
|
||||
- **Infrastructure Setup**: `infrastructure/README.md`
|
||||
- **Terraform Config**: `infrastructure/terraform/`
|
||||
- **Server Scripts**: `infrastructure/scripts/`
|
||||
|
||||
---
|
||||
|
||||
## Version History
|
||||
|
||||
| Date | Change |
|
||||
|------|--------|
|
||||
| 2025-12-01 | Initial documentation |
|
||||
342
.opencode/GEONAMES_SETTLEMENT_RULES.md
Normal file
342
.opencode/GEONAMES_SETTLEMENT_RULES.md
Normal file
|
|
@ -0,0 +1,342 @@
|
|||
# GeoNames Settlement Standardization Rules
|
||||
|
||||
**Version**: 1.1.0
|
||||
**Effective Date**: 2025-12-01
|
||||
**Last Updated**: 2025-12-01
|
||||
|
||||
## Purpose
|
||||
|
||||
This document defines the rules for standardizing settlement names in GHCID (Global Heritage Custodian Identifier) generation using the GeoNames geographical database.
|
||||
|
||||
## Core Principle
|
||||
|
||||
**ALL settlement names in GHCID must be derived from GeoNames standardized names, not from source data.**
|
||||
|
||||
The GeoNames database serves as the **single source of truth** for:
|
||||
- Settlement names (cities, towns, villages)
|
||||
- Settlement abbreviations/codes
|
||||
- Administrative region codes (admin1)
|
||||
- Geographic coordinates validation
|
||||
|
||||
## Why GeoNames Standardization?
|
||||
|
||||
1. **Consistency**: Same settlement = same GHCID component, regardless of source data variations
|
||||
2. **Disambiguation**: Handles duplicate city names across regions
|
||||
3. **Internationalization**: Provides ASCII-safe names for identifiers
|
||||
4. **Authority**: GeoNames is a well-maintained, CC-licensed geographic database
|
||||
5. **Persistence**: Settlement names don't change frequently, ensuring GHCID stability
|
||||
|
||||
## 🚨 CRITICAL: Feature Code Filtering
|
||||
|
||||
**NEVER use neighborhoods or districts (PPLX) for GHCID generation. ONLY use proper settlements (cities, towns, villages).**
|
||||
|
||||
GeoNames classifies populated places with feature codes. When reverse geocoding coordinates to find a settlement, you MUST filter by feature code.
|
||||
|
||||
### ALLOWED Feature Codes
|
||||
|
||||
| Code | Description | Example |
|
||||
|------|-------------|---------|
|
||||
| **PPL** | Populated place (city/town/village) | Apeldoorn, Hamont, Lelystad |
|
||||
| **PPLA** | Seat of first-order admin division | Provincial capitals |
|
||||
| **PPLA2** | Seat of second-order admin division | Municipal seats |
|
||||
| **PPLA3** | Seat of third-order admin division | District seats |
|
||||
| **PPLA4** | Seat of fourth-order admin division | Sub-district seats |
|
||||
| **PPLC** | Capital of a political entity | Amsterdam, Brussels |
|
||||
| **PPLS** | Populated places (multiple) | Settlement clusters |
|
||||
| **PPLG** | Seat of government | The Hague |
|
||||
|
||||
### EXCLUDED Feature Codes
|
||||
|
||||
| Code | Description | Why Excluded |
|
||||
|------|-------------|--------------|
|
||||
| **PPLX** | Section of populated place | Neighborhoods, districts, quarters (e.g., "Binnenstad", "Amsterdam Binnenstad") |
|
||||
|
||||
### Implementation
|
||||
|
||||
```python
|
||||
VALID_FEATURE_CODES = ('PPL', 'PPLA', 'PPLA2', 'PPLA3', 'PPLA4', 'PPLC', 'PPLS', 'PPLG')
|
||||
|
||||
query = """
|
||||
SELECT name, feature_code, geonames_id, ...
|
||||
FROM cities
|
||||
WHERE country_code = ?
|
||||
AND feature_code IN (?, ?, ?, ?, ?, ?, ?, ?)
|
||||
ORDER BY distance_sq
|
||||
LIMIT 1
|
||||
"""
|
||||
cursor.execute(query, (country_code, *VALID_FEATURE_CODES))
|
||||
```
|
||||
|
||||
### Verification
|
||||
|
||||
Always check `feature_code` in location_resolution metadata:
|
||||
|
||||
```yaml
|
||||
location_resolution:
|
||||
geonames_name: Apeldoorn
|
||||
feature_code: PPL # ← MUST be PPL, PPLA*, PPLC, PPLS, or PPLG
|
||||
```
|
||||
|
||||
**If you see `feature_code: PPLX`**, the GHCID is WRONG and must be regenerated.
|
||||
|
||||
## 🚨 CRITICAL: Country Code Detection
|
||||
|
||||
**Determine country code from entry data BEFORE calling GeoNames reverse geocoding.**
|
||||
|
||||
GeoNames queries are country-specific. Using the wrong country code will return incorrect results.
|
||||
|
||||
### Country Code Resolution Priority
|
||||
|
||||
1. `zcbs_enrichment.country` - Most explicit source
|
||||
2. `location.country` - Direct location field
|
||||
3. `locations[].country` - Array location field
|
||||
4. `original_entry.country` - CSV source field
|
||||
5. `google_maps_enrichment.address` - Parse from address string
|
||||
6. `wikidata_enrichment.located_in.label` - Infer from Wikidata
|
||||
7. Default: `"NL"` (Netherlands) - Only if no other source
|
||||
|
||||
### Example
|
||||
|
||||
```python
|
||||
# Determine country code FIRST
|
||||
country_code = "NL" # Default
|
||||
|
||||
if entry.get('zcbs_enrichment', {}).get('country'):
|
||||
country_code = entry['zcbs_enrichment']['country']
|
||||
elif entry.get('google_maps_enrichment', {}).get('address', ''):
|
||||
address = entry['google_maps_enrichment']['address']
|
||||
if ', Belgium' in address:
|
||||
country_code = "BE"
|
||||
elif ', Germany' in address:
|
||||
country_code = "DE"
|
||||
|
||||
# THEN call reverse geocoding
|
||||
result = reverse_geocode_to_city(latitude, longitude, country_code)
|
||||
```
|
||||
|
||||
## Settlement Resolution Process
|
||||
|
||||
### Step 1: Coordinate-Based Resolution (Preferred)
|
||||
|
||||
When coordinates are available, use reverse geocoding to find the nearest GeoNames settlement:
|
||||
|
||||
```python
|
||||
def resolve_settlement_from_coordinates(latitude: float, longitude: float, country_code: str = "NL") -> dict:
|
||||
"""
|
||||
Find the GeoNames settlement nearest to given coordinates.
|
||||
|
||||
Returns:
|
||||
{
|
||||
'settlement_name': 'Lelystad', # GeoNames standardized name
|
||||
'settlement_code': 'LEL', # 3-letter abbreviation
|
||||
'admin1_code': '16', # GeoNames admin1 code
|
||||
'region_code': 'FL', # ISO 3166-2 region code
|
||||
'geonames_id': 2751792, # GeoNames ID for provenance
|
||||
'distance_km': 0.5 # Distance from coords to settlement center
|
||||
}
|
||||
"""
|
||||
```
|
||||
|
||||
### Step 2: Name-Based Resolution (Fallback)
|
||||
|
||||
When only a settlement name is available (no coordinates), look up in GeoNames:
|
||||
|
||||
```python
|
||||
def resolve_settlement_from_name(name: str, country_code: str = "NL") -> dict:
|
||||
"""
|
||||
Find the GeoNames settlement matching the given name.
|
||||
|
||||
Uses fuzzy matching and disambiguation when multiple matches exist.
|
||||
"""
|
||||
```
|
||||
|
||||
### Step 3: Manual Resolution (Last Resort)
|
||||
|
||||
If GeoNames lookup fails, flag the entry for manual review with:
|
||||
- `settlement_source: MANUAL`
|
||||
- `settlement_needs_review: true`
|
||||
|
||||
## GHCID Settlement Component Rules
|
||||
|
||||
### Format
|
||||
|
||||
The settlement component in GHCID uses a **3-letter uppercase code**:
|
||||
|
||||
```
|
||||
NL-{REGION}-{SETTLEMENT}-{TYPE}-{ABBREV}
|
||||
^^^^^^^^^^^
|
||||
3-letter code from GeoNames
|
||||
```
|
||||
|
||||
### Code Generation Rules
|
||||
|
||||
1. **Single-word settlements**: First 3 letters uppercase
|
||||
- `Amsterdam` → `AMS`
|
||||
- `Rotterdam` → `ROT`
|
||||
- `Lelystad` → `LEL`
|
||||
|
||||
2. **Settlements with Dutch articles** (`de`, `het`, `den`, `'s`):
|
||||
- First letter of article + first 2 letters of main word
|
||||
- `Den Haag` → `DHA`
|
||||
- `'s-Hertogenbosch` → `SHE`
|
||||
- `De Bilt` → `DBI`
|
||||
|
||||
3. **Multi-word settlements** (no article):
|
||||
- First letter of each word (up to 3)
|
||||
- `Nieuw Amsterdam` → `NAM`
|
||||
- `Oud Beijerland` → `OBE`
|
||||
|
||||
4. **GeoNames Disambiguation Database**:
|
||||
- For known problematic settlements, use pre-defined codes from disambiguation table
|
||||
- Example: Both `Zwolle` (OV) and `Zwolle` (LI) exist - use `ZWO` with region for uniqueness
|
||||
|
||||
### Measurement Point for Historical Custodians
|
||||
|
||||
**Rule**: For heritage custodians that no longer exist or have historical coordinates, the **modern-day settlement** (as of 2025-12-01) is used.
|
||||
|
||||
Rationale:
|
||||
- GHCIDs should be stable over time
|
||||
- Historical place names may have changed
|
||||
- Modern settlements are easier to verify and look up
|
||||
- GeoNames reflects current geographic reality
|
||||
|
||||
Example:
|
||||
- A museum that operated 1900-1950 in what was then "Nieuw Land" (before Flevoland province existed)
|
||||
- Modern coordinates fall within Lelystad municipality
|
||||
- GHCID uses `LEL` (Lelystad) as settlement code, not historical name
|
||||
|
||||
## GeoNames Database Integration
|
||||
|
||||
### Database Location
|
||||
|
||||
```
|
||||
/data/reference/geonames.db
|
||||
```
|
||||
|
||||
### Required Tables
|
||||
|
||||
```sql
|
||||
-- Cities/settlements table
|
||||
CREATE TABLE cities (
|
||||
geonames_id INTEGER PRIMARY KEY,
|
||||
name TEXT, -- Local name (may have diacritics)
|
||||
ascii_name TEXT, -- ASCII-safe name for identifiers
|
||||
country_code TEXT, -- ISO 3166-1 alpha-2
|
||||
admin1_code TEXT, -- First-level administrative division
|
||||
admin1_name TEXT, -- Region/province name
|
||||
latitude REAL,
|
||||
longitude REAL,
|
||||
population INTEGER,
|
||||
feature_code TEXT -- PPL, PPLA, PPLC, etc.
|
||||
);
|
||||
|
||||
-- Disambiguation table for problematic settlements
|
||||
CREATE TABLE settlement_codes (
|
||||
geonames_id INTEGER PRIMARY KEY,
|
||||
country_code TEXT,
|
||||
settlement_code TEXT, -- 3-letter code
|
||||
is_primary BOOLEAN, -- Primary code for this settlement
|
||||
notes TEXT
|
||||
);
|
||||
```
|
||||
|
||||
### Admin1 Code Mapping (Netherlands)
|
||||
|
||||
**IMPORTANT**: GeoNames admin1 codes differ from historical numbering. Use this mapping:
|
||||
|
||||
| GeoNames admin1 | Province | ISO 3166-2 |
|
||||
|-----------------|----------|------------|
|
||||
| 01 | Drenthe | NL-DR |
|
||||
| 02 | Friesland | NL-FR |
|
||||
| 03 | Gelderland | NL-GE |
|
||||
| 04 | Groningen | NL-GR |
|
||||
| 05 | Limburg | NL-LI |
|
||||
| 06 | Noord-Brabant | NL-NB |
|
||||
| 07 | Noord-Holland | NL-NH |
|
||||
| 09 | Utrecht | NL-UT |
|
||||
| 10 | Zeeland | NL-ZE |
|
||||
| 11 | Zuid-Holland | NL-ZH |
|
||||
| 15 | Overijssel | NL-OV |
|
||||
| 16 | Flevoland | NL-FL |
|
||||
|
||||
**Note**: Code 08 is not used in Netherlands (was assigned to former region).
|
||||
|
||||
## Validation Requirements
|
||||
|
||||
### Before GHCID Generation
|
||||
|
||||
Every entry MUST have:
|
||||
- [ ] Settlement name resolved via GeoNames
|
||||
- [ ] `geonames_id` recorded in entry metadata
|
||||
- [ ] Settlement code (3-letter) generated consistently
|
||||
- [ ] Admin1/region code mapped correctly
|
||||
|
||||
### Provenance Tracking
|
||||
|
||||
Record GeoNames resolution in entry metadata:
|
||||
|
||||
```yaml
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE # or NAME_LOOKUP or MANUAL
|
||||
geonames_id: 2751792
|
||||
geonames_name: Lelystad
|
||||
settlement_code: LEL
|
||||
admin1_code: "16"
|
||||
region_code: FL
|
||||
resolution_date: "2025-12-01T00:00:00Z"
|
||||
source_coordinates:
|
||||
latitude: 52.52111
|
||||
longitude: 5.43722
|
||||
distance_to_settlement_km: 0.5
|
||||
```
|
||||
|
||||
## Error Handling
|
||||
|
||||
### No GeoNames Match
|
||||
|
||||
If a settlement cannot be resolved:
|
||||
1. Log warning with entry details
|
||||
2. Set `settlement_code: XXX` (unknown)
|
||||
3. Set `settlement_needs_review: true`
|
||||
4. Do NOT skip the entry - generate GHCID with XXX placeholder
|
||||
|
||||
### Multiple GeoNames Matches
|
||||
|
||||
When multiple settlements match a name:
|
||||
1. Use coordinates to disambiguate (if available)
|
||||
2. Use admin1/region context (if available)
|
||||
3. Use population as tiebreaker (prefer larger settlement)
|
||||
4. Flag for manual review if still ambiguous
|
||||
|
||||
### Coordinates Outside Country
|
||||
|
||||
If coordinates fall outside the expected country:
|
||||
1. Log warning
|
||||
2. Use nearest settlement within country
|
||||
3. Flag for manual review
|
||||
|
||||
## Related Documentation
|
||||
|
||||
- `AGENTS.md` - Section on GHCID generation
|
||||
- `docs/PERSISTENT_IDENTIFIERS.md` - Complete GHCID specification
|
||||
- `docs/GHCID_PID_SCHEME.md` - PID scheme details
|
||||
- `scripts/enrich_nde_entries_ghcid.py` - Implementation
|
||||
|
||||
## Changelog
|
||||
|
||||
### v1.1.0 (2025-12-01)
|
||||
- **CRITICAL**: Added feature code filtering rules
|
||||
- MUST filter for PPL, PPLA, PPLA2, PPLA3, PPLA4, PPLC, PPLS, PPLG
|
||||
- MUST exclude PPLX (neighborhoods/districts)
|
||||
- Example: Apeldoorn (PPL) not "Binnenstad" (PPLX)
|
||||
- **CRITICAL**: Added country code detection rules
|
||||
- Must determine country from entry data BEFORE reverse geocoding
|
||||
- Priority: zcbs_enrichment.country > location.country > address parsing
|
||||
- Example: Belgian institutions use BE, not NL
|
||||
- Added Belgium admin1 code mapping (BRU, VLG, WAL)
|
||||
|
||||
### v1.0.0 (2025-12-01)
|
||||
- Initial version
|
||||
- Established GeoNames as authoritative source for settlement standardization
|
||||
- Defined measurement point rule for historical custodians
|
||||
- Documented admin1 code mapping for Netherlands
|
||||
|
|
@ -349,9 +349,289 @@ wc -l file.nt # Count triples
|
|||
|
||||
---
|
||||
|
||||
## Rule 11: SHACL Generation for Modular Schemas
|
||||
|
||||
### The Problem
|
||||
|
||||
`gen-shacl` (LinkML's built-in SHACL generator) **fails on modular schemas** with errors like:
|
||||
|
||||
```
|
||||
KeyError: 'contributing_agency'
|
||||
```
|
||||
|
||||
This is a LinkML bug where:
|
||||
1. `schema_map` is keyed by import paths (e.g., `modules/classes/ContributingAgency`)
|
||||
2. But lookups use schema names (e.g., `contributing_agency`)
|
||||
3. This mismatch causes `KeyError` during `from_schema` resolution
|
||||
|
||||
Other generators (`gen-owl`, `gen-yaml`, `linkml-lint`) work fine because they don't perform this specific lookup.
|
||||
|
||||
### The Solution: Use `scripts/generate_shacl.py`
|
||||
|
||||
We provide a workaround script that:
|
||||
1. Loads schema via `SchemaView` (correctly resolves all imports)
|
||||
2. Merges all classes/slots/enums from imports into main schema
|
||||
3. Clears `from_schema` references that cause the bug
|
||||
4. Excludes built-in types (avoid conflicts with `linkml:types`)
|
||||
5. Writes to temp file and runs `ShaclGenerator`
|
||||
|
||||
### Usage
|
||||
|
||||
```bash
|
||||
# Generate SHACL with default settings (timestamped output)
|
||||
python scripts/generate_shacl.py
|
||||
|
||||
# Generate SHACL with verbose output (shows all steps)
|
||||
python scripts/generate_shacl.py --verbose
|
||||
|
||||
# Generate SHACL to specific file
|
||||
python scripts/generate_shacl.py --output schemas/20251121/shacl/custom_shapes.ttl
|
||||
|
||||
# Use custom schema file
|
||||
python scripts/generate_shacl.py --schema path/to/schema.yaml
|
||||
|
||||
# Write to stdout (for piping)
|
||||
python scripts/generate_shacl.py --stdout
|
||||
```
|
||||
|
||||
### Output Location
|
||||
|
||||
By default, generates timestamped files:
|
||||
```
|
||||
schemas/20251121/shacl/custodian_shacl_{YYYYMMDD}_{HHMMSS}.ttl
|
||||
```
|
||||
|
||||
### What You'll See
|
||||
|
||||
The script produces warnings that are **expected and safe to ignore**:
|
||||
|
||||
```
|
||||
# Inverse slot warnings (schema design issue, doesn't affect SHACL)
|
||||
Range of slot 'collections_under_responsibility' (LegalResponsibilityCollection)
|
||||
does not line with the domain of its inverse (responsible_legal_entity)
|
||||
|
||||
# Unrecognized prefix warnings (prefixes defined in modules, not merged)
|
||||
File "linkml_shacl_xxx.yaml", line 147, col 10: Unrecognized prefix: geosparql
|
||||
```
|
||||
|
||||
These warnings don't prevent SHACL generation from succeeding.
|
||||
|
||||
### Example Output
|
||||
|
||||
```
|
||||
================================================================================
|
||||
SHACL GENERATION (with modular schema workaround)
|
||||
================================================================================
|
||||
Schema: schemas/20251121/linkml/01_custodian_name_modular.yaml
|
||||
Output format: turtle
|
||||
Output file: schemas/20251121/shacl/custodian_shacl_20251201_084946.ttl
|
||||
================================================================================
|
||||
|
||||
Step 1: Loading schema via SchemaView...
|
||||
Loaded schema: heritage-custodian-observation-reconstruction
|
||||
Classes (via imports): 93
|
||||
Slots (via imports): 857
|
||||
Enums (via imports): 51
|
||||
|
||||
Step 2: Merging imported definitions into main schema...
|
||||
Merged 93 classes
|
||||
Merged 857 slots
|
||||
Merged 51 enums
|
||||
Merged 1 types (excluding 19 builtins)
|
||||
|
||||
Step 3: Clearing from_schema references...
|
||||
Cleared 1002 from_schema references
|
||||
|
||||
Step 4: Simplifying imports...
|
||||
Original imports: 253
|
||||
New imports: ['linkml:types']
|
||||
|
||||
Step 5: Writing cleaned schema to temp file...
|
||||
Step 6: Running ShaclGenerator...
|
||||
Generated 14924 lines of SHACL
|
||||
|
||||
Step 7: Writing output...
|
||||
|
||||
================================================================================
|
||||
✅ SHACL GENERATION COMPLETE
|
||||
================================================================================
|
||||
```
|
||||
|
||||
### Validating SHACL Output
|
||||
|
||||
After generation, validate the SHACL file:
|
||||
|
||||
```bash
|
||||
# Load into rdflib and count shapes
|
||||
python3 -c "
|
||||
from rdflib import Graph
|
||||
from rdflib.namespace import SH
|
||||
|
||||
g = Graph()
|
||||
g.parse('schemas/20251121/shacl/custodian_shacl_20251201_084946.ttl', format='turtle')
|
||||
print(f'Triples: {len(g)}')
|
||||
shapes = list(g.subjects(predicate=None, object=SH.NodeShape))
|
||||
print(f'NodeShapes: {len(shapes)}')
|
||||
"
|
||||
```
|
||||
|
||||
### Using SHACL for Validation
|
||||
|
||||
Use `scripts/validate_with_shacl.py` to validate RDF data:
|
||||
|
||||
```bash
|
||||
# Validate Turtle file
|
||||
python scripts/validate_with_shacl.py data.ttl --shapes schemas/20251121/shacl/custodian_shacl_*.ttl
|
||||
|
||||
# Validate JSON-LD file
|
||||
python scripts/validate_with_shacl.py data.jsonld --format jsonld
|
||||
```
|
||||
|
||||
### Why Not Just Use `gen-shacl` Directly?
|
||||
|
||||
**DON'T DO THIS** (it will fail):
|
||||
```bash
|
||||
# ❌ FAILS with KeyError on modular schemas
|
||||
gen-shacl schemas/20251121/linkml/01_custodian_name_modular.yaml
|
||||
```
|
||||
|
||||
**DO THIS INSTEAD**:
|
||||
```bash
|
||||
# ✅ Works via workaround script
|
||||
python scripts/generate_shacl.py
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Rule 12: Inverse Slot RDFS Compliance
|
||||
|
||||
### The Problem
|
||||
|
||||
In RDFS/OWL, inverse properties have strict domain/range requirements:
|
||||
- If property A has `range: ClassX` and `inverse: B`
|
||||
- Then property B **MUST** have `domain: ClassX`
|
||||
|
||||
Violating this creates logically inconsistent RDF graphs and fails RDFS validation.
|
||||
|
||||
### The Solution: Always Declare Domain for Inverse Slots
|
||||
|
||||
**Every slot with an `inverse:` declaration MUST have an explicit `domain:`**
|
||||
|
||||
```yaml
|
||||
# ✅ CORRECT - Both slots have domain/range aligned with inverse
|
||||
slots:
|
||||
collections_under_responsibility:
|
||||
domain: CustodianLegalStatus # ← Domain explicitly declared
|
||||
range: LegalResponsibilityCollection
|
||||
inverse: responsible_legal_entity
|
||||
|
||||
responsible_legal_entity:
|
||||
domain: LegalResponsibilityCollection # ← Must match range of inverse
|
||||
range: CustodianLegalStatus # ← Must match domain of inverse
|
||||
inverse: collections_under_responsibility
|
||||
```
|
||||
|
||||
```yaml
|
||||
# ❌ WRONG - Missing domain violates RDFS
|
||||
slots:
|
||||
collections_under_responsibility:
|
||||
# domain: ??? # ← Missing! RDFS non-compliant
|
||||
range: LegalResponsibilityCollection
|
||||
inverse: responsible_legal_entity
|
||||
```
|
||||
|
||||
### Polymorphic Inverse Slots
|
||||
|
||||
For slots used by multiple classes (polymorphic), create an **abstract base class**:
|
||||
|
||||
```yaml
|
||||
# ✅ CORRECT - Abstract base class for RDFS compliance
|
||||
classes:
|
||||
ReconstructedEntity:
|
||||
abstract: true
|
||||
class_uri: prov:Entity
|
||||
description: "Abstract base for all entities generated by ReconstructionActivity"
|
||||
|
||||
CustodianLegalStatus:
|
||||
is_a: ReconstructedEntity # ← Inherits from abstract base
|
||||
# ...
|
||||
|
||||
CustodianName:
|
||||
is_a: ReconstructedEntity # ← Inherits from abstract base
|
||||
# ...
|
||||
|
||||
slots:
|
||||
generates:
|
||||
domain: ReconstructionActivity
|
||||
range: ReconstructedEntity # ← Abstract base class
|
||||
inverse: was_generated_by
|
||||
|
||||
was_generated_by:
|
||||
domain: ReconstructedEntity # ← Abstract base class
|
||||
range: ReconstructionActivity
|
||||
inverse: generates
|
||||
```
|
||||
|
||||
### Validation Checklist
|
||||
|
||||
Before committing schema changes with inverse slots:
|
||||
|
||||
1. **Every inverse slot pair has explicit domain/range**
|
||||
2. **Domain of slot A = Range of slot B (its inverse)**
|
||||
3. **Range of slot A = Domain of slot B (its inverse)**
|
||||
4. **For polymorphic slots: abstract base class exists and all using classes inherit from it**
|
||||
|
||||
### Quick Reference: Fixed Inverse Pairs
|
||||
|
||||
| Slot A | Domain A | Range A | ↔ | Slot B | Domain B | Range B |
|
||||
|--------|----------|---------|---|--------|----------|---------|
|
||||
| `collections_under_responsibility` | CustodianLegalStatus | LegalResponsibilityCollection | ↔ | `responsible_legal_entity` | LegalResponsibilityCollection | CustodianLegalStatus |
|
||||
| `staff_members` | OrganizationalStructure | PersonObservation | ↔ | `unit_affiliation` | PersonObservation | OrganizationalStructure |
|
||||
| `portal_data_sources` | WebPortal | CollectionManagementSystem | ↔ | `feeds_portal` | CollectionManagementSystem | WebPortal |
|
||||
| `exposed_via_portal` | CustodianCollection | WebPortal | ↔ | `exposes_collections` | WebPortal | CustodianCollection |
|
||||
| `has_observation` | Custodian | CustodianObservation | ↔ | `refers_to_custodian` | CustodianObservation | Custodian |
|
||||
| `identified_by` | Custodian | CustodianIdentifier | ↔ | `identifies_custodian` | CustodianIdentifier | Custodian |
|
||||
| `encompasses` | EncompassingBody | Custodian | ↔ | `encompassing_body` | Custodian | EncompassingBody |
|
||||
| `generates` | ReconstructionActivity | ReconstructedEntity | ↔ | `was_generated_by` | ReconstructedEntity | ReconstructionActivity |
|
||||
| `used` | ReconstructionActivity | CustodianObservation | ↔ | `used_by` | CustodianObservation | ReconstructionActivity |
|
||||
| `affects_organization` | OrganizationalChangeEvent | Custodian | ↔ | `organizational_change_events` | Custodian | OrganizationalChangeEvent |
|
||||
| `platform_of` | DigitalPlatform | Custodian | ↔ | `digital_platform` | Custodian | DigitalPlatform |
|
||||
| `identifies` | CustodianIdentifier | Custodian | ↔ | `identifiers` | Custodian | CustodianIdentifier |
|
||||
| `allocates` | AllocationAgency | CustodianIdentifier | ↔ | `allocated_by` | CustodianIdentifier | AllocationAgency |
|
||||
| `is_legal_status_of` | CustodianLegalStatus | Custodian | ↔ | `legal_status` | Custodian | CustodianLegalStatus |
|
||||
|
||||
### Abstract Base Class: ReconstructedEntity
|
||||
|
||||
Created to ensure RDFS compliance for `generates`/`was_generated_by` inverse pair:
|
||||
|
||||
**File**: `schemas/20251121/linkml/modules/classes/ReconstructedEntity.yaml`
|
||||
|
||||
**Subclasses** (20 classes inherit from ReconstructedEntity):
|
||||
- ArticlesOfAssociation
|
||||
- AuxiliaryDigitalPlatform
|
||||
- AuxiliaryPlace
|
||||
- Budget
|
||||
- CollectionManagementSystem
|
||||
- CustodianAdministration
|
||||
- CustodianArchive
|
||||
- CustodianCollection (and its subclass LegalResponsibilityCollection)
|
||||
- CustodianLegalStatus
|
||||
- CustodianName
|
||||
- CustodianPlace
|
||||
- DigitalPlatform
|
||||
- FeaturePlace
|
||||
- FinancialStatement
|
||||
- GiftShop
|
||||
- InternetOfThings
|
||||
- OrganizationBranch
|
||||
- SocialMediaProfile
|
||||
- WebPortal
|
||||
|
||||
---
|
||||
|
||||
**Status**: ✅ ACTIVE RULES
|
||||
**Version**: 1.0
|
||||
**Last Updated**: 2025-11-22
|
||||
**Version**: 1.2
|
||||
**Last Updated**: 2025-12-01
|
||||
**Applies To**: All LinkML schema work in this project
|
||||
|
||||
**See Also**:
|
||||
|
|
|
|||
314
AGENTS.md
314
AGENTS.md
|
|
@ -395,6 +395,86 @@ grep -c "class " schemas/20251121/uml/mermaid/complete_schema_*.mmd | tail -1
|
|||
|
||||
---
|
||||
|
||||
### Rule 7: Deployment is LOCAL via SSH/rsync (NO CI/CD)
|
||||
|
||||
**🚨 CRITICAL: This project has NO GitHub Actions, NO CI/CD pipelines. ALL deployments are executed LOCALLY via SSH and rsync.**
|
||||
|
||||
**Server Information**:
|
||||
- **Provider**: Hetzner Cloud
|
||||
- **IP Address**: `91.98.224.44`
|
||||
- **SSH User**: `root`
|
||||
- **Frontend Path**: `/var/www/glam-frontend/`
|
||||
- **Data Path**: `/mnt/data/`
|
||||
|
||||
**Deployment Script**: `infrastructure/deploy.sh`
|
||||
|
||||
```bash
|
||||
# Deploy frontend only (most common)
|
||||
./infrastructure/deploy.sh --frontend
|
||||
|
||||
# Deploy data files only
|
||||
./infrastructure/deploy.sh --data
|
||||
|
||||
# Deploy infrastructure configs
|
||||
./infrastructure/deploy.sh --infra
|
||||
|
||||
# Deploy everything
|
||||
./infrastructure/deploy.sh --all
|
||||
|
||||
# Check server status
|
||||
./infrastructure/deploy.sh --status
|
||||
|
||||
# Reload Caddy server
|
||||
./infrastructure/deploy.sh --reload
|
||||
```
|
||||
|
||||
**Prerequisites**:
|
||||
1. `.env` file with `HETZNER_HC_API_TOKEN` (for Hetzner Cloud API)
|
||||
2. SSH access to server (`ssh root@91.98.224.44`)
|
||||
3. Local dependencies installed (`npm`, `node` for frontend builds)
|
||||
|
||||
**Frontend Deployment Process**:
|
||||
```
|
||||
1. npm run build (in frontend/)
|
||||
2. Sync LinkML schemas to frontend/public/schemas/
|
||||
3. Generate manifest.json for schema versions
|
||||
4. rsync build output to server /var/www/glam-frontend/
|
||||
```
|
||||
|
||||
**AI Agent Rules**:
|
||||
|
||||
✅ **DO**:
|
||||
- Use `./infrastructure/deploy.sh --frontend` after frontend changes
|
||||
- Verify deployment with `./infrastructure/deploy.sh --status`
|
||||
- Build frontend locally before deploying (`cd frontend && npm run build`)
|
||||
- Check SSH connectivity before attempting deployment
|
||||
|
||||
❌ **DON'T**:
|
||||
- Create GitHub Actions workflows
|
||||
- Create CI/CD configuration files
|
||||
- Assume automatic deployment on git push
|
||||
- Deploy without building first
|
||||
- Modify server configurations directly (use `--infra` flag)
|
||||
|
||||
**Post-Deployment Verification**:
|
||||
```bash
|
||||
# Check server is responding
|
||||
curl -I https://91.98.224.44
|
||||
|
||||
# SSH and check files
|
||||
ssh root@91.98.224.44 "ls -la /var/www/glam-frontend/"
|
||||
|
||||
# Check Caddy status
|
||||
ssh root@91.98.224.44 "systemctl status caddy"
|
||||
```
|
||||
|
||||
**See**:
|
||||
- `.opencode/DEPLOYMENT_RULES.md` for complete deployment rules
|
||||
- `docs/DEPLOYMENT_GUIDE.md` for comprehensive deployment documentation
|
||||
- `infrastructure/deploy.sh` for script source code
|
||||
|
||||
---
|
||||
|
||||
## Project Overview
|
||||
|
||||
**Goal**: Extract structured data about worldwide GLAMORCUBESFIXPHDNT (Galleries, Libraries, Archives, Museums, Official institutions, Research centers, Corporations, Unknown, Botanical gardens/zoos, Educational providers, Societies, Features, Intangible heritage groups, miXed, Personal collections, Holy sites, Digital platforms, NGOs, Taste/smell heritage) institutions from 139+ Claude conversation JSON files and integrate with authoritative CSV datasets.
|
||||
|
|
@ -1961,6 +2041,240 @@ When multiple institutions generate the same base GHCID, collisions are resolved
|
|||
|
||||
---
|
||||
|
||||
### 🚨 SETTLEMENT STANDARDIZATION: GEONAMES IS AUTHORITATIVE 🚨
|
||||
|
||||
**ALL settlement names in GHCID MUST be derived from GeoNames, not from source data.**
|
||||
|
||||
The GeoNames geographical database (`/data/reference/geonames.db`) is the **single source of truth** for:
|
||||
- Settlement names (cities, towns, villages)
|
||||
- Settlement 3-letter codes
|
||||
- Administrative region codes (admin1 → ISO 3166-2)
|
||||
|
||||
**Why GeoNames?**
|
||||
- **Consistency**: Same coordinates → same settlement → same GHCID component
|
||||
- **Disambiguation**: Handles duplicate settlement names across regions
|
||||
- **Standardization**: Provides ASCII-safe names for identifiers
|
||||
- **Persistence**: Geographic reality is stable, ensuring GHCID stability
|
||||
|
||||
**Settlement Resolution Process**:
|
||||
|
||||
1. **Coordinates Available (Preferred)**: Use reverse geocoding to find nearest GeoNames settlement
|
||||
2. **Name Only (Fallback)**: Look up settlement name in GeoNames with fuzzy matching
|
||||
3. **Manual (Last Resort)**: Flag entry with `settlement_code: XXX` for review
|
||||
|
||||
### 🚨 CRITICAL: GeoNames Feature Code Filtering 🚨
|
||||
|
||||
**NEVER use neighborhoods or districts (PPLX) for GHCID generation. ONLY use proper settlements (cities, towns, villages).**
|
||||
|
||||
GeoNames classifies populated places with feature codes. When reverse geocoding coordinates to find a settlement, you MUST filter by feature code to ensure you get a city/town/village, NOT a neighborhood or district.
|
||||
|
||||
**ALLOWED Feature Codes** (use these for GHCID settlements):
|
||||
|
||||
| Code | Description | Example |
|
||||
|------|-------------|---------|
|
||||
| **PPL** | Populated place (city/town/village) | Apeldoorn, Hamont, Lelystad |
|
||||
| **PPLA** | Seat of first-order admin division | Provincial capitals |
|
||||
| **PPLA2** | Seat of second-order admin division | Municipal seats |
|
||||
| **PPLA3** | Seat of third-order admin division | District seats |
|
||||
| **PPLA4** | Seat of fourth-order admin division | Sub-district seats |
|
||||
| **PPLC** | Capital of a political entity | Amsterdam, Brussels |
|
||||
| **PPLS** | Populated places (multiple) | Settlement clusters |
|
||||
| **PPLG** | Seat of government | The Hague (when different from capital) |
|
||||
|
||||
**EXCLUDED Feature Codes** (NEVER use for GHCID):
|
||||
|
||||
| Code | Description | Why Excluded |
|
||||
|------|-------------|--------------|
|
||||
| **PPLX** | Section of populated place | Neighborhoods, districts, quarters (e.g., "Binnenstad", "Amsterdam Binnenstad") |
|
||||
|
||||
**Example of the Problem**:
|
||||
|
||||
```sql
|
||||
-- BAD: Query without feature code filter returns neighborhoods
|
||||
SELECT name, feature_code, population FROM cities
|
||||
WHERE country_code='NL' ORDER BY distance LIMIT 1;
|
||||
-- Result: "Binnenstad" (PPLX, pop 4,900) ❌ WRONG
|
||||
|
||||
-- GOOD: Query WITH feature code filter returns proper settlements
|
||||
SELECT name, feature_code, population FROM cities
|
||||
WHERE country_code='NL'
|
||||
AND feature_code IN ('PPL', 'PPLA', 'PPLA2', 'PPLA3', 'PPLA4', 'PPLC', 'PPLS', 'PPLG')
|
||||
ORDER BY distance LIMIT 1;
|
||||
-- Result: "Apeldoorn" (PPL, pop 136,670) ✅ CORRECT
|
||||
```
|
||||
|
||||
**Implementation in SQL**:
|
||||
|
||||
```sql
|
||||
-- Correct reverse geocoding query with feature code filter
|
||||
SELECT
|
||||
name, ascii_name, admin1_code, admin1_name,
|
||||
latitude, longitude, geonames_id, population, feature_code,
|
||||
((latitude - ?) * (latitude - ?) + (longitude - ?) * (longitude - ?)) as distance_sq
|
||||
FROM cities
|
||||
WHERE country_code = ?
|
||||
AND feature_code IN ('PPL', 'PPLA', 'PPLA2', 'PPLA3', 'PPLA4', 'PPLC', 'PPLS', 'PPLG')
|
||||
ORDER BY distance_sq
|
||||
LIMIT 1
|
||||
```
|
||||
|
||||
**Verification**: Always check `feature_code` in location_resolution metadata:
|
||||
|
||||
```yaml
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759706
|
||||
geonames_name: Apeldoorn
|
||||
feature_code: PPL # ← MUST be PPL, PPLA, PPLA2, PPLA3, PPLA4, PPLC, PPLS, or PPLG
|
||||
admin1_code: '03'
|
||||
region_code: GE
|
||||
country_code: NL
|
||||
```
|
||||
|
||||
**If you see `feature_code: PPLX`**, the GHCID is WRONG and must be regenerated.
|
||||
|
||||
### Country Code Detection for GeoNames Lookups
|
||||
|
||||
**CRITICAL**: Determine country code from entry data BEFORE calling GeoNames reverse geocoding.
|
||||
|
||||
GeoNames queries are country-specific. Using the wrong country code will return incorrect results or no results.
|
||||
|
||||
**Country Code Resolution Priority**:
|
||||
|
||||
1. `zcbs_enrichment.country` - Most explicit source
|
||||
2. `location.country` - Direct location field
|
||||
3. `locations[].country` - Array location field
|
||||
4. `original_entry.country` - CSV source field
|
||||
5. `google_maps_enrichment.address` - Parse country from address string (", Belgium", ", Germany")
|
||||
6. `wikidata_enrichment.located_in.label` - Infer from Wikidata location
|
||||
7. Default: `"NL"` (Netherlands) - Only if no other source available
|
||||
|
||||
**Example Country Detection Code**:
|
||||
|
||||
```python
|
||||
# Determine country code FIRST
|
||||
country_code = "NL" # Default
|
||||
|
||||
if entry.get('zcbs_enrichment', {}).get('country'):
|
||||
country_code = entry['zcbs_enrichment']['country']
|
||||
elif entry.get('location', {}).get('country'):
|
||||
country_code = entry['location']['country']
|
||||
elif entry.get('google_maps_enrichment', {}).get('address', ''):
|
||||
address = entry['google_maps_enrichment']['address']
|
||||
if ', Belgium' in address or ', België' in address:
|
||||
country_code = "BE"
|
||||
elif ', Germany' in address or ', Deutschland' in address:
|
||||
country_code = "DE"
|
||||
|
||||
# THEN call reverse geocoding with correct country
|
||||
result = reverse_geocode_to_city(latitude, longitude, country_code)
|
||||
```
|
||||
|
||||
**GHCID Settlement Code Format**:
|
||||
|
||||
```
|
||||
NL-{REGION}-{SETTLEMENT}-{TYPE}-{ABBREV}
|
||||
^^^^^^^^^^^
|
||||
3-letter code from GeoNames
|
||||
```
|
||||
|
||||
**Code Generation Rules**:
|
||||
- Single word: First 3 letters → `Amsterdam` = `AMS`, `Lelystad` = `LEL`
|
||||
- Dutch article (`de`, `het`, `den`, `'s`): Article initial + 2 from main word → `Den Haag` = `DHA`
|
||||
- Multi-word: Initials (up to 3) → `Nieuw Amsterdam` = `NAM`
|
||||
|
||||
**Historical Custodians - Measurement Point Rule**:
|
||||
|
||||
For heritage custodians that no longer exist or have historical locations:
|
||||
- Use the **modern-day settlement** (as of 2025-12-01) where the coordinates fall
|
||||
- GeoNames reflects current geographic reality
|
||||
- Historical place names should NOT be used for GHCID generation
|
||||
|
||||
Example: A museum operating 1900-1950 in what is now Lelystad (before Flevoland existed) uses `LEL`, not historical names.
|
||||
|
||||
**Netherlands Admin1 Code Mapping** (GeoNames → ISO 3166-2):
|
||||
|
||||
| GeoNames | Province | ISO Code |
|
||||
|----------|----------|----------|
|
||||
| 01 | Drenthe | DR |
|
||||
| 02 | Friesland | FR |
|
||||
| 03 | Gelderland | GE |
|
||||
| 04 | Groningen | GR |
|
||||
| 05 | Limburg | LI |
|
||||
| 06 | Noord-Brabant | NB |
|
||||
| 07 | Noord-Holland | NH |
|
||||
| 09 | Utrecht | UT |
|
||||
| 10 | Zeeland | ZE |
|
||||
| 11 | Zuid-Holland | ZH |
|
||||
| 15 | Overijssel | OV |
|
||||
| 16 | Flevoland | FL |
|
||||
|
||||
**Provenance Tracking**: Record GeoNames resolution in entry metadata:
|
||||
|
||||
```yaml
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE # or NAME_LOOKUP or MANUAL
|
||||
geonames_id: 2751792
|
||||
geonames_name: Lelystad
|
||||
settlement_code: LEL
|
||||
admin1_code: "16"
|
||||
region_code: FL
|
||||
resolution_date: "2025-12-01T00:00:00Z"
|
||||
```
|
||||
|
||||
**See**: `.opencode/GEONAMES_SETTLEMENT_RULES.md` for complete documentation.
|
||||
|
||||
---
|
||||
|
||||
### 🚨 INSTITUTION ABBREVIATION: EMIC NAME FIRST-LETTER PROTOCOL 🚨
|
||||
|
||||
**The institution abbreviation component uses the FIRST LETTER of each significant word in the official emic (native language) name.**
|
||||
|
||||
**Abbreviation Rules**:
|
||||
1. Use the **CustodianName** (official emic name), NOT an English translation
|
||||
2. Take the **first letter** of each word
|
||||
3. **Skip prepositions, articles, and conjunctions** in all languages
|
||||
4. Convert to **UPPERCASE**
|
||||
5. Remove accents/diacritics (á→A, ñ→N, ö→O)
|
||||
6. Maximum **10 characters**
|
||||
|
||||
**Skipped Words** (prepositions/articles/conjunctions by language):
|
||||
- **Dutch**: de, het, een, van, voor, in, op, te, den, der, des, 's, aan, bij, met, naar, om, tot, uit, over, onder, door, en, of
|
||||
- **English**: a, an, the, of, in, at, on, to, for, with, from, by, as, under, and, or, but
|
||||
- **French**: le, la, les, un, une, des, de, d, du, à, au, aux, en, dans, sur, sous, pour, par, avec, l, et, ou
|
||||
- **German**: der, die, das, den, dem, des, ein, eine, einer, einem, einen, von, zu, für, mit, bei, nach, aus, vor, über, unter, durch, und, oder
|
||||
- **Spanish**: el, la, los, las, un, una, unos, unas, de, del, a, al, en, con, por, para, sobre, bajo, y, o, e, u
|
||||
- **Portuguese**: o, a, os, as, um, uma, uns, umas, de, do, da, dos, das, em, no, na, nos, nas, para, por, com, sobre, sob, e, ou
|
||||
- **Italian**: il, lo, la, i, gli, le, un, uno, una, di, del, dello, della, dei, degli, delle, a, al, allo, alla, ai, agli, alle, da, dal, dallo, dalla, dai, dagli, dalle, in, nel, nello, nella, nei, negli, nelle, su, sul, sullo, sulla, sui, sugli, sulle, con, per, tra, fra, e, ed, o, od
|
||||
|
||||
**TODO**: Expand to comprehensive global coverage for all ISO 639-1 languages as project expands.
|
||||
|
||||
**Examples**:
|
||||
|
||||
| Emic Name | Abbreviation | Explanation |
|
||||
|-----------|--------------|-------------|
|
||||
| Heemkundige Kring De Goede Stede | HKGS | Skip "De" |
|
||||
| De Hollandse Cirkel | HC | Skip "De" |
|
||||
| Historische Vereniging Nijeveen | HVN | All significant words |
|
||||
| Rijksmuseum Amsterdam | RA | All significant words |
|
||||
| Musée d'Orsay | MO | Skip "d'" (d = de) |
|
||||
| Biblioteca Nacional do Brasil | BNB | Skip "do" |
|
||||
| L'Académie française | AF | Skip "L'" |
|
||||
| Museum van de Twintigste Eeuw | MTE | Skip "van", "de" |
|
||||
| Koninklijke Bibliotheek van België | KBB | Skip "van" |
|
||||
|
||||
**GHCID Format with Abbreviation**:
|
||||
|
||||
```
|
||||
NL-{REGION}-{SETTLEMENT}-{TYPE}-{ABBREV}
|
||||
^^^^^^^^
|
||||
First letter of each significant word in emic name
|
||||
```
|
||||
|
||||
**Implementation**: See `src/glam_extractor/identifiers/ghcid.py:extract_abbreviation_from_name()`
|
||||
|
||||
---
|
||||
|
||||
GHCID uses a **four-identifier strategy** for maximum flexibility and transparency:
|
||||
|
||||
### Four Identifier Formats
|
||||
|
|
|
|||
85
data/nde/enriched/DATASET_STATUS.md
Normal file
85
data/nde/enriched/DATASET_STATUS.md
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
# NDE Heritage Institution Dataset - Status Report
|
||||
|
||||
**Generated**: 2025-12-01
|
||||
|
||||
## Summary Statistics
|
||||
|
||||
| Metric | Count |
|
||||
|--------|-------|
|
||||
| **Total Entries** | 1,674 |
|
||||
| **Web Archives** | 1,639 (97.9%) |
|
||||
| **Entries with Web Claims (xpath provenance)** | 1,627 (97.2%) |
|
||||
| **Entries with CustodianName** | 1,674 (100%) |
|
||||
| **Entries with GHCID** | 1,673 (99.9%) |
|
||||
|
||||
## CustodianName Sources
|
||||
|
||||
| Source | Count |
|
||||
|--------|-------|
|
||||
| Web: og:site_name | 569 |
|
||||
| Web: title tag | 617 |
|
||||
| Web: h1 tag | 330 |
|
||||
| Web: schema.org | 11 |
|
||||
| Wikidata | 81 |
|
||||
| Original CSV entry | 66 |
|
||||
|
||||
## GHCID Status
|
||||
|
||||
- **Total GHCIDs generated**: 1,673
|
||||
- **Collision groups**: 91 (187 entries)
|
||||
- **Resolution strategy**: First Batch - all get name suffixes
|
||||
- **Entries without GHCID**: 1 (missing city data)
|
||||
|
||||
### Regional Distribution (Netherlands)
|
||||
|
||||
| Region | Code | Count |
|
||||
|--------|------|-------|
|
||||
| Noord-Holland | NH | 280 |
|
||||
| Zuid-Holland | ZH | 272 |
|
||||
| Overijssel | OV | 218 |
|
||||
| Noord-Brabant | NB | 198 |
|
||||
| Gelderland | GE | 182 |
|
||||
| Limburg | LI | 114 |
|
||||
| Utrecht | UT | 102 |
|
||||
| Friesland | FR | 91 |
|
||||
| Zeeland | ZE | 68 |
|
||||
| Groningen | GR | 68 |
|
||||
| Drenthe | DR | 57 |
|
||||
| Flevoland | FL | 17 |
|
||||
|
||||
## Web Claims Distribution
|
||||
|
||||
| Claim Type | Count |
|
||||
|------------|-------|
|
||||
| org_name | 3,899 |
|
||||
| social_facebook | 1,398 |
|
||||
| description_short | 1,172 |
|
||||
| social_instagram | 1,026 |
|
||||
| email | 972 |
|
||||
| social_linkedin | 795 |
|
||||
| phone | 599 |
|
||||
| social_youtube | 561 |
|
||||
| social_twitter | 463 |
|
||||
|
||||
## Data Quality Notes
|
||||
|
||||
1. **All web_claims have XPath provenance** - Every claim extracted from websites includes:
|
||||
- `xpath` - exact location in HTML
|
||||
- `html_file` - path to archived HTML
|
||||
- `source_url` - original URL
|
||||
- `xpath_match_score` - 1.0 for exact matches
|
||||
|
||||
2. **GHCID collisions** - 91 collision groups identified:
|
||||
- Many are TRUE duplicates in source data (same institution listed multiple times)
|
||||
- All resolved with name suffixes per First Batch rule
|
||||
|
||||
3. **Missing data**:
|
||||
- 35 entries without website (no URL in source data)
|
||||
- 1 entry without GHCID (missing city)
|
||||
- ~15 website fetch failures (timeout, SSL errors, 404)
|
||||
|
||||
## Files
|
||||
|
||||
- Entry files: `data/nde/enriched/entries/*.yaml`
|
||||
- Web archives: `data/nde/enriched/entries/web/*/`
|
||||
- Collision report: `data/nde/enriched/ghcid_collision_report.json`
|
||||
2142
data/nde/enriched/collision_analysis_detailed.json
Normal file
2142
data/nde/enriched/collision_analysis_detailed.json
Normal file
File diff suppressed because it is too large
Load diff
1
data/nde/enriched/collision_review.tsv
Normal file
1
data/nde/enriched/collision_review.tsv
Normal file
|
|
@ -0,0 +1 @@
|
|||
Group Base_GHCID File Entry_Index Full_GHCID Wikidata_ID Original_Name URL
|
||||
|
|
|
@ -1072,6 +1072,19 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-HhlHCKW
|
||||
assigned_date: '2016-12-02'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-GEE-M-HKW
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: d919bfe1-0ca5-5fd2-b226-63d5dc023a7b
|
||||
identifier_url: urn:uuid:d919bfe1-0ca5-5fd2-b226-63d5dc023a7b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 83597a18-3f43-87b6-8180-331206811ba5
|
||||
identifier_url: urn:uuid:83597a18-3f43-87b6-8180-331206811ba5
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9464730336455010230'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7d77-8758-51fb0024d028
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7d77-8758-51fb0024d028
|
||||
museum_register_enrichment:
|
||||
museum_name: Herinneringscentrum Kamp Westerbork
|
||||
website_url: https://kampwesterbork.nl/
|
||||
|
|
@ -1083,3 +1096,111 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 3
|
||||
enrichment_timestamp: '2025-11-30T12:47:15.755110+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-GEE-M-HKW
|
||||
ghcid_original: NL-DR-GEE-M-HKW
|
||||
ghcid_uuid: d919bfe1-0ca5-5fd2-b226-63d5dc023a7b
|
||||
ghcid_uuid_sha256: 83597a18-3f43-87b6-8180-331206811ba5
|
||||
ghcid_numeric: 9464730336455010230
|
||||
record_id: 019ad9ec-7c9e-7d77-8758-51fb0024d028
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-GEE-M-HKW
|
||||
ghcid_numeric: 9464730336455010230
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755691
|
||||
geonames_name: Geelbroek
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.920929
|
||||
longitude: 6.5696650000000005
|
||||
source: google_maps
|
||||
distance_km: 3.347773297155552
|
||||
geonames_id: 2755691
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:57.750522+00:00'
|
||||
source_archive: web/0000/kampwesterbork.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Herinneringscentrum
|
||||
raw_value: Herinneringscentrum - Kamp Westerbork
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:57.745216+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: 'Herinneringscentrum Kamp Westerbork: meer dan een herinnering. Hier
|
||||
wordt het verhaal over het leven van slachtoffers en overlevenden verteld.'
|
||||
raw_value: 'Herinneringscentrum Kamp Westerbork: meer dan een herinnering. Hier
|
||||
wordt het verhaal over het leven van slachtoffers en overlevenden verteld.'
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:57.745715+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/kampwesterbork/
|
||||
raw_value: https://www.facebook.com/kampwesterbork/
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/body/div[8]/div/section/div[1]/div/div/div[1]/a[1]
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.749989+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/kampwesterbork/
|
||||
raw_value: https://www.instagram.com/kampwesterbork/
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/body/div[8]/div/section/div[1]/div/div/div[1]/a[2]
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.750000+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/kampwesterbork
|
||||
raw_value: https://twitter.com/kampwesterbork
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/body/div[8]/div/section/div[1]/div/div/div[1]/a[3]
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.750005+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Herinneringscentrum Kamp Westerbork
|
||||
raw_value: Herinneringscentrum Kamp Westerbork
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/body/div[3]/div/section/div[1]/div/h1
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:57.750401+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Herinneringscentrum Kamp Westerbork
|
||||
raw_value: Herinneringscentrum Kamp Westerbork
|
||||
source_url: https://kampwesterbork.nl/
|
||||
retrieved_on: '2025-11-29T12:35:15.041961+00:00'
|
||||
xpath: /html/body/div[3]/div/section/div[1]/div/h1
|
||||
html_file: web/0000/kampwesterbork.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:22.923802+00:00'
|
||||
|
|
|
|||
|
|
@ -849,3 +849,155 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 16
|
||||
enrichment_timestamp: '2025-11-30T12:47:40.151509+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-BOR-M-H
|
||||
ghcid_original: NL-DR-BOR-M-H
|
||||
ghcid_uuid: 6a09d929-38fa-52b0-bc09-5aa81405da87
|
||||
ghcid_uuid_sha256: ef794dcb-caf8-879f-b7ff-66a7ca61a845
|
||||
ghcid_numeric: 17255908984925726623
|
||||
record_id: 019ad9ec-7c9e-74d5-bf49-c2f1c7a74f69
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-BOR-M-H
|
||||
ghcid_numeric: 17255908984925726623
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2758621
|
||||
geonames_name: Borger
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.930676899999995
|
||||
longitude: 6.798674
|
||||
source: google_maps
|
||||
distance_km: 1.0263385312117517
|
||||
geonames_id: 2758621
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-BOR-M-H
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6a09d929-38fa-52b0-bc09-5aa81405da87
|
||||
identifier_url: urn:uuid:6a09d929-38fa-52b0-bc09-5aa81405da87
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: ef794dcb-caf8-879f-b7ff-66a7ca61a845
|
||||
identifier_url: urn:uuid:ef794dcb-caf8-879f-b7ff-66a7ca61a845
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '17255908984925726623'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-74d5-bf49-c2f1c7a74f69
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-74d5-bf49-c2f1c7a74f69
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:57.858600+00:00'
|
||||
source_archive: web/0001/hunebedcentrum.eu
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Het Hunebedcentrum
|
||||
raw_value: 'Het Hunebedcentrum: Ontdek de Oertijd van Drenthe'
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:57.855849+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Hunebedden, IJstijden, Grafheuvels en meer. Ga duizenden jaren terug
|
||||
in de tijd en ontdek het grootste hunebed van Nederland in dit museum
|
||||
raw_value: Hunebedden, IJstijden, Grafheuvels en meer. Ga duizenden jaren terug
|
||||
in de tijd en ontdek het grootste hunebed van Nederland in dit museum
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:57.856126+00:00'
|
||||
- claim_type: email
|
||||
claim_value: communicatie@hunebedcentrum.nl
|
||||
raw_value: communicatie@hunebedcentrum.nl
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[3]/header/div/div/div[2]/nav/ul[1]/li[10]/a[2]
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.857745+00:00'
|
||||
- claim_type: email
|
||||
claim_value: reserveringen@hunebedcentrum.nl
|
||||
raw_value: reserveringen@hunebedcentrum.nl
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[4]/div[2]/div[1]/div/div/div[2]/div/div/p[4]/a[2]
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.857760+00:00'
|
||||
- claim_type: email
|
||||
claim_value: educatie@hunebedcentrum.nl
|
||||
raw_value: educatie@hunebedcentrum.nl
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[4]/div[2]/div[1]/div/div/div[2]/div/div/p[4]/a[3]
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.857764+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '%200599236374'
|
||||
raw_value: '%200599236374'
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[3]/header/div/div/div[2]/nav/ul[1]/li[10]/a[1]
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.857924+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Hunebedcentrum/
|
||||
raw_value: https://www.facebook.com/Hunebedcentrum/
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[4]/div[1]/div/div/div[13]/div[2]/div[2]/div/div/div/div[2]/div[1]/div/div/div/a
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.858175+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/hunebedcentrum/?hl=nl
|
||||
raw_value: https://www.instagram.com/hunebedcentrum/?hl=nl
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[4]/div[1]/div/div/div[13]/div[2]/div[2]/div/div/div/div[2]/div[2]/div/div/div/a
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.858182+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/hunebedcentrum/
|
||||
raw_value: https://www.linkedin.com/company/hunebedcentrum/
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/div/div[4]/div[1]/div/div/div[13]/div[2]/div[2]/div/div/div/div[2]/div[3]/div/div/div/a
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.858189+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Het Hunebedcentrum
|
||||
raw_value: Het Hunebedcentrum
|
||||
source_url: https://www.hunebedcentrum.eu/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0001/hunebedcentrum.eu/mirror/www.hunebedcentrum.eu/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:23.014695+00:00'
|
||||
|
|
|
|||
|
|
@ -685,3 +685,145 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-AsnDA
|
||||
assigned_date: '2009-08-24'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ASS-A-DA-drents_archief
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f845e7df-a7e1-5426-8972-51e5aa747e6d
|
||||
identifier_url: urn:uuid:f845e7df-a7e1-5426-8972-51e5aa747e6d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7d3294a0-5f62-82cf-8a08-2c74755ec6ee
|
||||
identifier_url: urn:uuid:7d3294a0-5f62-82cf-8a08-2c74755ec6ee
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9021436420092478159'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7d50-8dbb-e40a3e7c8e01
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7d50-8dbb-e40a3e7c8e01
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ASS-A-DA-drents_archief
|
||||
ghcid_original: NL-DR-ASS-A-DA-drents_archief
|
||||
ghcid_uuid: f845e7df-a7e1-5426-8972-51e5aa747e6d
|
||||
ghcid_uuid_sha256: 7d3294a0-5f62-82cf-8a08-2c74755ec6ee
|
||||
ghcid_numeric: 9021436420092478159
|
||||
record_id: 019ad9ec-7c9e-7d50-8dbb-e40a3e7c8e01
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ASS-A-DA-drents_archief
|
||||
ghcid_numeric: 9021436420092478159
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759633
|
||||
geonames_name: Assen
|
||||
feature_code: PPLA
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9934557
|
||||
longitude: 6.5646432
|
||||
source: google_maps
|
||||
distance_km: 0.4288254932074221
|
||||
geonames_id: 2759633
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-DR-ASS-A-DA
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:57.954903+00:00'
|
||||
source_archive: web/0002/drentsarchief.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Drents Archief
|
||||
raw_value: Drents Archief - Het Geheugen van de Drentse Samenleving
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:57.953771+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: MOD_DPCALENDAR_UPCOMING_DATE
|
||||
raw_value: MOD_DPCALENDAR_UPCOMING_DATE
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/main/section[2]/div[2]/div[1]/div/div/div/div[1]/div[2]/div/span[1]/svg/title
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:57.953786+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Drents Archief - Het Geheugen van de Drentse Samenleving
|
||||
raw_value: Drents Archief - Het Geheugen van de Drentse Samenleving
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:57.953929+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0592313523
|
||||
raw_value: 0592313523
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[1]/div/ul/li[4]/a
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.954462+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/drentsarchief
|
||||
raw_value: https://www.facebook.com/drentsarchief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[1]/a
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.954723+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/drentsarchief
|
||||
raw_value: https://www.youtube.com/drentsarchief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[2]/a
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.954728+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/drentsarchief
|
||||
raw_value: https://www.instagram.com/drentsarchief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[3]/a
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.954733+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/drents-archief
|
||||
raw_value: https://www.linkedin.com/company/drents-archief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[4]/a
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:57.954737+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Drents Archief
|
||||
raw_value: Drents Archief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0002/drentsarchief.nl/mirror/www.drentsarchief.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:23.086858+00:00'
|
||||
|
|
|
|||
|
|
@ -1608,3 +1608,154 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-AsnDM
|
||||
assigned_date: '2024-02-19'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ASS-M-DM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: c88c25d4-ab8d-5ad6-9abe-1f5e2cbf1a41
|
||||
identifier_url: urn:uuid:c88c25d4-ab8d-5ad6-9abe-1f5e2cbf1a41
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b6c78e4f-b504-800e-9453-f4ff42d98fab
|
||||
identifier_url: urn:uuid:b6c78e4f-b504-800e-9453-f4ff42d98fab
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13170652108258820110'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7b13-adce-9289e3dafb93
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7b13-adce-9289e3dafb93
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ASS-M-DM
|
||||
ghcid_original: NL-DR-ASS-M-DM
|
||||
ghcid_uuid: c88c25d4-ab8d-5ad6-9abe-1f5e2cbf1a41
|
||||
ghcid_uuid_sha256: b6c78e4f-b504-800e-9453-f4ff42d98fab
|
||||
ghcid_numeric: 13170652108258820110
|
||||
record_id: 019ad9ec-7c9e-7b13-adce-9289e3dafb93
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ASS-M-DM
|
||||
ghcid_numeric: 13170652108258820110
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759633
|
||||
geonames_name: Assen
|
||||
feature_code: PPLA
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9933334
|
||||
longitude: 6.563978199999999
|
||||
source: google_maps
|
||||
distance_km: 0.40508118632088197
|
||||
geonames_id: 2759633
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:58.290527+00:00'
|
||||
source_archive: web/0003/drentsmuseum.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Drents Museum in Assen
|
||||
raw_value: Drents Museum in Assen - Drents Museum
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:58.288546+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Internationale tentoonstellingen en een rijke collectie archeologie,
|
||||
kunst rond 1900, Drentse geschiedenis, Schilders van Drenthe en hedendaags realisme.
|
||||
raw_value: Internationale tentoonstellingen en een rijke collectie archeologie,
|
||||
kunst rond 1900, Drentse geschiedenis, Schilders van Drenthe en hedendaags realisme.
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:58.288878+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Drents Museum
|
||||
raw_value: Drents Museum
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:43:58.289377+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@drentsmuseum.nl
|
||||
raw_value: info@drentsmuseum.nl
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[1]/div/p/a[2]
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.289764+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31592377773'
|
||||
raw_value: '+31592377773'
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[1]/div/p/a[1]
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.289993+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/HetDrentsMuseum/
|
||||
raw_value: https://www.facebook.com/HetDrentsMuseum/
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[4]/ul/li[1]/a
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.290165+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/drentsmuseumassen/
|
||||
raw_value: https://www.instagram.com/drentsmuseumassen/
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[4]/ul/li[2]/a
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.290172+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/user/drentsmuseum
|
||||
raw_value: https://www.youtube.com/user/drentsmuseum
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[4]/ul/li[4]/a
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.290178+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/drents-museum/
|
||||
raw_value: https://www.linkedin.com/company/drents-museum/
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[4]/ul/li[5]/a
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.290182+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Drents Museum
|
||||
raw_value: Drents Museum
|
||||
source_url: https://drentsmuseum.nl/
|
||||
retrieved_on: '2025-11-29T13:25:47.188146+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0003/drentsmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:23.211895+00:00'
|
||||
|
|
|
|||
|
|
@ -865,3 +865,123 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 2
|
||||
enrichment_timestamp: '2025-11-30T12:47:14.397850+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-EEL-M-B
|
||||
ghcid_original: NL-DR-EEL-M-B
|
||||
ghcid_uuid: 13a08285-586b-5eb7-b2ee-04fde6f80777
|
||||
ghcid_uuid_sha256: a3103679-1e1e-850a-ba31-306f921ac385
|
||||
ghcid_numeric: 11749951321633879306
|
||||
record_id: 019ad9ec-7c9e-7404-99d2-77f234609f2a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-EEL-M-B
|
||||
ghcid_numeric: 11749951321633879306
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756408
|
||||
geonames_name: Eelde
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.1337244
|
||||
longitude: 6.5634969000000005
|
||||
source: google_maps
|
||||
distance_km: 0.2585933381032673
|
||||
geonames_id: 2756408
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-EEL-M-B
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 13a08285-586b-5eb7-b2ee-04fde6f80777
|
||||
identifier_url: urn:uuid:13a08285-586b-5eb7-b2ee-04fde6f80777
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a3103679-1e1e-850a-ba31-306f921ac385
|
||||
identifier_url: urn:uuid:a3103679-1e1e-850a-ba31-306f921ac385
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11749951321633879306'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7404-99d2-77f234609f2a
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7404-99d2-77f234609f2a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:58.614650+00:00'
|
||||
source_archive: web/0004/dmdebuitenplaats.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Buitenplaats
|
||||
raw_value: Buitenplaats - Drents Museum De Buitenplaats in Eelde
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:58.608502+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Het museum voor art nouveau en kunst rond 1900.
|
||||
raw_value: Het museum voor art nouveau en kunst rond 1900.
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:58.609480+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31503095818'
|
||||
raw_value: '+31503095818'
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[1]/div/p/a
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.611982+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/DrentsMuseumDeBuitenplaats/
|
||||
raw_value: https://www.facebook.com/DrentsMuseumDeBuitenplaats/
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[4]/ul/li[1]/a
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.612638+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/dmdebuitenplaats
|
||||
raw_value: https://www.instagram.com/dmdebuitenplaats
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div/div[4]/ul/li[2]/a
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.612647+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: De Buitenplaats
|
||||
raw_value: De Buitenplaats
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/body/div/main/h1
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:58.612793+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: De Buitenplaats
|
||||
raw_value: De Buitenplaats
|
||||
source_url: https://dmdebuitenplaats.nl/
|
||||
retrieved_on: '2025-11-29T13:26:20.518271+00:00'
|
||||
xpath: /html/body/div/main/h1
|
||||
html_file: web/0004/dmdebuitenplaats.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:23.323424+00:00'
|
||||
|
|
|
|||
|
|
@ -458,3 +458,146 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-GtnGAH
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-GIE-A-GAH
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 945e11af-6615-5919-8a1c-44ddcbed8da1
|
||||
identifier_url: urn:uuid:945e11af-6615-5919-8a1c-44ddcbed8da1
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 4a59a5f3-b7d3-8e69-a3e5-4198913786fd
|
||||
identifier_url: urn:uuid:4a59a5f3-b7d3-8e69-a3e5-4198913786fd
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '5357495697913626217'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7d98-a86c-15cb432bf924
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7d98-a86c-15cb432bf924
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-GIE-A-GAH
|
||||
ghcid_original: NL-DR-GIE-A-GAH
|
||||
ghcid_uuid: 945e11af-6615-5919-8a1c-44ddcbed8da1
|
||||
ghcid_uuid_sha256: 4a59a5f3-b7d3-8e69-a3e5-4198913786fd
|
||||
ghcid_numeric: 5357495697913626217
|
||||
record_id: 019ad9ec-7c9e-7d98-a86c-15cb432bf924
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-GIE-A-GAH
|
||||
ghcid_numeric: 5357495697913626217
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755527
|
||||
geonames_name: Gieten
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.005029
|
||||
longitude: 6.7600921
|
||||
source: google_maps
|
||||
distance_km: 0.4215791896389593
|
||||
geonames_id: 2755527
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861472+00:00'
|
||||
source_archive: web/0005/aaenhunze.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Gemeente Aa en Hunze
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:58.860729+00:00'
|
||||
- claim_type: address
|
||||
claim_value: Spiekersteeg 1
|
||||
raw_value: Spiekersteeg 1
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/head/script[27]
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_streetAddress
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861034+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0592 267777
|
||||
raw_value: 0592 267777
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/head/script[27]
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_telephone
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861038+00:00'
|
||||
- claim_type: email
|
||||
claim_value: gemeente@aaenhunze.nl
|
||||
raw_value: gemeente@aaenhunze.nl
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[2]/div[2]/div/p[2]/a
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861120+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0592267777
|
||||
raw_value: ' 0592267777'
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[2]/div[2]/div/p[1]/a
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861196+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/aaenhunze
|
||||
raw_value: https://www.facebook.com/aaenhunze
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/ul/li[1]/a
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861332+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/aaenhunze
|
||||
raw_value: https://twitter.com/aaenhunze
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/ul/li[2]/a
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861337+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCdj5Tn3btqad_ukTOa7YEIQ
|
||||
raw_value: https://www.youtube.com/channel/UCdj5Tn3btqad_ukTOa7YEIQ
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/ul/li[3]/a
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861342+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/aaenhunze/
|
||||
raw_value: https://www.instagram.com/aaenhunze/
|
||||
source_url: https://www.aaenhunze.nl/
|
||||
retrieved_on: '2025-11-29T13:28:29.517181+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/ul/li[4]/a
|
||||
html_file: web/0005/aaenhunze.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:58.861346+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeentearchief Aa en Hunze
|
||||
source: wikidata
|
||||
wikidata_id: ''
|
||||
provenance_note: Derived from wikidata_label_nl (web_claims had no valid org_name)
|
||||
extraction_timestamp: '2025-12-01T12:35:23.432573+00:00'
|
||||
|
|
|
|||
|
|
@ -463,3 +463,144 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-ExGBO
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-EXL-A-GBO
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 2379ee66-3cdf-5de8-b37e-99d9c6883350
|
||||
identifier_url: urn:uuid:2379ee66-3cdf-5de8-b37e-99d9c6883350
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a88a1fb4-3e70-8447-b270-b134eb59a8f3
|
||||
identifier_url: urn:uuid:a88a1fb4-3e70-8447-b270-b134eb59a8f3
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12144554204160078919'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7905-8dae-b5b3e1f81e56
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7905-8dae-b5b3e1f81e56
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-EXL-A-GBO
|
||||
ghcid_original: NL-DR-EXL-A-GBO
|
||||
ghcid_uuid: 2379ee66-3cdf-5de8-b37e-99d9c6883350
|
||||
ghcid_uuid_sha256: a88a1fb4-3e70-8447-b270-b134eb59a8f3
|
||||
ghcid_numeric: 12144554204160078919
|
||||
record_id: 019ad9ec-7c9e-7905-8dae-b5b3e1f81e56
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-EXL-A-GBO
|
||||
ghcid_numeric: 12144554204160078919
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755947
|
||||
geonames_name: Exloo
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8828724
|
||||
longitude: 6.8638493
|
||||
source: google_maps
|
||||
distance_km: 0.04158253934303895
|
||||
geonames_id: 2755947
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122650+00:00'
|
||||
source_archive: web/0006/borger-odoorn.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home | Gemeente Borger-Odoorn
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122129+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: default icon
|
||||
raw_value: default icon
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[1]/a/h2/svg[1]/title
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122144+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: externe-link-icoon
|
||||
raw_value: externe-link-icoon
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[2]/div[1]/ul/li[1]/a/span[2]/svg/title
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122213+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Officiële website van de gemeente Borger-Odoorn met informatie over
|
||||
onze (digitale) diensten, de organisatie en het bestuur
|
||||
raw_value: Officiële website van de gemeente Borger-Odoorn met informatie over
|
||||
onze (digitale) diensten, de organisatie en het bestuur
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122285+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Borger-Odoorn
|
||||
raw_value: Gemeente Borger-Odoorn
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122384+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://nl.linkedin.com/company/gemeente-borger-odoorn
|
||||
raw_value: https://nl.linkedin.com/company/gemeente-borger-odoorn
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[2]/div[1]/ul/li[1]/a
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122535+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/profile.php?id=61576553214147
|
||||
raw_value: https://www.facebook.com/profile.php?id=61576553214147
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[2]/div[1]/ul/li[2]/a
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.122541+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Borger-Odoorn
|
||||
raw_value: Gemeente Borger-Odoorn
|
||||
source_url: https://www.borger-odoorn.nl/
|
||||
retrieved_on: '2025-11-29T13:30:23.176866+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0006/borger-odoorn.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:23.495798+00:00'
|
||||
digital_platforms:
|
||||
- platform_name: Gemeentearchief Borger-Odoorn
|
||||
platform_url: http://www.rijckheyt.nl
|
||||
platform_type: OFFICIAL_WEBSITE
|
||||
provenance:
|
||||
source_type: wikidata_p856
|
||||
data_tier: TIER_2_VERIFIED
|
||||
discovery_timestamp: '2025-12-01T14:56:16.935314+00:00'
|
||||
wikidata_id: Q81181279
|
||||
wikidata_property: P856
|
||||
|
|
|
|||
|
|
@ -474,3 +474,234 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-CoGC
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-COE-A-GC
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 93266832-b399-5779-a8b9-9cb1fc6af8e1
|
||||
identifier_url: urn:uuid:93266832-b399-5779-a8b9-9cb1fc6af8e1
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: ef472da8-4bdd-8d19-b9c0-5a3b807a7cd8
|
||||
identifier_url: urn:uuid:ef472da8-4bdd-8d19-b9c0-5a3b807a7cd8
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '17241799899261779225'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7283-a1be-67cdc3d1ccb0
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7283-a1be-67cdc3d1ccb0
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-COE-A-GC
|
||||
ghcid_original: NL-DR-COE-A-GC
|
||||
ghcid_uuid: 93266832-b399-5779-a8b9-9cb1fc6af8e1
|
||||
ghcid_uuid_sha256: ef472da8-4bdd-8d19-b9c0-5a3b807a7cd8
|
||||
ghcid_numeric: 17241799899261779225
|
||||
record_id: 019ad9ec-7c9e-7283-a1be-67cdc3d1ccb0
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-COE-A-GC
|
||||
ghcid_numeric: 17241799899261779225
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2757937
|
||||
geonames_name: Coevorden
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6617112
|
||||
longitude: 6.7412380999999995
|
||||
source: google_maps
|
||||
distance_km: 0.11479101641281701
|
||||
geonames_id: 2757937
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:59.362549+00:00'
|
||||
source_archive: web/0007/coevorden.nl
|
||||
claims_count: 17
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home | Gemeente Coevorden
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361804+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: paspoort icon
|
||||
raw_value: paspoort icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[1]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361818+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: belastingen icon
|
||||
raw_value: belastingen icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[2]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361824+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: default icon
|
||||
raw_value: default icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[3]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361828+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: bruiloft icon
|
||||
raw_value: bruiloft icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[7]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361844+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: hulp & ondersteuning icon
|
||||
raw_value: hulp & ondersteuning icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[9]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361853+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: vergunningen icon
|
||||
raw_value: vergunningen icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[12]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361865+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: uittreksel icon
|
||||
raw_value: uittreksel icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[15]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361877+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: verkeer icon
|
||||
raw_value: verkeer icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[16]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361881+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: onderneming icon
|
||||
raw_value: onderneming icon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul/li[18]/a/h2/svg[1]/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361889+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: externe-link-icoon
|
||||
raw_value: externe-link-icoon
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div/ul/li[1]/a/span[2]/svg/title
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361906+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Website van de gemeente Coevorden. Met digitale informatie, producten
|
||||
en diensten voor al onze inwoners en ondernemers.
|
||||
raw_value: Website van de gemeente Coevorden. Met digitale informatie, producten
|
||||
en diensten voor al onze inwoners en ondernemers.
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:59.361999+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Coevorden
|
||||
raw_value: Gemeente Coevorden
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:43:59.362120+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '140524'
|
||||
raw_value: '140524'
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[2]/div/div/div/div/div/table/tbody/tr[1]/td[2]/a
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.362252+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeentecoevorden/
|
||||
raw_value: https://www.instagram.com/gemeentecoevorden/
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div/ul/li[1]/a
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.362330+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gemeente-coevorden
|
||||
raw_value: https://www.linkedin.com/company/gemeente-coevorden
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div/ul/li[2]/a
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.362335+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/gemeentecoevorden
|
||||
raw_value: https://www.facebook.com/gemeentecoevorden
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div/ul/li[3]/a
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.362340+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Coevorden
|
||||
raw_value: Gemeente Coevorden
|
||||
source_url: https://www.coevorden.nl/
|
||||
retrieved_on: '2025-11-29T13:32:08.818759+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0007/coevorden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:23.554188+00:00'
|
||||
|
|
|
|||
|
|
@ -477,3 +477,138 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-ZwdGDW
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ZUI-A-GW
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 5bd731f7-ec6a-5326-bba5-749bb131f42d
|
||||
identifier_url: urn:uuid:5bd731f7-ec6a-5326-bba5-749bb131f42d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 47b8cbe7-245e-866f-8163-566a67321da2
|
||||
identifier_url: urn:uuid:47b8cbe7-245e-866f-8163-566a67321da2
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '5168104766015690351'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-739b-b923-854907c5efe9
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-739b-b923-854907c5efe9
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ZUI-A-GW
|
||||
ghcid_original: NL-DR-ZUI-A-GW
|
||||
ghcid_uuid: 5bd731f7-ec6a-5326-bba5-749bb131f42d
|
||||
ghcid_uuid_sha256: 47b8cbe7-245e-866f-8163-566a67321da2
|
||||
ghcid_numeric: 5168104766015690351
|
||||
record_id: 019ad9ec-7c9e-739b-b923-854907c5efe9
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ZUI-A-GW
|
||||
ghcid_numeric: 5168104766015690351
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2743637
|
||||
geonames_name: Zuidwolde
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.67516260000001
|
||||
longitude: 6.4309958
|
||||
source: google_maps
|
||||
distance_km: 0.5269826488918649
|
||||
geonames_id: 2743637
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:59.611388+00:00'
|
||||
source_archive: web/0008/dewolden.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente De Wolden
|
||||
raw_value: Gemeente De Wolden - Gemeente De Wolden
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.610689+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: De officiële website van gemeente De Wolden met informatie over onze
|
||||
diensten en bestuur. Bij ons regelt u veel zaken eenvoudig online, maar we staan
|
||||
ook klaar om u persoonlijk van dienst te zijn. Maak gemakkelijk een afspraak
|
||||
en kom langs op ons adres Raadhuisstraat 2 in Zuidwolde.
|
||||
raw_value: De officiële website van gemeente De Wolden met informatie over onze
|
||||
diensten en bestuur. Bij ons regelt u veel zaken eenvoudig online, maar we staan
|
||||
ook klaar om u persoonlijk van dienst te zijn. Maak gemakkelijk een afspraak
|
||||
en kom langs op ons adres Raadhuisstraat 2 in Zuidwolde.
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:59.610747+00:00'
|
||||
- claim_type: email
|
||||
claim_value: gemeente@dewolden.nl
|
||||
raw_value: gemeente@dewolden.nl
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/body/div[2]/div[3]/div/div/div[3]/div[2]/div/div/div/p[3]/a
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.611148+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+140528'
|
||||
raw_value: '+140528'
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/body/div[2]/div[3]/div/div/div[2]/div[1]/div/div/p/a
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.611189+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/GemDeWolden/
|
||||
raw_value: https://www.facebook.com/GemDeWolden/
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/body/div[2]/footer/div/div/div[2]/div/ul/li[1]/a
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.611312+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeentedewolden/
|
||||
raw_value: https://www.instagram.com/gemeentedewolden/
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/body/div[2]/footer/div/div/div[2]/div/ul/li[2]/a
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.611318+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://nl.linkedin.com/company/gemeente-de-wolden
|
||||
raw_value: https://nl.linkedin.com/company/gemeente-de-wolden
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/body/div[2]/footer/div/div/div[2]/div/ul/li[3]/a
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.611322+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente De Wolden
|
||||
raw_value: Gemeente De Wolden
|
||||
source_url: https://www.dewolden.nl/
|
||||
retrieved_on: '2025-11-29T13:34:11.719608+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0008/dewolden.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:23.622296+00:00'
|
||||
|
|
|
|||
|
|
@ -281,3 +281,98 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-HgvSWO
|
||||
assigned_date: '2023-04-04'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-HOO-S-WWH
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: d9bf79f0-e58a-5c0c-8724-e3799f6e5999
|
||||
identifier_url: urn:uuid:d9bf79f0-e58a-5c0c-8724-e3799f6e5999
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 2837bd28-db0a-8376-a2b7-119b1f91f577
|
||||
identifier_url: urn:uuid:2837bd28-db0a-8376-a2b7-119b1f91f577
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2897992868407456630'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7978-9017-0b2b702f700b
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7978-9017-0b2b702f700b
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-HOO-S-WWH
|
||||
ghcid_original: NL-DR-HOO-S-WWH
|
||||
ghcid_uuid: d9bf79f0-e58a-5c0c-8724-e3799f6e5999
|
||||
ghcid_uuid_sha256: 2837bd28-db0a-8376-a2b7-119b1f91f577
|
||||
ghcid_numeric: 2897992868407456630
|
||||
record_id: 019ad9ec-7c9e-7978-9017-0b2b702f700b
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-HOO-S-WWH
|
||||
ghcid_numeric: 2897992868407456630
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753719
|
||||
geonames_name: Hoogeveen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.726195399999995
|
||||
longitude: 6.4747949
|
||||
source: google_maps
|
||||
distance_km: 0.4467708656788186
|
||||
geonames_id: 2753719
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:59.852507+00:00'
|
||||
source_archive: web/0009/werkenbijdeswo.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Wil jij werken bij de SWO?
|
||||
raw_value: Wil jij werken bij de SWO?
|
||||
source_url: https://www.werkenbijdeswo.nl/
|
||||
retrieved_on: '2025-11-29T13:36:14.014532+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0009/werkenbijdeswo.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.852003+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Wil jij werken in een open en toegankelijke organisatie? Houd jij
|
||||
je persoonlijke ontwikkeling goed bij? Durf jij het (goede) gesprek aan te gaan?
|
||||
Solliciteer dan nu op één van de vacatures van de Samenwerkingsorganisatie De
|
||||
Wolden Hoogeveen (SWO).
|
||||
raw_value: Wil jij werken in een open en toegankelijke organisatie? Houd jij je
|
||||
persoonlijke ontwikkeling goed bij? Durf jij het (goede) gesprek aan te gaan?
|
||||
Solliciteer dan nu op één van de vacatures van de Samenwerkingsorganisatie De
|
||||
Wolden Hoogeveen (SWO).
|
||||
source_url: https://www.werkenbijdeswo.nl/
|
||||
retrieved_on: '2025-11-29T13:36:14.014532+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0009/werkenbijdeswo.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:59.852087+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Werken voor De Wolden & Hoogeveen
|
||||
raw_value: Werken voor De Wolden & Hoogeveen
|
||||
source_url: https://www.werkenbijdeswo.nl/
|
||||
retrieved_on: '2025-11-29T13:36:14.014532+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div[2]/div/div/div/div[2]/div/div[1]/div/div/div/div[1]/div/div[2]/div/div/div/div/div/div/div/div/div/div/h1
|
||||
html_file: web/0009/werkenbijdeswo.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.852383+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Werken voor De Wolden & Hoogeveen
|
||||
raw_value: Werken voor De Wolden & Hoogeveen
|
||||
source_url: https://www.werkenbijdeswo.nl/
|
||||
retrieved_on: '2025-11-29T13:36:14.014532+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div[2]/div/div/div/div[2]/div/div[1]/div/div/div/div[1]/div/div[2]/div/div/div/div/div/div/div/div/div/div/h1
|
||||
html_file: web/0009/werkenbijdeswo.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:23.678608+00:00'
|
||||
|
|
|
|||
|
|
@ -532,3 +532,124 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-HgvGH
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-HOO-A-GH
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f843f221-6277-5d49-8ff7-8ae0511e4cac
|
||||
identifier_url: urn:uuid:f843f221-6277-5d49-8ff7-8ae0511e4cac
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a5dd10dd-e125-87f3-b2a9-270d60553702
|
||||
identifier_url: urn:uuid:a5dd10dd-e125-87f3-b2a9-270d60553702
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11951727531262285811'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7365-bc46-8a5dc090d03d
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7365-bc46-8a5dc090d03d
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-HOO-A-GH
|
||||
ghcid_original: NL-DR-HOO-A-GH
|
||||
ghcid_uuid: f843f221-6277-5d49-8ff7-8ae0511e4cac
|
||||
ghcid_uuid_sha256: a5dd10dd-e125-87f3-b2a9-270d60553702
|
||||
ghcid_numeric: 11951727531262285811
|
||||
record_id: 019ad9ec-7c9e-7365-bc46-8a5dc090d03d
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-HOO-A-GH
|
||||
ghcid_numeric: 11951727531262285811
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753719
|
||||
geonames_name: Hoogeveen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7262059
|
||||
longitude: 6.4747938
|
||||
source: google_maps
|
||||
distance_km: 0.4478894599220566
|
||||
geonames_id: 2753719
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:43:59.891037+00:00'
|
||||
source_archive: web/0010/hoogeveen.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Hoogeveen
|
||||
raw_value: Gemeente Hoogeveen - Gemeente Hoogeveen
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:43:59.890670+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Veel regelt u online. Of kom langs, hiervoor maakt u een afspraak
|
||||
Raadhuisplein 24, Hoogeveen.
|
||||
raw_value: Veel regelt u online. Of kom langs, hiervoor maakt u een afspraak Raadhuisplein
|
||||
24, Hoogeveen.
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:43:59.890728+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@hoogeveen.nl
|
||||
raw_value: info@hoogeveen.nl
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[2]/div[5]/div[3]/div/div/div[3]/div[4]/div/div/p/a[1]
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.890864+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/gemeentehoogeveen/
|
||||
raw_value: https://www.facebook.com/gemeentehoogeveen/
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[2]/footer/div/div/div[2]/div/ul/li[1]/a
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.890970+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeentehoogeveen_/
|
||||
raw_value: https://www.instagram.com/gemeentehoogeveen_/
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[2]/footer/div/div/div[2]/div/ul/li[2]/a
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.890975+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gemeente-hoogeveen
|
||||
raw_value: https://www.linkedin.com/company/gemeente-hoogeveen
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[2]/footer/div/div/div[2]/div/ul/li[3]/a
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:43:59.890980+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Hoogeveen
|
||||
raw_value: Gemeente Hoogeveen
|
||||
source_url: https://www.hoogeveen.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0010/hoogeveen.nl/mirror/www.hoogeveen.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:23.739711+00:00'
|
||||
|
|
|
|||
|
|
@ -482,3 +482,393 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:22:20.965043+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:24:47.104780+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-EMM-A-GE
|
||||
ghcid_original: NL-DR-EMM-A-GE
|
||||
ghcid_uuid: 0013308d-f8a1-5510-99f6-c53a25bcb791
|
||||
ghcid_uuid_sha256: 7f6063f1-b460-88d0-be46-539a84468ae2
|
||||
ghcid_numeric: 9178445930345543888
|
||||
record_id: 019ad9ec-7c9e-7ff3-9751-7894beb9d21f
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-EMM-A-GE
|
||||
ghcid_numeric: 9178445930345543888
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756136
|
||||
geonames_name: Emmen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7844638
|
||||
longitude: 6.8931284999999995
|
||||
source: google_maps
|
||||
distance_km: 1.6418316546927447
|
||||
geonames_id: 2756136
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-EMM-A-GE
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 0013308d-f8a1-5510-99f6-c53a25bcb791
|
||||
identifier_url: urn:uuid:0013308d-f8a1-5510-99f6-c53a25bcb791
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7f6063f1-b460-88d0-be46-539a84468ae2
|
||||
identifier_url: urn:uuid:7f6063f1-b460-88d0-be46-539a84468ae2
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9178445930345543888'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7ff3-9751-7894beb9d21f
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7ff3-9751-7894beb9d21f
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017321+00:00'
|
||||
source_archive: web/0011/gemeente.emmen.nl
|
||||
claims_count: 32
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home | Gemeente Emmen
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016608+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: afspraak icon
|
||||
raw_value: afspraak icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[1]/li[1]/a/svg/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016621+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: woon-huishouden icon
|
||||
raw_value: woon-huishouden icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[1]/li[2]/a/svg/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016627+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: betaling icon
|
||||
raw_value: betaling icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[1]/li[3]/a/svg/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016631+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: paspoort icon
|
||||
raw_value: paspoort icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[1]/li[4]/a/svg/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016635+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: rijbewijs icon
|
||||
raw_value: rijbewijs icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[1]/li[5]/a/svg/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016639+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: openingstijden-winkels icon
|
||||
raw_value: openingstijden-winkels icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[1]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016643+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: belastingen icon
|
||||
raw_value: belastingen icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[2]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016648+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: onderneming icon
|
||||
raw_value: onderneming icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[3]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016652+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: default icon
|
||||
raw_value: default icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[4]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016656+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: uittreksel icon
|
||||
raw_value: uittreksel icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[6]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016663+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: volwassenen icon
|
||||
raw_value: volwassenen icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[7]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016667+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: afval icon
|
||||
raw_value: afval icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[8]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016671+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: zoek-huis icon
|
||||
raw_value: zoek-huis icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[9]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016675+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: bouwen-wonen icon
|
||||
raw_value: bouwen-wonen icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[10]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016679+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: vrijwilligers voordelen icon
|
||||
raw_value: vrijwilligers voordelen icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[11]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016684+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: informele zorg icon
|
||||
raw_value: informele zorg icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[12]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016688+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: geld-schulden icon
|
||||
raw_value: geld-schulden icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[13]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016692+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Zwemmen icon
|
||||
raw_value: Zwemmen icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[14]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016696+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: verkeer icon
|
||||
raw_value: verkeer icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[16]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016704+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: vrije tijd icon
|
||||
raw_value: vrije tijd icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[17]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016708+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: jeugd-kind icon
|
||||
raw_value: jeugd-kind icon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/main/nav/ul[2]/li[18]/a/h2/svg[1]/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016711+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: externe-link-icoon
|
||||
raw_value: externe-link-icoon
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div[1]/div/div/p/a[1]/span/svg/title
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016725+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Website van de gemeente Emmen.
|
||||
raw_value: Website van de gemeente Emmen.
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016827+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Emmen
|
||||
raw_value: Gemeente Emmen
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:00.016943+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '140591'
|
||||
raw_value: '140591'
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[1]/div/div/div/div/div/table/tbody/tr[1]/td[2]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017076+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0611198769
|
||||
raw_value: 0611198769
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[1]/div/div/div/div/div/table/tbody/tr[3]/td[2]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017082+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/GemeenteEmmen
|
||||
raw_value: https://twitter.com/GemeenteEmmen
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div[2]/ul/li[1]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017163+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/gemeenteemmen
|
||||
raw_value: https://www.facebook.com/gemeenteemmen
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div[2]/ul/li[2]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017169+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://nl.linkedin.com/company/gemeente-emmen
|
||||
raw_value: https://nl.linkedin.com/company/gemeente-emmen
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div[2]/ul/li[3]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017174+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeenteemmen/?hl=nl
|
||||
raw_value: https://www.instagram.com/gemeenteemmen/?hl=nl
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div[2]/ul/li[4]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017178+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCmpxYhb46hMdB9yZwV4AMdA
|
||||
raw_value: https://www.youtube.com/channel/UCmpxYhb46hMdB9yZwV4AMdA
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/body/div/div/div[2]/footer/div/div[1]/div[3]/div[2]/ul/li[5]/a
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.017183+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Emmen
|
||||
raw_value: Gemeente Emmen
|
||||
source_url: http://www.gemeente.emmen.nl
|
||||
retrieved_on: '2025-11-29T14:24:46.985786+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0011/gemeente.emmen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:23.803557+00:00'
|
||||
digital_platforms:
|
||||
- platform_name: Gemeentearchief Emmen
|
||||
platform_url: https://www.nyenaenwasvannassau.nl/site/
|
||||
platform_type: OFFICIAL_WEBSITE
|
||||
provenance:
|
||||
source_type: wikidata_p856
|
||||
data_tier: TIER_2_VERIFIED
|
||||
discovery_timestamp: '2025-12-01T14:56:17.018809+00:00'
|
||||
wikidata_id: Q110907483
|
||||
wikidata_property: P856
|
||||
|
|
|
|||
|
|
@ -448,3 +448,154 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-MpGM
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-MEP-A-GM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 7b503af1-3052-5af3-97af-fc452617794e
|
||||
identifier_url: urn:uuid:7b503af1-3052-5af3-97af-fc452617794e
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5ba7678f-f6e4-8468-ac7c-ee341943af8d
|
||||
identifier_url: urn:uuid:5ba7678f-f6e4-8468-ac7c-ee341943af8d
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6604361246582293608'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-74e5-9be7-45d126386ffc
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-74e5-9be7-45d126386ffc
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-MEP-A-GM
|
||||
ghcid_original: NL-DR-MEP-A-GM
|
||||
ghcid_uuid: 7b503af1-3052-5af3-97af-fc452617794e
|
||||
ghcid_uuid_sha256: 5ba7678f-f6e4-8468-ac7c-ee341943af8d
|
||||
ghcid_numeric: 6604361246582293608
|
||||
record_id: 019ad9ec-7c9e-74e5-9be7-45d126386ffc
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-MEP-A-GM
|
||||
ghcid_numeric: 6604361246582293608
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750947
|
||||
geonames_name: Meppel
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6991935
|
||||
longitude: 6.188293799999999
|
||||
source: google_maps
|
||||
distance_km: 0.7777045835839728
|
||||
geonames_id: 2750947
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530508+00:00'
|
||||
source_archive: web/0012/meppel.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home | Gemeente Meppel
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.529951+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: De officiële website van Gemeente Meppel – Informatie over wonen,
|
||||
werken en leven in Meppel.
|
||||
raw_value: De officiële website van Gemeente Meppel – Informatie over wonen, werken
|
||||
en leven in Meppel.
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530034+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Meppel
|
||||
raw_value: Gemeente Meppel
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530151+00:00'
|
||||
- claim_type: description
|
||||
claim_value: Gemeente Meppel
|
||||
raw_value: Gemeente Meppel
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/script[2]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_description
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530217+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/gemeentemeppel
|
||||
raw_value: https://www.facebook.com/gemeentemeppel
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/script[2]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_sameAs
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530219+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://x.com/https://x.com/GemeenteMeppel/
|
||||
raw_value: https://x.com/https://x.com/GemeenteMeppel/
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/script[2]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_sameAs
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530221+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeente_meppel/
|
||||
raw_value: https://www.instagram.com/gemeente_meppel/
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/script[2]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_sameAs
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530223+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gemeente-meppel
|
||||
raw_value: https://www.linkedin.com/company/gemeente-meppel
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/script[2]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: schema_org_sameAs
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530225+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gemeente-meppel/?originalSubdomain=nl
|
||||
raw_value: https://www.linkedin.com/company/gemeente-meppel/?originalSubdomain=nl
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div[3]/ul/li[1]/a
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.530413+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Meppel
|
||||
raw_value: Gemeente Meppel
|
||||
source_url: http://www.meppel.nl
|
||||
retrieved_on: '2025-11-29T14:27:04.292512+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0012/meppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:23.866882+00:00'
|
||||
|
|
|
|||
|
|
@ -512,3 +512,128 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-BlGMD
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-BEI-A-GMD
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 9dcaf9c0-9b1d-5f25-ba58-abf54e201d5e
|
||||
identifier_url: urn:uuid:9dcaf9c0-9b1d-5f25-ba58-abf54e201d5e
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: ab7b76c3-2997-8015-bca5-cfafd00fbfa0
|
||||
identifier_url: urn:uuid:ab7b76c3-2997-8015-bca5-cfafd00fbfa0
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12356600583209611285'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9e-7778-b929-d7fb36a231fd
|
||||
identifier_url: urn:uuid:019ad9ec-7c9e-7778-b929-d7fb36a231fd
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-BEI-A-GMD
|
||||
ghcid_original: NL-DR-BEI-A-GMD
|
||||
ghcid_uuid: 9dcaf9c0-9b1d-5f25-ba58-abf54e201d5e
|
||||
ghcid_uuid_sha256: ab7b76c3-2997-8015-bca5-cfafd00fbfa0
|
||||
ghcid_numeric: 12356600583209611285
|
||||
record_id: 019ad9ec-7c9e-7778-b929-d7fb36a231fd
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-BEI-A-GMD
|
||||
ghcid_numeric: 12356600583209611285
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759271
|
||||
geonames_name: Beilen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8604705
|
||||
longitude: 6.514322
|
||||
source: google_maps
|
||||
distance_km: 0.3210062474847174
|
||||
geonames_id: 2759271
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:00.671503+00:00'
|
||||
source_archive: web/0013/middendrenthe.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Website Midden Drenthe
|
||||
raw_value: Website Midden Drenthe - Gemeente Midden Drenthe
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.670754+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Dit is de officiële website van de gemeente Midden-Drenthe met informatie
|
||||
over onze diensten en het bestuur.
|
||||
raw_value: Dit is de officiële website van de gemeente Midden-Drenthe met informatie
|
||||
over onze diensten en het bestuur.
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:00.670839+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://nl-nl.facebook.com/gemmiddendrenthe/
|
||||
raw_value: https://nl-nl.facebook.com/gemmiddendrenthe/
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/body/div[1]/div[3]/footer/div/div[2]/div/div[2]/ul/li[1]/a
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.671358+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/middendrenthe/
|
||||
raw_value: https://www.instagram.com/middendrenthe/
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/body/div[1]/div[3]/footer/div/div[2]/div/div[2]/ul/li[2]/a
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.671364+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://x.com/middendrenthe
|
||||
raw_value: https://x.com/middendrenthe
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/body/div[1]/div[3]/footer/div/div[2]/div/div[2]/ul/li[3]/a
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.671369+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/middendrenthe/
|
||||
raw_value: https://www.linkedin.com/company/middendrenthe/
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/body/div[1]/div[3]/footer/div/div[2]/div/div[2]/ul/li[4]/a
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.671374+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Startpagina Gemeente Midden Drenthe
|
||||
raw_value: Startpagina Gemeente Midden Drenthe
|
||||
source_url: https://www.middendrenthe.nl
|
||||
retrieved_on: '2025-11-29T14:24:47.049957+00:00'
|
||||
xpath: /html/body/div[1]/header/div[2]/div/div[1]/h1
|
||||
html_file: web/0013/middendrenthe.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.671413+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeentearchief Midden-Drenthe
|
||||
source: wikidata
|
||||
wikidata_id: ''
|
||||
provenance_note: Derived from wikidata_label_nl (web_claims had no valid org_name)
|
||||
extraction_timestamp: '2025-12-01T12:35:23.911693+00:00'
|
||||
|
|
|
|||
|
|
@ -477,3 +477,182 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-RodGN
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ROD-A-GN
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 236254f1-087e-5288-a569-4087aa2d3924
|
||||
identifier_url: urn:uuid:236254f1-087e-5288-a569-4087aa2d3924
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 6d787d5e-cc57-89f8-becf-8bb4fbf81878
|
||||
identifier_url: urn:uuid:6d787d5e-cc57-89f8-becf-8bb4fbf81878
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '7888192593448114680'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7e1e-949a-499bbc75e34e
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7e1e-949a-499bbc75e34e
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ROD-A-GN
|
||||
ghcid_original: NL-DR-ROD-A-GN
|
||||
ghcid_uuid: 236254f1-087e-5288-a569-4087aa2d3924
|
||||
ghcid_uuid_sha256: 6d787d5e-cc57-89f8-becf-8bb4fbf81878
|
||||
ghcid_numeric: 7888192593448114680
|
||||
record_id: 019ad9ec-7c9f-7e1e-949a-499bbc75e34e
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ROD-A-GN
|
||||
ghcid_numeric: 7888192593448114680
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2748026
|
||||
geonames_name: Roden
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.1371859
|
||||
longitude: 6.4335173
|
||||
source: google_maps
|
||||
distance_km: 1.4087218122369982
|
||||
geonames_id: 2748026
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:00.780426+00:00'
|
||||
source_archive: web/0014/noordenveld.nl
|
||||
claims_count: 12
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home-NL
|
||||
raw_value: Home-NL | Gemeente Noordenveld
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779515+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Noordenveld
|
||||
raw_value: Gemeente Noordenveld
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/header/div/div[1]/div[2]/div/a/svg[1]/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779530+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Verplicht
|
||||
raw_value: Verplicht
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/header/div/div[1]/div[3]/div/form/div[1]/label/svg/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779541+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Facebook
|
||||
raw_value: Facebook
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/footer/div[2]/div/div[3]/ul/li[1]/a/svg/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779551+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Instagram
|
||||
raw_value: Instagram
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/footer/div[2]/div/div[3]/ul/li[2]/a/svg/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779555+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: LinkedIn
|
||||
raw_value: LinkedIn
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/footer/div[2]/div/div[3]/ul/li[3]/a/svg/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779559+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Homepagina Nederlands
|
||||
raw_value: Homepagina Nederlands
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/head/meta[2]
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779639+00:00'
|
||||
- claim_type: email
|
||||
claim_value: postbus@noordenveld.nl
|
||||
raw_value: postbus@noordenveld.nl
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/main/div/div/article/div[2]/section[1]/div/div[2]/p[3]/a
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779840+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0880508888
|
||||
raw_value: 0880508888
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/main/div/div/article/div[2]/section[1]/div/div[2]/p[1]/a
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.779895+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/gemeentenoordenveld/
|
||||
raw_value: https://www.facebook.com/gemeentenoordenveld/
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/footer/div[2]/div/div[3]/ul/li[1]/a
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.780214+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeentenoordenveld
|
||||
raw_value: https://www.instagram.com/gemeentenoordenveld
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/footer/div[2]/div/div[3]/ul/li[2]/a
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.780223+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gemeente-noordenveld/
|
||||
raw_value: https://www.linkedin.com/company/gemeente-noordenveld/
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/footer/div[2]/div/div[3]/ul/li[3]/a
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.780230+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Noordenveld
|
||||
raw_value: Gemeente Noordenveld
|
||||
source_url: https://www.noordenveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:46.856894+00:00'
|
||||
xpath: /html/body/div[2]/div/header/div/div[1]/div[2]/div/a/svg[1]/title
|
||||
html_file: web/0014/noordenveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:23.958450+00:00'
|
||||
|
|
|
|||
|
|
@ -323,3 +323,126 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-DiGW
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-DIE-A-GW
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 7941a66a-b91d-5035-adc4-cd4be7def7a9
|
||||
identifier_url: urn:uuid:7941a66a-b91d-5035-adc4-cd4be7def7a9
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 79ce0db8-7bb9-8dc1-b57a-f2c23bedcb5d
|
||||
identifier_url: urn:uuid:79ce0db8-7bb9-8dc1-b57a-f2c23bedcb5d
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8776967809792568769'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7845-ad52-36157efa78da
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7845-ad52-36157efa78da
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-DIE-A-GW
|
||||
ghcid_original: NL-DR-DIE-A-GW
|
||||
ghcid_uuid: 7941a66a-b91d-5035-adc4-cd4be7def7a9
|
||||
ghcid_uuid_sha256: 79ce0db8-7bb9-8dc1-b57a-f2c23bedcb5d
|
||||
ghcid_numeric: 8776967809792568769
|
||||
record_id: 019ad9ec-7c9f-7845-ad52-36157efa78da
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-DIE-A-GW
|
||||
ghcid_numeric: 8776967809792568769
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756855
|
||||
geonames_name: Diever
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8592106
|
||||
longitude: 6.309254699999999
|
||||
source: google_maps
|
||||
distance_km: 1.1262040332105943
|
||||
geonames_id: 2756855
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:00.887651+00:00'
|
||||
source_archive: web/0015/gemeentewesterveld.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Gemeente Westerveld
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:00.886185+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@gemeentewesterveld.nl
|
||||
raw_value: info@gemeentewesterveld.nl
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/div[3]/div/p[1]/a[3]
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.886816+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '140521'
|
||||
raw_value: '140521'
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/div[3]/div/p[1]/a[1]
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.886960+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '0611434405'
|
||||
raw_value: '0611434405'
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/div[3]/div/p[1]/a[2]
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.886971+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/gemeente.Westerveld
|
||||
raw_value: https://www.facebook.com/gemeente.Westerveld
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/div[4]/div/p/a[1]
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.887318+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gemeentewesterveld
|
||||
raw_value: https://www.linkedin.com/company/gemeentewesterveld
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/div[4]/div/p/a[2]
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.887331+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeentewesterveld/
|
||||
raw_value: https://www.instagram.com/gemeentewesterveld/
|
||||
source_url: https://www.gemeentewesterveld.nl/
|
||||
retrieved_on: '2025-11-29T14:24:47.974615+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[1]/div[4]/div/p/a[3]
|
||||
html_file: web/0015/gemeentewesterveld.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:00.887341+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeentearchief Westerveld
|
||||
source: wikidata
|
||||
wikidata_id: ''
|
||||
provenance_note: Derived from wikidata_label_nl (web_claims had no valid org_name)
|
||||
extraction_timestamp: '2025-12-01T12:35:24.002321+00:00'
|
||||
|
|
|
|||
|
|
@ -513,3 +513,160 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-VrsGAT
|
||||
assigned_date: '2013-07-02'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-VRI-A-GA
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6a3c7461-657f-563d-93bc-8a670a464d26
|
||||
identifier_url: urn:uuid:6a3c7461-657f-563d-93bc-8a670a464d26
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 78d0d759-3bed-8329-bf0d-5175a988584f
|
||||
identifier_url: urn:uuid:78d0d759-3bed-8329-bf0d-5175a988584f
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8705694857964634921'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7768-b674-682e9a24a2ac
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7768-b674-682e9a24a2ac
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-VRI-A-GA
|
||||
ghcid_original: NL-DR-VRI-A-GA
|
||||
ghcid_uuid: 6a3c7461-657f-563d-93bc-8a670a464d26
|
||||
ghcid_uuid_sha256: 78d0d759-3bed-8329-bf0d-5175a988584f
|
||||
ghcid_numeric: 8705694857964634921
|
||||
record_id: 019ad9ec-7c9f-7768-b674-682e9a24a2ac
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-VRI-A-GA
|
||||
ghcid_numeric: 8705694857964634921
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745189
|
||||
geonames_name: Vries
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.079383
|
||||
longitude: 6.583025200000001
|
||||
source: google_maps
|
||||
distance_km: 0.8208560101654042
|
||||
geonames_id: 2745189
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020682+00:00'
|
||||
source_archive: web/0016/tynaarlo.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeentelijk archief
|
||||
raw_value: Gemeentelijk archief | Gemeente Tynaarlo
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:01.019985+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: In onze archieven zitten stukken over de meest uiteenlopende onderwerpen
|
||||
uit de geschiedenis van Tynaarlo. Een deel hiervan is openbaar en kunt u komen
|
||||
inzien. Bijvoorbeeld wanneer u historisch of stamboomonderzoek doet. Neem telefonisch
|
||||
contact met ons op via 0592 - 266 662 voor meer informatie of het plannen van
|
||||
een afspraak.
|
||||
raw_value: In onze archieven zitten stukken over de meest uiteenlopende onderwerpen
|
||||
uit de geschiedenis van Tynaarlo. Een deel hiervan is openbaar en kunt u komen
|
||||
inzien. Bijvoorbeeld wanneer u historisch of stamboomonderzoek doet. Neem telefonisch
|
||||
contact met ons op via 0592 - 266 662 voor meer informatie of het plannen van
|
||||
een afspraak.
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/head/meta[2]
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020079+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@tynaarlo.nl
|
||||
raw_value: info@tynaarlo.nl
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/main/article/div[2]/div/div/div/div/form/div[2]/div[1]/p/a[2]
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020346+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.tynaarlo.nl%2Fbestuur-en-organisatie%2Fgemeentelijk-archief&t=Gemeentelijk+archief
|
||||
raw_value: https://www.facebook.com/sharer.php?u=https%3A%2F%2Fwww.tynaarlo.nl%2Fbestuur-en-organisatie%2Fgemeentelijk-archief&t=Gemeentelijk+archief
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/main/section[2]/div[2]/div/div/div[1]/a
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020515+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://x.com/share?url=https%3A%2F%2Fwww.tynaarlo.nl%2Fbestuur-en-organisatie%2Fgemeentelijk-archief&text=Gemeentelijk+archief
|
||||
raw_value: https://x.com/share?url=https%3A%2F%2Fwww.tynaarlo.nl%2Fbestuur-en-organisatie%2Fgemeentelijk-archief&text=Gemeentelijk+archief
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/main/section[2]/div[2]/div/div/div[2]/a
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020520+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/GemeenteTynaarlo/
|
||||
raw_value: https://www.facebook.com/GemeenteTynaarlo/
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/footer/div[2]/div/div/div[3]/p[2]/a[2]
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020529+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://x.com/tynaarlo
|
||||
raw_value: https://x.com/tynaarlo
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/footer/div[2]/div/div/div[3]/p[2]/a[3]
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020533+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://nl.linkedin.com/company/gemeente-tynaarlo
|
||||
raw_value: https://nl.linkedin.com/company/gemeente-tynaarlo
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/footer/div[2]/div/div/div[3]/p[2]/a[4]
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020538+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gemeentetynaarlo/
|
||||
raw_value: https://www.instagram.com/gemeentetynaarlo/
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/body/div/footer/div[2]/div/div/div[3]/p[2]/a[5]
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.020542+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeentelijk archief
|
||||
raw_value: Gemeentelijk archief
|
||||
source_url: https://www.tynaarlo.nl/bestuur-en-organisatie/gemeentelijk-archief
|
||||
retrieved_on: '2025-11-29T14:24:48.197833+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0016/tynaarlo.nl/pages/bestuur-en-organisatie_gemeentelijk-archief.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.041370+00:00'
|
||||
|
|
|
|||
|
|
@ -333,3 +333,126 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 3
|
||||
enrichment_timestamp: '2025-11-30T12:47:15.735522+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-BAR-M-HMN
|
||||
ghcid_original: NL-DR-BAR-M-HMN
|
||||
ghcid_uuid: 248cab0d-fd18-58e1-bd54-fbcaa8362254
|
||||
ghcid_uuid_sha256: a58aac4e-4e70-8215-9868-262c50b6e207
|
||||
ghcid_numeric: 11928536015367578133
|
||||
record_id: 019ad9ec-7c9f-749c-8e0a-ecf8fde3dac9
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-BAR-M-HMN
|
||||
ghcid_numeric: 11928536015367578133
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759421
|
||||
geonames_name: Barger-Compascuum
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7577078
|
||||
longitude: 7.0253713
|
||||
source: google_maps
|
||||
distance_km: 1.986317904308829
|
||||
geonames_id: 2759421
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-BAR-M-HMN
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 248cab0d-fd18-58e1-bd54-fbcaa8362254
|
||||
identifier_url: urn:uuid:248cab0d-fd18-58e1-bd54-fbcaa8362254
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a58aac4e-4e70-8215-9868-262c50b6e207
|
||||
identifier_url: urn:uuid:a58aac4e-4e70-8215-9868-262c50b6e207
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11928536015367578133'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-749c-8e0a-ecf8fde3dac9
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-749c-8e0a-ecf8fde3dac9
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302803+00:00'
|
||||
source_archive: web/0017/harmoniummuseumnederland.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Harmonium Museum Nederland
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302081+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Lees alles over de achtergrond en de kerncollectie, die behouden
|
||||
bleef, van het Harmonium Museum Nederland, dat helaas is gesloten sinds eind
|
||||
2023.
|
||||
raw_value: Lees alles over de achtergrond en de kerncollectie, die behouden bleef,
|
||||
van het Harmonium Museum Nederland, dat helaas is gesloten sinds eind 2023.
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302225+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Harmonium Museum Nederland
|
||||
raw_value: Harmonium Museum Nederland
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302474+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@geelvinck.nl
|
||||
raw_value: info@geelvinck.nl
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/body/div[3]/div[2]/div/div/div[3]/aside[3]/p/a[3]
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302593+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31578695670'
|
||||
raw_value: '+31578695670'
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/body/div[3]/div[2]/div/div/div[3]/aside[3]/p/a[1]
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302634+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31206390747'
|
||||
raw_value: '+31206390747'
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/body/div[3]/div[2]/div/div/div[3]/aside[3]/p/a[2]
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.302638+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Harmonium Museum Nederland
|
||||
raw_value: Harmonium Museum Nederland
|
||||
source_url: https://harmoniummuseumnederland.nl/
|
||||
retrieved_on: '2025-11-29T14:24:50.775403+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0017/harmoniummuseumnederland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.084533+00:00'
|
||||
|
|
|
|||
|
|
@ -226,3 +226,73 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:00.368953+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 1.0
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-KLI-S-HCO
|
||||
ghcid_original: NL-DR-KLI-S-HCO
|
||||
ghcid_uuid: 5045b6da-cd44-52f1-8e01-f0d2cb33900b
|
||||
ghcid_uuid_sha256: d3276f52-a4da-8576-8781-6712d8a93b3d
|
||||
ghcid_numeric: 15215252266838295926
|
||||
record_id: 019ad9ec-7c9f-7a29-a243-7662b7ae37f3
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-KLI-S-HCO
|
||||
ghcid_numeric: 15215252266838295926
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2752648
|
||||
geonames_name: Klijndijk
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.831377499999995
|
||||
longitude: 6.8596127000000005
|
||||
source: google_maps
|
||||
distance_km: 0.03458314332726454
|
||||
geonames_id: 2752648
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-KLI-S-HCO
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 5045b6da-cd44-52f1-8e01-f0d2cb33900b
|
||||
identifier_url: urn:uuid:5045b6da-cd44-52f1-8e01-f0d2cb33900b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: d3276f52-a4da-8576-8781-6712d8a93b3d
|
||||
identifier_url: urn:uuid:d3276f52-a4da-8576-8781-6712d8a93b3d
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '15215252266838295926'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7a29-a243-7662b7ae37f3
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7a29-a243-7662b7ae37f3
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:01.672193+00:00'
|
||||
source_archive: web/0018/hvcarspeloderen.nl
|
||||
claims_count: 1
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: HV Carspel Oderen
|
||||
raw_value: HV Carspel Oderen
|
||||
source_url: https://hvcarspeloderen.nl/
|
||||
retrieved_on: '2025-11-29T14:25:39.658053+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0018/hvcarspeloderen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:01.671691+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: HV Carspel Oderen
|
||||
raw_value: HV Carspel Oderen
|
||||
source_url: https://hvcarspeloderen.nl/
|
||||
retrieved_on: '2025-11-29T14:25:39.658053+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0018/hvcarspeloderen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.111843+00:00'
|
||||
|
|
|
|||
|
|
@ -342,3 +342,164 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:00.425485+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 1.0
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-DWI-S-HV
|
||||
ghcid_original: NL-DR-DWI-S-HV
|
||||
ghcid_uuid: 7114db37-45b0-583a-bb60-7b2eaf2716c9
|
||||
ghcid_uuid_sha256: 54cbb9d7-c728-89b0-9da2-b2d94cee7236
|
||||
ghcid_numeric: 6110181655868631472
|
||||
record_id: 019ad9ec-7c9f-701e-a6af-be3524071dae
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-DWI-S-HV
|
||||
ghcid_numeric: 6110181655868631472
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756936
|
||||
geonames_name: De Wijk
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.672696699999996
|
||||
longitude: 6.2871961
|
||||
source: google_maps
|
||||
distance_km: 0.3494562795260166
|
||||
geonames_id: 2756936
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-DWI-S-HV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 7114db37-45b0-583a-bb60-7b2eaf2716c9
|
||||
identifier_url: urn:uuid:7114db37-45b0-583a-bb60-7b2eaf2716c9
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 54cbb9d7-c728-89b0-9da2-b2d94cee7236
|
||||
identifier_url: urn:uuid:54cbb9d7-c728-89b0-9da2-b2d94cee7236
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6110181655868631472'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-701e-a6af-be3524071dae
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-701e-a6af-be3524071dae
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:01.810413+00:00'
|
||||
source_archive: web/0019/historiedewijkkoekange.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Historische Vereniging De Wijk Koekange
|
||||
raw_value: Historische Vereniging De Wijk Koekange
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:01.809390+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Expositie, vragen, boeken en leuke acties. VOORVERKOOP!! Vanaf 3
|
||||
oktober 2025 kunt u kaarten voor de culturele avond op 17 oktober 2025 aanschaffen.
|
||||
Deze zijn te koop voor 10,00 euro in de Oudheidkamer onder de Wieker Meule,
|
||||
bij de COOP in Koekange en het dorpshuis in de Wijk. Dit jaar treedt DUO 2VOUDT
|
||||
op
|
||||
raw_value: Expositie, vragen, boeken en leuke acties. VOORVERKOOP!! Vanaf 3 oktober
|
||||
2025 kunt u kaarten voor de culturele avond op 17 oktober 2025 aanschaffen.
|
||||
Deze zijn te koop voor 10,00 euro in de Oudheidkamer onder de Wieker Meule,
|
||||
bij de COOP in Koekange en het dorpshuis in de Wijk. Dit jaar treedt DUO 2VOUDT
|
||||
op
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/head/meta[2]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:01.809529+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Historische Vereniging | De Wijk - Koekange | historisch beeldmateriaal
|
||||
van De Wijk en Koekange
|
||||
raw_value: Historische Vereniging | De Wijk - Koekange | historisch beeldmateriaal
|
||||
van De Wijk en Koekange
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/head/meta[6]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:01.809768+00:00'
|
||||
- claim_type: email
|
||||
claim_value: westerbeek.j@gmail.com
|
||||
raw_value: westerbeek.j@gmail.com
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[1]/div/div/p[62]/a
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.809966+00:00'
|
||||
- claim_type: email
|
||||
claim_value: bbheuvelman20@gmail.com
|
||||
raw_value: bbheuvelman20@gmail.com
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[1]/div/div/p[130]/a[1]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.809973+00:00'
|
||||
- claim_type: email
|
||||
claim_value: a.buiter2564@gmail.com
|
||||
raw_value: a.buiter2564@gmail.com
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[1]/div/div/p[214]/a[2]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.809990+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: http://www.facebook.com/historischeverenigingdewijkkoekange
|
||||
raw_value: http://www.facebook.com/historischeverenigingdewijkkoekange
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[1]/div/div/p[169]/a[1]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.810197+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/historischeverenigingdewijkkoekange
|
||||
raw_value: https://www.facebook.com/historischeverenigingdewijkkoekange
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[1]/div/div/p[209]/a[3]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:01.810214+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Nieuwsberichten
|
||||
raw_value: Nieuwsberichten
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[1]/div/h1
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:01.810275+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Historische Vereniging
|
||||
raw_value: Historische Vereniging | De Wijk - Koekange | historisch beeldmateriaal
|
||||
van De Wijk en Koekange
|
||||
source_url: https://historiedewijkkoekange.nl/
|
||||
retrieved_on: '2025-11-29T14:24:49.297397+00:00'
|
||||
xpath: /html/head/meta[6]
|
||||
html_file: web/0019/historiedewijkkoekange.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.150937+00:00'
|
||||
|
|
|
|||
|
|
@ -330,3 +330,77 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:01.370669+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 1.0
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-HOO-S-HKH
|
||||
ghcid_original: NL-DR-HOO-S-HKH
|
||||
ghcid_uuid: 403fca82-9ff4-54a1-8064-433ce91a939f
|
||||
ghcid_uuid_sha256: 44ba3e95-1dc8-835f-9725-e249d88da845
|
||||
ghcid_numeric: 4952339550418023263
|
||||
record_id: 019ad9ec-7c9f-7515-a5b2-e95aa9769a40
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-HOO-S-HKH
|
||||
ghcid_numeric: 4952339550418023263
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753719
|
||||
geonames_name: Hoogeveen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7200838
|
||||
longitude: 6.4757826
|
||||
source: google_maps
|
||||
distance_km: 0.2765427989681702
|
||||
geonames_id: 2753719
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-HOO-S-HKH
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 403fca82-9ff4-54a1-8064-433ce91a939f
|
||||
identifier_url: urn:uuid:403fca82-9ff4-54a1-8064-433ce91a939f
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 44ba3e95-1dc8-835f-9725-e249d88da845
|
||||
identifier_url: urn:uuid:44ba3e95-1dc8-835f-9725-e249d88da845
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4952339550418023263'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7515-a5b2-e95aa9769a40
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7515-a5b2-e95aa9769a40
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:01.943174+00:00'
|
||||
source_archive: web/0020/historischekringhoogeveen.nl
|
||||
claims_count: 2
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Historische Kring Hoogeveen
|
||||
source_url: https://www.historischekringhoogeveen.nl/
|
||||
retrieved_on: '2025-11-29T14:24:51.613006+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0020/historischekringhoogeveen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:01.942281+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Description
|
||||
raw_value: Description
|
||||
source_url: https://www.historischekringhoogeveen.nl/
|
||||
retrieved_on: '2025-11-29T14:24:51.613006+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0020/historischekringhoogeveen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:01.942394+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Historische Kring Hoogeveen
|
||||
source: original_entry
|
||||
provenance_note: Derived from original_entry.organisatie (no valid web_claims or
|
||||
wikidata)
|
||||
extraction_timestamp: '2025-12-01T12:35:24.184824+00:00'
|
||||
|
|
|
|||
|
|
@ -259,3 +259,163 @@ notes: '- Active historical society covering Nijeveen and Kolderveen
|
|||
- 5-star Google rating
|
||||
|
||||
'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-NIJ-S-HN
|
||||
ghcid_original: NL-DR-NIJ-S-HN
|
||||
ghcid_uuid: dd93ec59-86fa-58f0-8697-47dd4941238c
|
||||
ghcid_uuid_sha256: ed1cb3b9-9b4b-8840-93ec-f20b4a728021
|
||||
ghcid_numeric: 17085728696092563520
|
||||
record_id: 019ad9ec-7c9f-7449-b2ab-af4824b9b133
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-NIJ-S-HN
|
||||
ghcid_numeric: 17085728696092563520
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750075
|
||||
geonames_name: Nijeveen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.729264
|
||||
longitude: 6.164815
|
||||
source: google_maps
|
||||
distance_km: 0.5774388247261747
|
||||
geonames_id: 2750075
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-NIJ-S-HN
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: dd93ec59-86fa-58f0-8697-47dd4941238c
|
||||
identifier_url: urn:uuid:dd93ec59-86fa-58f0-8697-47dd4941238c
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: ed1cb3b9-9b4b-8840-93ec-f20b4a728021
|
||||
identifier_url: urn:uuid:ed1cb3b9-9b4b-8840-93ec-f20b4a728021
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '17085728696092563520'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7449-b2ab-af4824b9b133
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7449-b2ab-af4824b9b133
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103247+00:00'
|
||||
source_archive: web/0021/historischeverenigingnijeveen.nl
|
||||
claims_count: 10
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: HVN Nijeveen
|
||||
raw_value: HVN Nijeveen
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:02.102913+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Historische Vereniging Nijeveen.
|
||||
raw_value: Historische Vereniging Nijeveen.
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:02.102971+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@historischeverenigingnijeveen.nl
|
||||
raw_value: info@historischeverenigingnijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/a[1]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103104+00:00'
|
||||
- claim_type: email
|
||||
claim_value: voorzitter@historischeverenigingnijeveen.nl
|
||||
raw_value: voorzitter@historischeverenigingnijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/a[2]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103108+00:00'
|
||||
- claim_type: email
|
||||
claim_value: secretariaat@historischeverenigingnijeveen.nl
|
||||
raw_value: secretariaat@historischeverenigingnijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/a[3]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103111+00:00'
|
||||
- claim_type: email
|
||||
claim_value: penningmeester@historischeverenigingnijeveen.nl
|
||||
raw_value: penningmeester@historischeverenigingnijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/a[4]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103114+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@beeldbanknijeveen.nl
|
||||
raw_value: info@beeldbanknijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/p[6]/a
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103117+00:00'
|
||||
- claim_type: email
|
||||
claim_value: redactie@historischeverenigingnijeveen.nl
|
||||
raw_value: redactie@historischeverenigingnijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/p[7]/a[1]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103120+00:00'
|
||||
- claim_type: email
|
||||
claim_value: redactie@historischeverrenigingnijeveen.nl
|
||||
raw_value: redactie@historischeverrenigingnijeveen.nl
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/p[7]/a[2]
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103123+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Adresgegevens
|
||||
raw_value: Adresgegevens
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/body/div[6]/div/h1
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:02.103214+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: HVN Nijeveen
|
||||
raw_value: HVN Nijeveen
|
||||
source_url: https://www.historischeverenigingnijeveen.nl/nl/hvn
|
||||
retrieved_on: '2025-11-29T12:31:55.027217+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0021/historischeverenigingnijeveen.nl/pages/nl_adresgegevens.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.219100+00:00'
|
||||
|
|
|
|||
|
|
@ -486,3 +486,133 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 15
|
||||
enrichment_timestamp: '2025-11-30T12:47:39.846443+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-SCH-M-ISM
|
||||
ghcid_original: NL-DR-SCH-M-ISM
|
||||
ghcid_uuid: 23064e88-c4e9-5d54-9811-9c7608e79731
|
||||
ghcid_uuid_sha256: 1cfe3aea-3944-8e7b-b61e-0f05b271c5ce
|
||||
ghcid_numeric: 2089172054804041339
|
||||
record_id: 019ad9ec-7c9f-7d6e-a6b3-4354364b77f5
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-SCH-M-ISM
|
||||
ghcid_numeric: 2089172054804041339
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2747415
|
||||
geonames_name: Schutwijk
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6780227
|
||||
longitude: 6.9503398
|
||||
source: google_maps
|
||||
distance_km: 2.551512266250407
|
||||
geonames_id: 2747415
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-SCH-M-ISM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 23064e88-c4e9-5d54-9811-9c7608e79731
|
||||
identifier_url: urn:uuid:23064e88-c4e9-5d54-9811-9c7608e79731
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 1cfe3aea-3944-8e7b-b61e-0f05b271c5ce
|
||||
identifier_url: urn:uuid:1cfe3aea-3944-8e7b-b61e-0f05b271c5ce
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2089172054804041339'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7d6e-a6b3-4354364b77f5
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7d6e-a6b3-4354364b77f5
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429976+00:00'
|
||||
source_archive: web/0022/smalspoorcentrum.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Industrieel Smalspoor Museum Industrieel Smalspoor Museum
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:02.428857+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Industrieel Smalspoor Museum
|
||||
raw_value: Industrieel Smalspoor Museum
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429381+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0591-303061
|
||||
raw_value: 0591-303061
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/body/section/footer/div[1]/div/div/div[1]/div/span[1]/a
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429737+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/smalspoorcentrum
|
||||
raw_value: https://www.facebook.com/smalspoorcentrum
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/body/section/div[1]/div/div/div[3]/div/div[1]/a[1]
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429822+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/industrieel_smalspoor_museum/
|
||||
raw_value: https://www.instagram.com/industrieel_smalspoor_museum/
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/body/section/div[1]/div/div/div[3]/div/div[1]/a[2]
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429827+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/watch?v=bueBRWgi6Hw&ab_channel=MuseumTV
|
||||
raw_value: https://www.youtube.com/watch?v=bueBRWgi6Hw&ab_channel=MuseumTV
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/body/section/footer/div[1]/div/div/div[3]/div/ul/li[3]/a
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429855+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: zoeken...
|
||||
raw_value: zoeken...
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/body/section/div[2]/div/div/div[1]/h1
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:02.429890+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Industrieel Smalspoor Museum
|
||||
raw_value: Industrieel Smalspoor Museum
|
||||
source_url: http://www.smalspoorcentrum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:08.048987+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0022/smalspoorcentrum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.261238+00:00'
|
||||
|
|
|
|||
|
|
@ -557,3 +557,136 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 5
|
||||
enrichment_timestamp: '2025-11-30T12:47:22.334508+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-FRE-M-MZ
|
||||
ghcid_original: NL-DR-FRE-M-MZ
|
||||
ghcid_uuid: 93ad068d-b2f6-5aad-ab09-e9af903d76ae
|
||||
ghcid_uuid_sha256: 5b0bc26d-bfb8-820a-a931-d810e5ea9141
|
||||
ghcid_numeric: 6560551058819027466
|
||||
record_id: 019ad9ec-7c9f-7bd2-9204-08ac8fab0cb1
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-FRE-M-MZ
|
||||
ghcid_numeric: 6560551058819027466
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755824
|
||||
geonames_name: Frederiksoord
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.850303999999994
|
||||
longitude: 6.1963824999999995
|
||||
source: google_maps
|
||||
distance_km: 1.2698844004361416
|
||||
geonames_id: 2755824
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-FRE-M-MZ
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 93ad068d-b2f6-5aad-ab09-e9af903d76ae
|
||||
identifier_url: urn:uuid:93ad068d-b2f6-5aad-ab09-e9af903d76ae
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5b0bc26d-bfb8-820a-a931-d810e5ea9141
|
||||
identifier_url: urn:uuid:5b0bc26d-bfb8-820a-a931-d810e5ea9141
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6560551058819027466'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7bd2-9204-08ac8fab0cb1
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7bd2-9204-08ac8fab0cb1
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:02.855034+00:00'
|
||||
source_archive: web/0023/miramar-zeemuseum.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Miramar Zeemuseum
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:02.853829+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Wat ooit begon met de fascinatie voor een schelp, gevonden op het
|
||||
strand van Mallorca, is uitgegroeid tot een waar natuurhistorisch museum in
|
||||
Vledder.
|
||||
raw_value: Wat ooit begon met de fascinatie voor een schelp, gevonden op het strand
|
||||
van Mallorca, is uitgegroeid tot een waar natuurhistorisch museum in Vledder.
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:02.853950+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Miramar Zeemuseum
|
||||
raw_value: Miramar Zeemuseum
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:02.854347+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/profile.php?id=100057185212561
|
||||
raw_value: https://www.facebook.com/profile.php?id=100057185212561
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/body/div[3]/section/div/div[2]/div/div[2]/div/div/span[1]/a
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.854788+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/miramarzeemuseum/
|
||||
raw_value: https://www.instagram.com/miramarzeemuseum/
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/body/div[3]/section/div/div[2]/div/div[2]/div/div/span[2]/a
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.854797+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Miramar-zeemuseum-1616927985215093/
|
||||
raw_value: https://www.facebook.com/Miramar-zeemuseum-1616927985215093/
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/body/div[6]/section/div/div/div/div[3]/div/div/span[1]/a
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:02.854819+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Een natuurhistorisch museum in Vledder
|
||||
raw_value: Een natuurhistorisch museum in Vledder
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/body/div[2]/div[3]/div/div/div/h1
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:02.854875+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Miramar Zeemuseum
|
||||
raw_value: Miramar Zeemuseum
|
||||
source_url: https://miramar-zeemuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:26:04.763022+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0023/miramar-zeemuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.311258+00:00'
|
||||
|
|
|
|||
|
|
@ -565,3 +565,127 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 14
|
||||
enrichment_timestamp: '2025-11-30T12:47:38.356156+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-FRE-M-MP
|
||||
ghcid_original: NL-DR-FRE-M-MP
|
||||
ghcid_uuid: 4171cd57-4d4a-50ee-a4df-3d164632c802
|
||||
ghcid_uuid_sha256: a7e4ae6b-e1ef-831b-81ed-9cef01973b99
|
||||
ghcid_numeric: 12097986277399266075
|
||||
record_id: 019ad9ec-7c9f-71ad-812d-0c5e4c39b83b
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-FRE-M-MP
|
||||
ghcid_numeric: 12097986277399266075
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755824
|
||||
geonames_name: Frederiksoord
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8447964
|
||||
longitude: 6.1891913
|
||||
source: google_maps
|
||||
distance_km: 0.26469528950594207
|
||||
geonames_id: 2755824
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-FRE-M-MP
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 4171cd57-4d4a-50ee-a4df-3d164632c802
|
||||
identifier_url: urn:uuid:4171cd57-4d4a-50ee-a4df-3d164632c802
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a7e4ae6b-e1ef-831b-81ed-9cef01973b99
|
||||
identifier_url: urn:uuid:a7e4ae6b-e1ef-831b-81ed-9cef01973b99
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12097986277399266075'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-71ad-812d-0c5e4c39b83b
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-71ad-812d-0c5e4c39b83b
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:03.285487+00:00'
|
||||
source_archive: web/0024/proefkolonie.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum De Proefkolonie
|
||||
raw_value: Museum De Proefkolonie - Zie. Beleef. Verwonder.
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.284419+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Ga 200 jaar terug in de tijd en beleef het verhaal van Johannes van
|
||||
den Bosch en de eerste kolonisten (paupers & pioniers) die in de Vrije Kolonien
|
||||
van Weldadigheid een nieuwe toekomst vonden.
|
||||
raw_value: Ga 200 jaar terug in de tijd en beleef het verhaal van Johannes van
|
||||
den Bosch en de eerste kolonisten (paupers & pioniers) die in de Vrije Kolonien
|
||||
van Weldadigheid een nieuwe toekomst vonden.
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:03.284543+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@proefkolonie.nl
|
||||
raw_value: info@proefkolonie.nl
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/body/footer/div[2]/div/div[1]/div[3]/div[2]/p[2]/a[2]
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.284953+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0521 725 980
|
||||
raw_value: 0521 725 980
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/body/footer/div[2]/div/div[1]/div[3]/div[2]/p[2]/a[1]
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.285027+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumdeproefkolonie/
|
||||
raw_value: https://www.instagram.com/museumdeproefkolonie/
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/body/footer/div[2]/div/div[1]/div[4]/div[1]/div[2]/div/span[1]/a
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.285127+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/museumdeproefkolonie#
|
||||
raw_value: https://www.facebook.com/museumdeproefkolonie#
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/body/footer/div[2]/div/div[1]/div[4]/div[1]/div[2]/div/span[2]/a
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.285133+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum De Proefkolonie
|
||||
raw_value: Museum De Proefkolonie
|
||||
source_url: https://proefkolonie.nl/
|
||||
retrieved_on: '2025-11-29T14:28:36.926801+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0024/proefkolonie.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.365526+00:00'
|
||||
|
|
|
|||
|
|
@ -482,3 +482,176 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 17
|
||||
enrichment_timestamp: '2025-11-30T12:47:41.215639+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-WEM-M-MWZ-museum_de_wemme_zuidwolde
|
||||
ghcid_original: NL-DR-WEM-M-MWZ-museum_de_wemme_zuidwolde
|
||||
ghcid_uuid: 0c178c3d-fd17-569c-afcf-82c5d005f526
|
||||
ghcid_uuid_sha256: b649e16b-9ebb-8aa3-9f23-3feed54d19f2
|
||||
ghcid_numeric: 13135277640543570595
|
||||
record_id: 019ad9ec-7c9f-75a5-91ce-0afd0e75fe88
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-WEM-M-MWZ-museum_de_wemme_zuidwolde
|
||||
ghcid_numeric: 13135277640543570595
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2744837
|
||||
geonames_name: Wemmenhove
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6666106
|
||||
longitude: 6.418415899999999
|
||||
source: google_maps
|
||||
distance_km: 0.8889604018881859
|
||||
geonames_id: 2744837
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-DR-WEM-M-MWZ
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-WEM-M-MWZ-museum_de_wemme_zuidwolde
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 0c178c3d-fd17-569c-afcf-82c5d005f526
|
||||
identifier_url: urn:uuid:0c178c3d-fd17-569c-afcf-82c5d005f526
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b649e16b-9ebb-8aa3-9f23-3feed54d19f2
|
||||
identifier_url: urn:uuid:b649e16b-9ebb-8aa3-9f23-3feed54d19f2
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13135277640543570595'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-75a5-91ce-0afd0e75fe88
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-75a5-91ce-0afd0e75fe88
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:03.370593+00:00'
|
||||
source_archive: web/0025/dewemme.nl
|
||||
claims_count: 10
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Museum de Wemme Zuidwolde
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.369684+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: BTC Art
|
||||
raw_value: BTC Art - Shine
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[7]/div/div/div[3]/div/div/svg/g/a[1]/polygon/title
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.369697+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Fishjewel
|
||||
raw_value: Fishjewel - Home
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[7]/div/div/div[3]/div/div/svg/g/a[2]/polygon/title
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.369702+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: BTC art
|
||||
raw_value: BTC art - Shame
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[7]/div/div/div[3]/div/div/svg/g/a[4]/polygon/title
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.369711+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Close Home Over het museum Museum Exposities Kijk ons nou ... [2025]
|
||||
TYPISCH.NL [2024] Beelden in de tuin [2025] Handkarren Zien & Doen Kinderen
|
||||
Rondleidingen Arrangementen Bezoekinformatie Toegangsprijzen Openingstijden
|
||||
Waar vind je ons? Toegankelijkheid Contact kijk ÓNS nou ... 750 jaar uiterlijk
|
||||
vertoon Expositie 2025 Lees meer over deze expositie Weer open vanaf 28 maart
|
||||
2025 […]
|
||||
raw_value: Close Home Over het museum Museum Exposities Kijk ons nou ... [2025]
|
||||
TYPISCH.NL [2024] Beelden in de tuin [2025] Handkarren Zien & Doen Kinderen
|
||||
Rondleidingen Arrangementen Bezoekinformatie Toegangsprijzen Openingstijden
|
||||
Waar vind je ons? Toegankelijkheid Contact kijk ÓNS nou ... 750 jaar uiterlijk
|
||||
vertoon Expositie 2025 Lees meer over deze expositie Weer open vanaf 28 maart
|
||||
2025 […]
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_description
|
||||
extraction_timestamp: '2025-12-01T10:44:03.369907+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum de Wemme Zuidwolde
|
||||
raw_value: Museum de Wemme Zuidwolde
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:03.369988+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0528373332
|
||||
raw_value: 0528373332
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[6]/div[2]/div/div[4]/a
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.370280+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://facebook.com/de.wemme
|
||||
raw_value: https://facebook.com/de.wemme
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[6]/div[2]/div/div[2]/div/a[1]
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.370408+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/wemme7921kb/
|
||||
raw_value: https://www.instagram.com/wemme7921kb/
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[6]/div[2]/div/div[2]/div/a[2]
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.370414+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: kijk ÓNS nou ...
|
||||
raw_value: kijk ÓNS nou ...
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/body/section[1]/div[2]/div/div/div[1]/div/div[1]/div/div/div[1]/div/h1[1]
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.370465+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum de Wemme Zuidwolde
|
||||
raw_value: Museum de Wemme Zuidwolde
|
||||
source_url: https://www.dewemme.nl/
|
||||
retrieved_on: '2025-11-29T14:26:07.259076+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0025/dewemme.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.413808+00:00'
|
||||
|
|
|
|||
|
|
@ -478,3 +478,136 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:21.652274+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:27:29.798042+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-VLE-M-MVKG-museum_valse_kunstkunst_met_een_glimlach
|
||||
ghcid_original: NL-DR-VLE-M-MVKG-museum_valse_kunstkunst_met_een_glimlach
|
||||
ghcid_uuid: 7962290b-1591-5c8c-ac62-6b0143b524c9
|
||||
ghcid_uuid_sha256: 5cf42af6-e931-8ce0-9cde-50ea0629e095
|
||||
ghcid_numeric: 6698025785769401568
|
||||
record_id: 019ad9ec-7c9f-7116-a9cf-99cc455eac12
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-VLE-M-MVKG-museum_valse_kunstkunst_met_een_glimlach
|
||||
ghcid_numeric: 6698025785769401568
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745449
|
||||
geonames_name: Vledder
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8574333
|
||||
longitude: 6.2135468
|
||||
source: google_maps
|
||||
distance_km: 0.6057953833883468
|
||||
geonames_id: 2745449
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-DR-VLE-M-MVKG
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-VLE-M-MVKG-museum_valse_kunstkunst_met_een_glimlach
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 7962290b-1591-5c8c-ac62-6b0143b524c9
|
||||
identifier_url: urn:uuid:7962290b-1591-5c8c-ac62-6b0143b524c9
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5cf42af6-e931-8ce0-9cde-50ea0629e095
|
||||
identifier_url: urn:uuid:5cf42af6-e931-8ce0-9cde-50ea0629e095
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6698025785769401568'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7116-a9cf-99cc455eac12
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7116-a9cf-99cc455eac12
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778745+00:00'
|
||||
source_archive: web/0026/museumvalsekunst.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Valse Kunst
|
||||
raw_value: Museum Valse Kunst – Kunst met een glimlach
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/head/title[1]
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778078+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumvalsekunst.nl
|
||||
raw_value: info@museumvalsekunst.nl
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[3]/div/div[1]/div/div[2]/div[1]/div/p[2]/a
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778442+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/valsekunst
|
||||
raw_value: https://www.facebook.com/valsekunst
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[6]/div/div/div/div[2]/div/div/span[1]/a
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778584+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/MuseumsVledder
|
||||
raw_value: https://twitter.com/MuseumsVledder
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[6]/div/div/div/div[2]/div/div/span[2]/a
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778589+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCHXBVgzI2Cpz-An370a-a3w
|
||||
raw_value: https://www.youtube.com/channel/UCHXBVgzI2Cpz-An370a-a3w
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[6]/div/div/div/div[2]/div/div/span[3]/a
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778594+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumvalsekunst/
|
||||
raw_value: https://www.instagram.com/museumvalsekunst/
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[6]/div/div/div/div[2]/div/div/span[4]/a
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778598+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Valse Kunst:Kunst met een glimlach
|
||||
raw_value: Museum Valse Kunst:Kunst met een glimlach
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[2]/section[1]/div/div/div/div[2]/div/h1
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:03.778634+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Valse Kunst:Kunst met een glimlach
|
||||
raw_value: Museum Valse Kunst:Kunst met een glimlach
|
||||
source_url: https://museumvalsekunst.nl/
|
||||
retrieved_on: '2025-11-29T14:27:27.904423+00:00'
|
||||
xpath: /html/body/div[2]/section[1]/div/div/div/div[2]/div/h1
|
||||
html_file: web/0026/museumvalsekunst.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:24.456066+00:00'
|
||||
|
|
|
|||
|
|
@ -630,21 +630,9 @@ google_maps_search_query: Stichting "Museum van Papierknipkunst", Burgemeester G
|
|||
van Weezelplein 10, Westerbork, Netherlands
|
||||
web_enrichment:
|
||||
web_archives:
|
||||
- url: https://www.museumvanpapierknipkunst.nl/
|
||||
directory: web/0027/museumvanpapierknipkunst.nl
|
||||
pages_archived: 0
|
||||
archive_method: wget_warc_deep
|
||||
warc_file: archive.warc.gz
|
||||
warc_size_bytes: 2337
|
||||
warc_format: ISO 28500
|
||||
- url: https://www.papierknipmuseum.nl/
|
||||
- url: http://www.papierknipmuseum.nl/
|
||||
directory: web/0027/papierknipmuseum.nl
|
||||
pages_archived: 1
|
||||
archive_method: wget_warc_deep
|
||||
warc_file: archive.warc.gz
|
||||
warc_size_bytes: 28504
|
||||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:21.700121+00:00'
|
||||
web_archive_timestamp: '2025-12-01T11:43:59.682251+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:26:08.773588+00:00'
|
||||
museum_register_enrichment:
|
||||
museum_name: Museum van Papierknipkunst
|
||||
|
|
@ -657,3 +645,77 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 4
|
||||
enrichment_timestamp: '2025-11-30T12:47:21.409672+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-WES-M-MP
|
||||
ghcid_original: NL-DR-WES-M-MP
|
||||
ghcid_uuid: 876148ae-5c86-5813-9495-b08430ef22db
|
||||
ghcid_uuid_sha256: 3bbc1352-49a3-8f58-a68f-91c0f156e867
|
||||
ghcid_numeric: 4304336588003037016
|
||||
record_id: 019ad9ec-7c9f-71df-bd98-59919a23fd80
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-WES-M-MP
|
||||
ghcid_numeric: 4304336588003037016
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2744769
|
||||
geonames_name: Westerbork
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8503289
|
||||
longitude: 6.6075323
|
||||
source: google_maps
|
||||
distance_km: 0.09577573106215277
|
||||
geonames_id: 2744769
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-WES-M-MP
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 876148ae-5c86-5813-9495-b08430ef22db
|
||||
identifier_url: urn:uuid:876148ae-5c86-5813-9495-b08430ef22db
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 3bbc1352-49a3-8f58-a68f-91c0f156e867
|
||||
identifier_url: urn:uuid:3bbc1352-49a3-8f58-a68f-91c0f156e867
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4304336588003037016'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-71df-bd98-59919a23fd80
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-71df-bd98-59919a23fd80
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum van Papierknipkunst
|
||||
source: wikidata
|
||||
wikidata_id: ''
|
||||
provenance_note: Derived from wikidata_label_nl (web_claims had no valid org_name)
|
||||
extraction_timestamp: '2025-12-01T12:35:24.508157+00:00'
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T12:24:53.363590+00:00'
|
||||
source_archive: web/0027/papierknipmuseum.nl
|
||||
claims_count: 2
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: HOME
|
||||
raw_value: HOME
|
||||
source_url: http://www.papierknipmuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0027/papierknipmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T12:24:53.356977+00:00'
|
||||
- claim_type: email
|
||||
claim_value: knipkunst@gmail.com
|
||||
raw_value: knipkunst@gmail.com
|
||||
source_url: http://www.papierknipmuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[1]/div/div/div/div/div/div/div/div/div/div[4]/div/div/div[2]/div/div[1]/a
|
||||
html_file: web/0027/papierknipmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T12:24:53.362796+00:00'
|
||||
|
|
|
|||
|
|
@ -327,3 +327,127 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 5
|
||||
enrichment_timestamp: '2025-11-30T12:47:22.450831+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ELD-S-AD
|
||||
ghcid_original: NL-DR-ELD-S-AD
|
||||
ghcid_uuid: 07651018-103b-5056-925e-0757d9c1ee8d
|
||||
ghcid_uuid_sha256: 7a988342-eb7a-8286-a52c-d67d4bbf3093
|
||||
ghcid_numeric: 8833954992528962182
|
||||
record_id: 019ad9ec-7c9f-7b83-8836-8bedef7d75e1
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ELD-S-AD
|
||||
ghcid_numeric: 8833954992528962182
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756222
|
||||
geonames_name: Eldijk
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.694581199999995
|
||||
longitude: 6.780526399999999
|
||||
source: google_maps
|
||||
distance_km: 2.588524127750259
|
||||
geonames_id: 2756222
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ELD-S-AD
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 07651018-103b-5056-925e-0757d9c1ee8d
|
||||
identifier_url: urn:uuid:07651018-103b-5056-925e-0757d9c1ee8d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7a988342-eb7a-8286-a52c-d67d4bbf3093
|
||||
identifier_url: urn:uuid:7a988342-eb7a-8286-a52c-d67d4bbf3093
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8833954992528962182'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7b83-8836-8bedef7d75e1
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7b83-8836-8bedef7d75e1
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:04.212422+00:00'
|
||||
source_archive: web/0028/aolddaoln.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.210876+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Behoud van de geschiedenis en cultuur van Dalen en de naburige dorpen
|
||||
door middel van tentoonstellingen, onderzoek en evenementen. Vier samen met
|
||||
ons ons
|
||||
raw_value: Behoud van de geschiedenis en cultuur van Dalen en de naburige dorpen
|
||||
door middel van tentoonstellingen, onderzoek en evenementen. Vier samen met
|
||||
ons ons
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:04.211126+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Aold Daol'n
|
||||
raw_value: Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:04.211381+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+310638726115'
|
||||
raw_value: '+310638726115'
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/body/div[2]/section[2]/div/div/div/section[1]/div/div[3]/div/div[2]/div/ul/li[2]/a
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.211846+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/people/Stichting-Aold-Daoln/100069784284414/
|
||||
raw_value: https://www.facebook.com/people/Stichting-Aold-Daoln/100069784284414/
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/body/div[2]/section[2]/div/div/div/section[1]/div/div[4]/div/div[2]/div/ul/li/a
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.212004+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Ontdek het verleden van Dalen met Aold Daol'n
|
||||
raw_value: Ontdek het verleden van Dalen met Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/body/main/div/div/section[1]/div[3]/div[1]/div/div[1]/div/h1
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.212155+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Aold Daol'n
|
||||
raw_value: Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:14.597135+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0028/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.548206+00:00'
|
||||
|
|
|
|||
|
|
@ -504,3 +504,127 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:21.766794+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:26:17.137530+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-DAL-M-AD
|
||||
ghcid_original: NL-DR-DAL-M-AD
|
||||
ghcid_uuid: ff360d50-1672-5a07-9191-8ba0fb623bc8
|
||||
ghcid_uuid_sha256: 5d7bb000-3407-8ce2-9808-f7cc2a8082d9
|
||||
ghcid_numeric: 6736171182582115554
|
||||
record_id: 019ad9ec-7c9f-75e8-9948-0fdff899f7ae
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-DAL-M-AD
|
||||
ghcid_numeric: 6736171182582115554
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2757857
|
||||
geonames_name: Dalen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7007245
|
||||
longitude: 6.7540765
|
||||
source: google_maps
|
||||
distance_km: 0.23851424452724343
|
||||
geonames_id: 2757857
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-DAL-M-AD
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: ff360d50-1672-5a07-9191-8ba0fb623bc8
|
||||
identifier_url: urn:uuid:ff360d50-1672-5a07-9191-8ba0fb623bc8
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5d7bb000-3407-8ce2-9808-f7cc2a8082d9
|
||||
identifier_url: urn:uuid:5d7bb000-3407-8ce2-9808-f7cc2a8082d9
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6736171182582115554'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-75e8-9948-0fdff899f7ae
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-75e8-9948-0fdff899f7ae
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:04.621248+00:00'
|
||||
source_archive: web/0029/aolddaoln.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.620027+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Behoud van de geschiedenis en cultuur van Dalen en de naburige dorpen
|
||||
door middel van tentoonstellingen, onderzoek en evenementen. Vier samen met
|
||||
ons ons
|
||||
raw_value: Behoud van de geschiedenis en cultuur van Dalen en de naburige dorpen
|
||||
door middel van tentoonstellingen, onderzoek en evenementen. Vier samen met
|
||||
ons ons
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:04.620328+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Aold Daol'n
|
||||
raw_value: Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:04.620596+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+310638726115'
|
||||
raw_value: '+310638726115'
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/body/div[2]/section[2]/div/div/div/section[1]/div/div[3]/div/div[2]/div/ul/li[2]/a
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.620881+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/people/Stichting-Aold-Daoln/100069784284414/
|
||||
raw_value: https://www.facebook.com/people/Stichting-Aold-Daoln/100069784284414/
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/body/div[2]/section[2]/div/div/div/section[1]/div/div[4]/div/div[2]/div/ul/li/a
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.621032+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Ontdek het verleden van Dalen met Aold Daol'n
|
||||
raw_value: Ontdek het verleden van Dalen met Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/body/main/div/div/section[1]/div[3]/div[1]/div/div[1]/div/h1
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.621081+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Aold Daol'n
|
||||
raw_value: Aold Daol'n
|
||||
source_url: https://www.aolddaoln.nl/
|
||||
retrieved_on: '2025-11-29T14:26:16.952349+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0029/aolddaoln.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.592496+00:00'
|
||||
|
|
|
|||
|
|
@ -867,3 +867,135 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 5
|
||||
enrichment_timestamp: '2025-11-30T12:47:22.458666+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-VEE-M-B
|
||||
ghcid_original: NL-DR-VEE-M-B
|
||||
ghcid_uuid: 255080ac-3362-56b8-ae1e-4fa54cb372e2
|
||||
ghcid_uuid_sha256: 24d23853-8152-8aca-bc57-8a446b043141
|
||||
ghcid_numeric: 2653245061777779402
|
||||
record_id: 019ad9ec-7c9f-7c52-84e8-370a296897a5
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-VEE-M-B
|
||||
ghcid_numeric: 2653245061777779402
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745764
|
||||
geonames_name: Veenhuizen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.040727999999994
|
||||
longitude: 6.3899140999999995
|
||||
source: google_maps
|
||||
distance_km: 1.2008806613211878
|
||||
geonames_id: 2745764
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-VEE-M-B
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 255080ac-3362-56b8-ae1e-4fa54cb372e2
|
||||
identifier_url: urn:uuid:255080ac-3362-56b8-ae1e-4fa54cb372e2
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 24d23853-8152-8aca-bc57-8a446b043141
|
||||
identifier_url: urn:uuid:24d23853-8152-8aca-bc57-8a446b043141
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2653245061777779402'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7c52-84e8-370a296897a5
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7c52-84e8-370a296897a5
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:04.705051+00:00'
|
||||
source_archive: web/0030/gevangenismuseum.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Gevangenismuseum Veenhuizen
|
||||
raw_value: Gevangenismuseum Veenhuizen
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.703139+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Gevangenismuseum Veenhuizen - Bij het Gevangenismuseum bieden we
|
||||
verschillende arrangementen, rondleidingen en andere leuke activiteiten.
|
||||
raw_value: Gevangenismuseum Veenhuizen - Bij het Gevangenismuseum bieden we verschillende
|
||||
arrangementen, rondleidingen en andere leuke activiteiten.
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:04.703308+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0592388264
|
||||
raw_value: 0592388264
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/section[1]/div/div[2]/div/section/div/div[4]/div/div[2]/div/p[1]/a[1]
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.704168+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://nl-nl.facebook.com/gevangenismuseum/
|
||||
raw_value: https://nl-nl.facebook.com/gevangenismuseum/
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/header/section[1]/div/div[1]/div/div[3]/div/div/span[1]/a
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.704600+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/gevangenismuseum/
|
||||
raw_value: https://www.instagram.com/gevangenismuseum/
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/header/section[1]/div/div[1]/div/div[3]/div/div/span[2]/a
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.704607+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/gevangenismuseum/?originalSubdomain=nl
|
||||
raw_value: https://www.linkedin.com/company/gevangenismuseum/?originalSubdomain=nl
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/header/section[1]/div/div[1]/div/div[3]/div/div/span[3]/a
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.704612+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Bezoekinformatie
|
||||
raw_value: Bezoekinformatie
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[1]/div[1]/div/div[1]/div[1]/div/h1
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.704778+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Bezoekinformatie
|
||||
raw_value: Bezoekinformatie
|
||||
source_url: https://gevangenismuseum.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[1]/div[1]/div/div[1]/div[1]/div/h1
|
||||
html_file: web/0030/gevangenismuseum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:24.661255+00:00'
|
||||
|
|
|
|||
|
|
@ -463,3 +463,123 @@ notes: '- WWII resistance museum in Nieuwlande, Drenthe
|
|||
- Strong educational program for schools
|
||||
|
||||
'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-NIE-M-DDZHVV
|
||||
ghcid_original: NL-DR-NIE-M-DDZHVV
|
||||
ghcid_uuid: d39b7f08-a60d-5cc6-a13c-e288c225fa7c
|
||||
ghcid_uuid_sha256: 6005c4ce-8d74-8534-87e1-b538714a03fb
|
||||
ghcid_numeric: 6919152793940194612
|
||||
record_id: 019ad9ec-7c9f-7cfc-a504-200f7949c109
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-NIE-M-DDZHVV
|
||||
ghcid_numeric: 6919152793940194612
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750170
|
||||
geonames_name: Nieuwlande
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.696978599999994
|
||||
longitude: 6.6123507
|
||||
source: google_maps
|
||||
distance_km: 0.21318723833811992
|
||||
geonames_id: 2750170
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-NIE-M-DDZHVV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: d39b7f08-a60d-5cc6-a13c-e288c225fa7c
|
||||
identifier_url: urn:uuid:d39b7f08-a60d-5cc6-a13c-e288c225fa7c
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 6005c4ce-8d74-8534-87e1-b538714a03fb
|
||||
identifier_url: urn:uuid:6005c4ce-8d74-8534-87e1-b538714a03fb
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6919152793940194612'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7cfc-a504-200f7949c109
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7cfc-a504-200f7949c109
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:04.767838+00:00'
|
||||
source_archive: web/0031/museumnieuwlande.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Nieuwlande
|
||||
raw_value: Museum Nieuwlande – Het dorp dat zweeg!
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.766643+00:00'
|
||||
- claim_type: email
|
||||
claim_value: contact@museumnieuwlande.nl
|
||||
raw_value: contact@museumnieuwlande.nl
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div/div/section/div/div/div/section[1]/div/div[1]/div/div[2]/div/p[1]/a
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.767222+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: http://facebook.com/deDuikelaar
|
||||
raw_value: http://facebook.com/deDuikelaar
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div/div/section/div/div/div/section[1]/div/div[1]/div/div[2]/div/p[2]/a[1]
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.767571+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/onderduikersmuseum-de-duikelaar/
|
||||
raw_value: https://www.linkedin.com/company/onderduikersmuseum-de-duikelaar/
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div/div/section/div/div/div/section[1]/div/div[1]/div/div[2]/div/p[2]/a[2]
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.767578+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: http://instagram.com/onderduikersmuseum
|
||||
raw_value: http://instagram.com/onderduikersmuseum
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div/div/section/div/div/div/section[1]/div/div[1]/div/div[2]/div/p[2]/a[3]
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:04.767584+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Het dorp dat zweeg heeft veel te vertellen
|
||||
raw_value: Het dorp dat zweeg heeft veel te vertellen
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/section[2]/div/div[2]/div/div[1]/div/h1
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:04.767639+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Het dorp dat zweeg heeft veel te vertellen
|
||||
raw_value: Het dorp dat zweeg heeft veel te vertellen
|
||||
source_url: https://museumnieuwlande.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div/section[2]/div/div[2]/div/div[1]/div/h1
|
||||
html_file: web/0031/museumnieuwlande.nl/mirror/museumnieuwlande.nl/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:24.718860+00:00'
|
||||
|
|
|
|||
|
|
@ -181,3 +181,73 @@ zcbs_enrichment:
|
|||
photos: http://www.oudheidkamerzuidwolde.nl/cgi-bin/beeldbank.pl
|
||||
enrichment_timestamp: '2025-11-30T19:00:00+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-FOR-S-OZ
|
||||
ghcid_original: NL-DR-FOR-S-OZ
|
||||
ghcid_uuid: 32cd1e0c-c6e0-5937-a37a-0cb7366b50ae
|
||||
ghcid_uuid_sha256: b5fd8c8f-d308-84c6-9f8c-32ecfdc29e22
|
||||
ghcid_numeric: 13113792239321539782
|
||||
record_id: 019ad9ec-7c9f-741b-a435-7e5074c3b1a8
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-FOR-S-OZ
|
||||
ghcid_numeric: 13113792239321539782
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755862
|
||||
geonames_name: Fort
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.649612499999996
|
||||
longitude: 6.385383399999999
|
||||
source: google_maps
|
||||
distance_km: 0.24220530174493923
|
||||
geonames_id: 2755862
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-FOR-S-OZ
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 32cd1e0c-c6e0-5937-a37a-0cb7366b50ae
|
||||
identifier_url: urn:uuid:32cd1e0c-c6e0-5937-a37a-0cb7366b50ae
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b5fd8c8f-d308-84c6-9f8c-32ecfdc29e22
|
||||
identifier_url: urn:uuid:b5fd8c8f-d308-84c6-9f8c-32ecfdc29e22
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13113792239321539782'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-741b-a435-7e5074c3b1a8
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-741b-a435-7e5074c3b1a8
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:05.154616+00:00'
|
||||
source_archive: web/0032/oudheidkamerzuidwolde.nl
|
||||
claims_count: 1
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Oudheidkamer Zuidwolde
|
||||
raw_value: Oudheidkamer Zuidwolde
|
||||
source_url: https://www.oudheidkamerzuidwolde.nl/
|
||||
retrieved_on: '2025-11-29T14:28:20.360451+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0032/oudheidkamerzuidwolde.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.154272+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Oudheidkamer Zuidwolde
|
||||
raw_value: Oudheidkamer Zuidwolde
|
||||
source_url: https://www.oudheidkamerzuidwolde.nl/
|
||||
retrieved_on: '2025-11-29T14:28:20.360451+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0032/oudheidkamerzuidwolde.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.749240+00:00'
|
||||
|
|
|
|||
|
|
@ -353,9 +353,9 @@ google_maps_status: SUCCESS
|
|||
google_maps_search_query: Provincie Drenthe archief, Westerbrink 1, Assen, Netherlands
|
||||
web_enrichment:
|
||||
web_archives:
|
||||
- url: https://www.drenthe.nl/
|
||||
directory: web/0033/drenthe.nl
|
||||
web_archive_timestamp: '2025-11-29T11:41:21.909767+00:00'
|
||||
- url: https://www.drentsarchief.nl/
|
||||
directory: web/0033/drentsarchief.nl
|
||||
web_archive_timestamp: '2025-12-01T11:44:06.299566+00:00'
|
||||
nan_isil_enrichment:
|
||||
source: Nationaal Archief ISIL Registry
|
||||
source_file: ISIL-codes_2025-11-06.yaml
|
||||
|
|
@ -376,3 +376,145 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-AsnPD
|
||||
assigned_date: '2014-11-14'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ASS-A-DA-drents_archief
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f845e7df-a7e1-5426-8972-51e5aa747e6d
|
||||
identifier_url: urn:uuid:f845e7df-a7e1-5426-8972-51e5aa747e6d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7d3294a0-5f62-82cf-8a08-2c74755ec6ee
|
||||
identifier_url: urn:uuid:7d3294a0-5f62-82cf-8a08-2c74755ec6ee
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9021436420092478159'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-734c-af7b-f554df66fe72
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-734c-af7b-f554df66fe72
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ASS-A-DA-drents_archief
|
||||
ghcid_original: NL-DR-ASS-A-DA-drents_archief
|
||||
ghcid_uuid: f845e7df-a7e1-5426-8972-51e5aa747e6d
|
||||
ghcid_uuid_sha256: 7d3294a0-5f62-82cf-8a08-2c74755ec6ee
|
||||
ghcid_numeric: 9021436420092478159
|
||||
record_id: 019ad9ec-7c9f-734c-af7b-f554df66fe72
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ASS-A-DA-drents_archief
|
||||
ghcid_numeric: 9021436420092478159
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759633
|
||||
geonames_name: Assen
|
||||
feature_code: PPLA
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9934557
|
||||
longitude: 6.5646432
|
||||
source: google_maps
|
||||
distance_km: 0.4288254932074221
|
||||
geonames_id: 2759633
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-DR-ASS-A-DA
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Drents Archief
|
||||
raw_value: Drents Archief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.786718+00:00'
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T12:24:53.572898+00:00'
|
||||
source_archive: web/0033/drentsarchief.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Drents Archief
|
||||
raw_value: Drents Archief - Het Geheugen van de Drentse Samenleving
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T12:24:53.570226+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: MOD_DPCALENDAR_UPCOMING_DATE
|
||||
raw_value: MOD_DPCALENDAR_UPCOMING_DATE
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/main/section[2]/div[2]/div[1]/div/div/div/div[1]/div[2]/div/span[1]/svg/title
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T12:24:53.570243+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Drents Archief - Het Geheugen van de Drentse Samenleving
|
||||
raw_value: Drents Archief - Het Geheugen van de Drentse Samenleving
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T12:24:53.570521+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0592313523
|
||||
raw_value: 0592313523
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[1]/div/ul/li[4]/a
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T12:24:53.571533+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/drentsarchief
|
||||
raw_value: https://www.facebook.com/drentsarchief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[1]/a
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T12:24:53.572196+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/drentsarchief
|
||||
raw_value: https://www.youtube.com/drentsarchief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[2]/a
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T12:24:53.572217+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/drentsarchief
|
||||
raw_value: https://www.instagram.com/drentsarchief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[3]/a
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T12:24:53.572227+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/drents-archief
|
||||
raw_value: https://www.linkedin.com/company/drents-archief
|
||||
source_url: https://www.drentsarchief.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/footer/div[2]/div[2]/div/div/span[4]/a
|
||||
html_file: web/0033/drentsarchief.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T12:24:53.572237+00:00'
|
||||
|
|
|
|||
|
|
@ -323,3 +323,94 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:03.853930+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 1.0
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ROL-S-AB
|
||||
ghcid_original: NL-DR-ROL-S-AB
|
||||
ghcid_uuid: 3481fec2-4299-56b7-bac4-c897c8cdce40
|
||||
ghcid_uuid_sha256: d4948a55-f731-87c5-9b0b-c5d258fe0eb0
|
||||
ghcid_numeric: 15318020334417975237
|
||||
record_id: 019ad9ec-7c9f-7439-b4af-bbd4294e66cf
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ROL-S-AB
|
||||
ghcid_numeric: 15318020334417975237
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2747979
|
||||
geonames_name: Rolde
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9834022
|
||||
longitude: 6.6474021
|
||||
source: google_maps
|
||||
distance_km: 0.1588711808328209
|
||||
geonames_id: 2747979
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ROL-S-AB
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 3481fec2-4299-56b7-bac4-c897c8cdce40
|
||||
identifier_url: urn:uuid:3481fec2-4299-56b7-bac4-c897c8cdce40
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: d4948a55-f731-87c5-9b0b-c5d258fe0eb0
|
||||
identifier_url: urn:uuid:d4948a55-f731-87c5-9b0b-c5d258fe0eb0
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '15318020334417975237'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7439-b4af-bbd4294e66cf
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7439-b4af-bbd4294e66cf
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:05.202385+00:00'
|
||||
source_archive: web/0034/rhg-rolde.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: RHG Rolde
|
||||
raw_value: RHG Rolde | Rolder Historisch Gezelschap | Historische informatie over
|
||||
de oude gemeente Rolde
|
||||
source_url: https://rhg-rolde.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0034/rhg-rolde.nl/mirror/rhg-rolde.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.201784+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/RolderHistorischGezelschap/
|
||||
raw_value: https://www.facebook.com/RolderHistorischGezelschap/
|
||||
source_url: https://rhg-rolde.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[1]/div/div/footer/div/div/div/div[3]/ul/li/a
|
||||
html_file: web/0034/rhg-rolde.nl/mirror/rhg-rolde.nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.202216+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Algemeen Bestuur
|
||||
raw_value: Algemeen Bestuur
|
||||
source_url: https://rhg-rolde.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[3]/div/div[2]/h1
|
||||
html_file: web/0034/rhg-rolde.nl/mirror/rhg-rolde.nl/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.202255+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Algemeen Bestuur
|
||||
raw_value: Algemeen Bestuur
|
||||
source_url: https://rhg-rolde.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[1]/div/div/footer/div/div/div/div[1]/div[3]/div/div[2]/h1
|
||||
html_file: web/0034/rhg-rolde.nl/mirror/rhg-rolde.nl/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:24.819854+00:00'
|
||||
|
|
|
|||
|
|
@ -255,3 +255,90 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:04.246460+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 1.0
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-RUI-S-SHR-stichting_historie_van_ruinen
|
||||
ghcid_original: NL-DR-RUI-S-SHR-stichting_historie_van_ruinen
|
||||
ghcid_uuid: 36679e53-527c-5942-8528-2b39782770ab
|
||||
ghcid_uuid_sha256: ddc64549-98df-8fd8-be3f-0bec975eab81
|
||||
ghcid_numeric: 15980536510170492888
|
||||
record_id: 019ad9ec-7c9f-75ce-95fa-8720d4c1c1d0
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-RUI-S-SHR-stichting_historie_van_ruinen
|
||||
ghcid_numeric: 15980536510170492888
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2747835
|
||||
geonames_name: Ruinen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7620608
|
||||
longitude: 6.3504644
|
||||
source: google_maps
|
||||
distance_km: 0.41420060131296754
|
||||
geonames_id: 2747835
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-DR-RUI-S-SHR
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-RUI-S-SHR-stichting_historie_van_ruinen
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 36679e53-527c-5942-8528-2b39782770ab
|
||||
identifier_url: urn:uuid:36679e53-527c-5942-8528-2b39782770ab
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: ddc64549-98df-8fd8-be3f-0bec975eab81
|
||||
identifier_url: urn:uuid:ddc64549-98df-8fd8-be3f-0bec975eab81
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '15980536510170492888'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-75ce-95fa-8720d4c1c1d0
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-75ce-95fa-8720d4c1c1d0
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:05.244268+00:00'
|
||||
source_archive: web/0035/stichtinghistorievanruinen.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Welkom bij Stichting Historie van Ruinen
|
||||
raw_value: Welkom bij Stichting Historie van Ruinen
|
||||
source_url: https://www.stichtinghistorievanruinen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.367055+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0035/stichtinghistorievanruinen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.243949+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Welkom bij Stichting Historie van Ruinen
|
||||
raw_value: Welkom bij Stichting Historie van Ruinen
|
||||
source_url: https://www.stichtinghistorievanruinen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.367055+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0035/stichtinghistorievanruinen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:05.244007+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/profile.php?id=100090380318482
|
||||
raw_value: https://www.facebook.com/profile.php?id=100090380318482
|
||||
source_url: https://www.stichtinghistorievanruinen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.367055+00:00'
|
||||
xpath: /html/body/div/div[5]/div/div[1]/ul/li[5]/a
|
||||
html_file: web/0035/stichtinghistorievanruinen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.244204+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Stichting Historie van Ruinen
|
||||
source: original_entry
|
||||
provenance_note: Derived from original_entry.organisatie (no valid web_claims or
|
||||
wikidata)
|
||||
extraction_timestamp: '2025-12-01T12:35:24.848915+00:00'
|
||||
|
|
|
|||
|
|
@ -307,3 +307,97 @@ notes: '- Local history foundation founded in 1984
|
|||
- Uses ZCBS collection management system
|
||||
|
||||
'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-RUI-S-SHR-stichting_historie_ruinerwold
|
||||
ghcid_original: NL-DR-RUI-S-SHR-stichting_historie_ruinerwold
|
||||
ghcid_uuid: 52e40498-5cd4-5fd2-a31d-9ef7da0fefad
|
||||
ghcid_uuid_sha256: 4f55f62a-b97d-8dc2-bd12-51acbc647460
|
||||
ghcid_numeric: 5716745965377805762
|
||||
record_id: 019ad9ec-7c9f-71f9-96fd-ca4c9fe5ef45
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-RUI-S-SHR-stichting_historie_ruinerwold
|
||||
ghcid_numeric: 5716745965377805762
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2747828
|
||||
geonames_name: Ruinerwold
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.7236247
|
||||
longitude: 6.2514695
|
||||
source: google_maps
|
||||
distance_km: 0.3190856811847644
|
||||
geonames_id: 2747828
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-DR-RUI-S-SHR
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-RUI-S-SHR-stichting_historie_ruinerwold
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 52e40498-5cd4-5fd2-a31d-9ef7da0fefad
|
||||
identifier_url: urn:uuid:52e40498-5cd4-5fd2-a31d-9ef7da0fefad
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 4f55f62a-b97d-8dc2-bd12-51acbc647460
|
||||
identifier_url: urn:uuid:4f55f62a-b97d-8dc2-bd12-51acbc647460
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '5716745965377805762'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-71f9-96fd-ca4c9fe5ef45
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-71f9-96fd-ca4c9fe5ef45
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:05.622077+00:00'
|
||||
source_archive: web/0036/historieruinerwold.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Stichting Historie Ruinerwold
|
||||
raw_value: Stichting Historie Ruinerwold – Historische verslaglegging van de gemeente
|
||||
Ruinerwold sinds 1984
|
||||
source_url: https://www.historieruinerwold.nl/
|
||||
retrieved_on: '2025-11-29T14:29:16.475656+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0036/historieruinerwold.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.621635+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Scroll to top
|
||||
raw_value: Scroll to top
|
||||
source_url: https://www.historieruinerwold.nl/
|
||||
retrieved_on: '2025-11-29T14:29:16.475656+00:00'
|
||||
xpath: /html/body/a/svg/title
|
||||
html_file: web/0036/historieruinerwold.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.621646+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/historieruinerwold
|
||||
raw_value: https://www.facebook.com/historieruinerwold
|
||||
source_url: https://www.historieruinerwold.nl/
|
||||
retrieved_on: '2025-11-29T14:29:16.475656+00:00'
|
||||
xpath: /html/body/div[1]/header/div[1]/div/div/div/ul/li/a
|
||||
html_file: web/0036/historieruinerwold.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.621974+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Stichting Historie Ruinerwold
|
||||
raw_value: Stichting Historie Ruinerwold
|
||||
source_url: https://www.historieruinerwold.nl/
|
||||
retrieved_on: '2025-11-29T14:29:16.475656+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0036/historieruinerwold.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:24.882128+00:00'
|
||||
|
|
|
|||
|
|
@ -650,3 +650,161 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 3
|
||||
enrichment_timestamp: '2025-11-30T12:47:16.718984+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-EEL-M-IKE
|
||||
ghcid_original: NL-DR-EEL-M-IKE
|
||||
ghcid_uuid: 5007a91a-5483-598e-864d-75a170f85747
|
||||
ghcid_uuid_sha256: 413c1a6a-7f95-8a49-8ec5-952b79f2714a
|
||||
ghcid_numeric: 4700661155777317449
|
||||
record_id: 019ad9ec-7c9f-79b5-890b-96b2be31d23a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-EEL-M-IKE
|
||||
ghcid_numeric: 4700661155777317449
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756408
|
||||
geonames_name: Eelde
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.138161
|
||||
longitude: 6.5679929999999995
|
||||
source: google_maps
|
||||
distance_km: 0.6623511469076097
|
||||
geonames_id: 2756408
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-EEL-M-IKE
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 5007a91a-5483-598e-864d-75a170f85747
|
||||
identifier_url: urn:uuid:5007a91a-5483-598e-864d-75a170f85747
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 413c1a6a-7f95-8a49-8ec5-952b79f2714a
|
||||
identifier_url: urn:uuid:413c1a6a-7f95-8a49-8ec5-952b79f2714a
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4700661155777317449'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-79b5-890b-96b2be31d23a
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-79b5-890b-96b2be31d23a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753578+00:00'
|
||||
source_archive: web/0037/klompenmuseum.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Internationaal Klompenmuseum Eelde
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.752826+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: 'Internationaal Klompenmuseum Tentoonstelling 2025: Houten Schoeisel
|
||||
Festival Bekijk onze virtuele tour Geopend: 28 maart 2026 t/m 1 november 2026,
|
||||
dinsdag tot en met zondag, van 13.30 – 17.00 uur. Groepen op afspraak: 28 maart
|
||||
t/m 19 december 2026, ook buiten de normale openingstijden. Wolfhorn 1a, 9761
|
||||
BA Eelde, Drenthe, Nederland Tel: 050 – 309 11 81…'
|
||||
raw_value: 'Internationaal Klompenmuseum Tentoonstelling 2025: Houten Schoeisel
|
||||
Festival Bekijk onze virtuele tour Geopend: 28 maart 2026 t/m 1 november 2026,
|
||||
dinsdag tot en met zondag, van 13.30 – 17.00 uur. Groepen op afspraak: 28 maart
|
||||
t/m 19 december 2026, ook buiten de normale openingstijden. Wolfhorn 1a, 9761
|
||||
BA Eelde, Drenthe, Nederland Tel: 050 – 309 11 81…'
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_description
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753016+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Internationaal Klompenmuseum Eelde
|
||||
raw_value: Internationaal Klompenmuseum Eelde
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753101+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@klompenmuseum.nl
|
||||
raw_value: info@klompenmuseum.nl
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div/div/article/div/div/div[1]/div/div[2]/div/div[2]/div/div/div/div/div/p[4]/a[3]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753250+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31503091181'
|
||||
raw_value: '+31503091181'
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div/div/article/div/div/div[1]/div/div[2]/div/div[2]/div/div/div/div/div/p[4]/a[2]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753323+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Klompenmuseum/
|
||||
raw_value: https://www.facebook.com/Klompenmuseum/
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/body/div[1]/footer/div/div/div/div[2]/aside/div/p[2]/a[1]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753438+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/klompenmuseum/
|
||||
raw_value: https://www.instagram.com/klompenmuseum/
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/body/div[1]/footer/div/div/div/div[2]/aside/div/p[2]/a[2]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753443+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCyujSkNTYx20bot-99S3uqg
|
||||
raw_value: https://www.youtube.com/channel/UCyujSkNTYx20bot-99S3uqg
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/body/div[1]/footer/div/div/div/div[2]/aside/div/p[2]/a[3]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753447+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Internationaal Klompenmuseum
|
||||
raw_value: Internationaal Klompenmuseum
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div/div/article/div/div/div[1]/div/div[2]/div/div[2]/div/div/div/div/div/h1
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:05.753486+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Internationaal Klompenmuseum Eelde
|
||||
raw_value: Internationaal Klompenmuseum Eelde
|
||||
source_url: http://www.klompenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:05.952480+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0037/klompenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:24.934136+00:00'
|
||||
|
|
|
|||
|
|
@ -737,3 +737,101 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:04.874493+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 0.638
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ROD-M-OKW
|
||||
ghcid_original: NL-DR-ROD-M-OKW
|
||||
ghcid_uuid: 1a92dd5a-0aef-5b8b-aa7e-34226c78bbbd
|
||||
ghcid_uuid_sha256: 2209f842-eff5-8a2f-a094-40d65668c03c
|
||||
ghcid_numeric: 2452764438457313839
|
||||
record_id: 019ad9ec-7c9f-7266-8a90-19b56e429063
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ROD-M-OKW
|
||||
ghcid_numeric: 2452764438457313839
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2748018
|
||||
geonames_name: Roderwolde
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.169045
|
||||
longitude: 6.474311999999999
|
||||
source: google_maps
|
||||
distance_km: 0.546584659946622
|
||||
geonames_id: 2748018
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ROD-M-OKW
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 1a92dd5a-0aef-5b8b-aa7e-34226c78bbbd
|
||||
identifier_url: urn:uuid:1a92dd5a-0aef-5b8b-aa7e-34226c78bbbd
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 2209f842-eff5-8a2f-a094-40d65668c03c
|
||||
identifier_url: urn:uuid:2209f842-eff5-8a2f-a094-40d65668c03c
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2452764438457313839'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7266-8a90-19b56e429063
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7266-8a90-19b56e429063
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:06.155443+00:00'
|
||||
source_archive: web/0038/woldzigt-roderwolde.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Olie- en Korenmolen Woldzigt
|
||||
raw_value: Olie- en Korenmolen Woldzigt - een werkende industriemolen
|
||||
source_url: https://www.woldzigt-roderwolde.nl/
|
||||
retrieved_on: '2025-11-29T14:29:27.731703+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0038/woldzigt-roderwolde.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:06.154674+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Welkom Welkom op de website van Olie- en Korenmolen Woldzigt te Roderwolde.
|
||||
In principe zijn zowel de molen als het graanmuseum in 2025 tijdens het hele
|
||||
seizoen van 25 april tot en met 14 september geopend op vrijdag-, zaterdag-
|
||||
en zondagmiddag. Steeds van 13:30 tot 17:00 uur. Vanaf half september tot eind
|
||||
april zijn molen
|
||||
raw_value: Welkom Welkom op de website van Olie- en Korenmolen Woldzigt te Roderwolde.
|
||||
In principe zijn zowel de molen als het graanmuseum in 2025 tijdens het hele
|
||||
seizoen van 25 april tot en met 14 september geopend op vrijdag-, zaterdag-
|
||||
en zondagmiddag. Steeds van 13:30 tot 17:00 uur. Vanaf half september tot eind
|
||||
april zijn molen
|
||||
source_url: https://www.woldzigt-roderwolde.nl/
|
||||
retrieved_on: '2025-11-29T14:29:27.731703+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0038/woldzigt-roderwolde.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:06.154770+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Olie- en Korenmolen Woldzigt | een werkende industriemolen
|
||||
raw_value: Olie- en Korenmolen Woldzigt | een werkende industriemolen
|
||||
source_url: https://www.woldzigt-roderwolde.nl/
|
||||
retrieved_on: '2025-11-29T14:29:27.731703+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0038/woldzigt-roderwolde.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:06.155016+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Olie- en Korenmolen Woldzigt
|
||||
raw_value: Olie- en Korenmolen Woldzigt | een werkende industriemolen
|
||||
source_url: https://www.woldzigt-roderwolde.nl/
|
||||
retrieved_on: '2025-11-29T14:29:27.731703+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0038/woldzigt-roderwolde.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.002948+00:00'
|
||||
|
|
|
|||
|
|
@ -408,3 +408,138 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-MpSOM
|
||||
assigned_date: '2022-06-17'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-MEP-S-SOM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 7b408d72-52f5-5018-b7f1-ad49390b1850
|
||||
identifier_url: urn:uuid:7b408d72-52f5-5018-b7f1-ad49390b1850
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7ba8964c-f7ee-815d-98d5-13051a208943
|
||||
identifier_url: urn:uuid:7ba8964c-f7ee-815d-98d5-13051a208943
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8910537120073826653'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7835-b007-c0565f1f74ee
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7835-b007-c0565f1f74ee
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-MEP-S-SOM
|
||||
ghcid_original: NL-DR-MEP-S-SOM
|
||||
ghcid_uuid: 7b408d72-52f5-5018-b7f1-ad49390b1850
|
||||
ghcid_uuid_sha256: 7ba8964c-f7ee-815d-98d5-13051a208943
|
||||
ghcid_numeric: 8910537120073826653
|
||||
record_id: 019ad9ec-7c9f-7835-b007-c0565f1f74ee
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-MEP-S-SOM
|
||||
ghcid_numeric: 8910537120073826653
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750947
|
||||
geonames_name: Meppel
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6954864
|
||||
longitude: 6.1864254
|
||||
source: google_maps
|
||||
distance_km: 0.8904377805509742
|
||||
geonames_id: 2750947
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:06.586496+00:00'
|
||||
source_archive: web/0039/oudmeppel.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Stichting Oud Meppel
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:06.585102+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: "Welkom bij Oud Meppel Overzicht \nActiviteiten \nDiavoorstellingen\
|
||||
\ \nTentoonstellingen \nStadswandelingen \nWerkgroepen \nVerkoop \nDiversen\
|
||||
\ \nDigitale archieven \nFotoarchief \nGravenarchief \nRK Gravenarchief\
|
||||
\ \nKennissysteem Meppeler Courant \nGenealogie"
|
||||
raw_value: "Welkom bij Oud Meppel Overzicht \nActiviteiten \nDiavoorstellingen\
|
||||
\ \nTentoonstellingen \nStadswandelingen \nWerkgroepen \nVerkoop \nDiversen\
|
||||
\ \nDigitale archieven \nFotoarchief \nGravenarchief \nRK Gravenarchief\
|
||||
\ \nKennissysteem Meppeler Courant \nGenealogie"
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:06.585222+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Stichting Oud Meppel
|
||||
raw_value: Stichting Oud Meppel
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:06.585638+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/stichtingoudmeppel/
|
||||
raw_value: https://www.facebook.com/stichtingoudmeppel/
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[4]/footer[2]/div/div/div[2]/div/div/a[1]
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:06.586225+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCODchYNeB73m_T3sOWlbf7A
|
||||
raw_value: https://www.youtube.com/channel/UCODchYNeB73m_T3sOWlbf7A
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[4]/footer[2]/div/div/div[2]/div/div/a[2]
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:06.586235+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/stichtingoudmeppel/
|
||||
raw_value: https://www.instagram.com/stichtingoudmeppel/
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div[4]/footer[2]/div/div/div[2]/div/div/a[3]
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:06.586240+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Welkom bij Oud Meppel
|
||||
raw_value: Welkom bij Oud Meppel
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/main/div/section/div/div/div[1]/div/div/div/div/h1
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:06.586287+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Stichting Oud Meppel
|
||||
raw_value: Stichting Oud Meppel
|
||||
source_url: https://www.oudmeppel.nl/
|
||||
retrieved_on: '2025-11-29T14:32:06.738895+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0039/oudmeppel.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.055349+00:00'
|
||||
|
|
|
|||
|
|
@ -323,3 +323,83 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 15
|
||||
enrichment_timestamp: '2025-11-30T12:47:39.350401+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-EMM-S-NVOWINC
|
||||
ghcid_original: NL-DR-EMM-S-NVOWINC
|
||||
ghcid_uuid: 97f1a41b-b679-5cde-a67c-3af4469e88f4
|
||||
ghcid_uuid_sha256: b6a5e0d0-5290-8e5e-8ea2-040f59bea150
|
||||
ghcid_numeric: 13161172671403179614
|
||||
record_id: 019ad9ec-7c9f-7917-a714-22a2b02f0ae3
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-EMM-S-NVOWINC
|
||||
ghcid_numeric: 13161172671403179614
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756136
|
||||
geonames_name: Emmen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.784836399999996
|
||||
longitude: 6.8978823
|
||||
source: google_maps
|
||||
distance_km: 1.185935232151207
|
||||
geonames_id: 2756136
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-EMM-S-NVOWINC
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 97f1a41b-b679-5cde-a67c-3af4469e88f4
|
||||
identifier_url: urn:uuid:97f1a41b-b679-5cde-a67c-3af4469e88f4
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b6a5e0d0-5290-8e5e-8ea2-040f59bea150
|
||||
identifier_url: urn:uuid:b6a5e0d0-5290-8e5e-8ea2-040f59bea150
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13161172671403179614'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7917-a714-22a2b02f0ae3
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7917-a714-22a2b02f0ae3
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:06.987939+00:00'
|
||||
source_archive: web/0040/mocta.org
|
||||
claims_count: 2
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: MOCTA
|
||||
raw_value: MOCTA
|
||||
source_url: https://mocta.org/
|
||||
retrieved_on: '2025-11-29T14:29:14.426910+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0040/mocta.org/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:06.987453+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: De Nederlandse versie van onze website is nog onder constructie
|
||||
raw_value: De Nederlandse versie van onze website is nog onder constructie
|
||||
source_url: https://mocta.org/
|
||||
retrieved_on: '2025-11-29T14:29:14.426910+00:00'
|
||||
xpath: /html/body/div[3]/div/div/div/div/div[2]/div/h1
|
||||
html_file: web/0040/mocta.org/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:06.987852+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: De Nederlandse versie van onze website is nog onder constructie
|
||||
raw_value: De Nederlandse versie van onze website is nog onder constructie
|
||||
source_url: https://mocta.org/
|
||||
retrieved_on: '2025-11-29T14:29:14.426910+00:00'
|
||||
xpath: /html/body/div[3]/div/div/div/div/div[2]/div/h1
|
||||
html_file: web/0040/mocta.org/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:25.092008+00:00'
|
||||
|
|
|
|||
|
|
@ -305,3 +305,103 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:22.154378+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:15.883577+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ASS-S-AHV
|
||||
ghcid_original: NL-DR-ASS-S-AHV
|
||||
ghcid_uuid: 50491afa-fa79-5b09-856b-98e267f713bf
|
||||
ghcid_uuid_sha256: f9b75e23-1a9d-8555-bd87-777557005a1f
|
||||
ghcid_numeric: 17993954341045519701
|
||||
record_id: 019ad9ec-7c9f-7f93-983a-54ac228519cf
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ASS-S-AHV
|
||||
ghcid_numeric: 17993954341045519701
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759633
|
||||
geonames_name: Assen
|
||||
feature_code: PPLA
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9988683
|
||||
longitude: 6.5659154
|
||||
source: google_maps
|
||||
distance_km: 0.45084969967365895
|
||||
geonames_id: 2759633
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ASS-S-AHV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 50491afa-fa79-5b09-856b-98e267f713bf
|
||||
identifier_url: urn:uuid:50491afa-fa79-5b09-856b-98e267f713bf
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: f9b75e23-1a9d-8555-bd87-777557005a1f
|
||||
identifier_url: urn:uuid:f9b75e23-1a9d-8555-bd87-777557005a1f
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '17993954341045519701'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7f93-983a-54ac228519cf
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7f93-983a-54ac228519cf
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.100160+00:00'
|
||||
source_archive: web/0041/ahvassen.nl
|
||||
claims_count: 4
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home
|
||||
source_url: https://ahvassen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:15.708064+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0041/ahvassen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.099272+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Asser Historische Vereniging
|
||||
raw_value: Asser Historische Vereniging
|
||||
source_url: https://ahvassen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:15.708064+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0041/ahvassen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:07.099470+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Asser Historische Vereniging
|
||||
raw_value: Asser Historische Vereniging
|
||||
source_url: https://ahvassen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:15.708064+00:00'
|
||||
xpath: /html/head/meta[14]
|
||||
html_file: web/0041/ahvassen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:07.099661+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/ahvassen/
|
||||
raw_value: https://www.facebook.com/ahvassen/
|
||||
source_url: https://ahvassen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:15.708064+00:00'
|
||||
xpath: /html/body/div[1]/div/section[4]/div/div/div/div/div/div/div/div/div/section/div/div/div[3]/div/div/div/div/div/div/a[1]
|
||||
html_file: web/0041/ahvassen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.099994+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Asser Historische Vereniging
|
||||
raw_value: Asser Historische Vereniging
|
||||
source_url: https://ahvassen.nl/
|
||||
retrieved_on: '2025-11-29T14:29:15.708064+00:00'
|
||||
xpath: /html/head/meta[14]
|
||||
html_file: web/0041/ahvassen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.119341+00:00'
|
||||
|
|
|
|||
|
|
@ -302,3 +302,103 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:22.177347+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:17.279929+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-ASS-S-DHV
|
||||
ghcid_original: NL-DR-ASS-S-DHV
|
||||
ghcid_uuid: fbfaa7ac-09e5-52c9-a748-f2f61fe36045
|
||||
ghcid_uuid_sha256: 1188db3f-f02c-8e89-9754-bc756196dd5f
|
||||
ghcid_numeric: 1263500763136286345
|
||||
record_id: 019ad9ec-7c9f-7a66-b31d-5f9cc48d45fb
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-ASS-S-DHV
|
||||
ghcid_numeric: 1263500763136286345
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759633
|
||||
geonames_name: Assen
|
||||
feature_code: PPLA
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9988683
|
||||
longitude: 6.5659154
|
||||
source: google_maps
|
||||
distance_km: 0.45084969967365895
|
||||
geonames_id: 2759633
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-ASS-S-DHV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: fbfaa7ac-09e5-52c9-a748-f2f61fe36045
|
||||
identifier_url: urn:uuid:fbfaa7ac-09e5-52c9-a748-f2f61fe36045
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 1188db3f-f02c-8e89-9754-bc756196dd5f
|
||||
identifier_url: urn:uuid:1188db3f-f02c-8e89-9754-bc756196dd5f
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '1263500763136286345'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7a66-b31d-5f9cc48d45fb
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7a66-b31d-5f9cc48d45fb
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.171284+00:00'
|
||||
source_archive: web/0042/drentsehistorischevereniging.nl
|
||||
claims_count: 4
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home
|
||||
source_url: https://drentsehistorischevereniging.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.235710+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0042/drentsehistorischevereniging.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.170786+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Drentse Historische Vereniging
|
||||
raw_value: Drentse Historische Vereniging
|
||||
source_url: https://drentsehistorischevereniging.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.235710+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0042/drentsehistorischevereniging.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:07.170977+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@drentsehistorischevereniging.nl
|
||||
raw_value: info@drentsehistorischevereniging.nl
|
||||
source_url: https://drentsehistorischevereniging.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.235710+00:00'
|
||||
xpath: /html/body/div[3]/div[2]/div[3]/ul/li[1]/a
|
||||
html_file: web/0042/drentsehistorischevereniging.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.171061+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/profile.php?id=100068231111818
|
||||
raw_value: https://www.facebook.com/profile.php?id=100068231111818
|
||||
source_url: https://drentsehistorischevereniging.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.235710+00:00'
|
||||
xpath: /html/body/div[1]/div/main/section[1]/div/div/div/div[2]/div/div/div/div/a
|
||||
html_file: web/0042/drentsehistorischevereniging.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.171165+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Drentse Historische Vereniging
|
||||
raw_value: Drentse Historische Vereniging
|
||||
source_url: https://drentsehistorischevereniging.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.235710+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0042/drentsehistorischevereniging.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.147402+00:00'
|
||||
|
|
|
|||
|
|
@ -310,3 +310,83 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:22.201546+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:26.686869+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-DR-GAS-S-HVGG
|
||||
ghcid_original: NL-DR-GAS-S-HVGG
|
||||
ghcid_uuid: 02ed061e-4dea-50cb-a094-0411a2738706
|
||||
ghcid_uuid_sha256: b8a10aef-3c54-8ded-83a7-e2b0d3184a63
|
||||
ghcid_numeric: 13303926796854808045
|
||||
record_id: 019ad9ec-7c9f-7699-971c-fd55076bb53a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-DR-GAS-S-HVGG
|
||||
ghcid_numeric: 13303926796854808045
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755712
|
||||
geonames_name: Gasselternijveen
|
||||
feature_code: PPL
|
||||
admin1_code: '01'
|
||||
region_code: DR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9866667
|
||||
longitude: 6.8472222
|
||||
source: google_maps
|
||||
distance_km: 0.6439502891848223
|
||||
geonames_id: 2755712
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-DR-GAS-S-HVGG
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 02ed061e-4dea-50cb-a094-0411a2738706
|
||||
identifier_url: urn:uuid:02ed061e-4dea-50cb-a094-0411a2738706
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b8a10aef-3c54-8ded-83a7-e2b0d3184a63
|
||||
identifier_url: urn:uuid:b8a10aef-3c54-8ded-83a7-e2b0d3184a63
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13303926796854808045'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7699-971c-fd55076bb53a
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7699-971c-fd55076bb53a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.584213+00:00'
|
||||
source_archive: web/0043/archief-optspoor.nl
|
||||
claims_count: 2
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Historische vereniging der gemeente Gasselte
|
||||
raw_value: Historische vereniging der gemeente Gasselte – Op't Spoor
|
||||
source_url: https://archief-optspoor.nl/
|
||||
retrieved_on: '2025-11-29T14:29:26.053674+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0043/archief-optspoor.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.583755+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home
|
||||
source_url: https://archief-optspoor.nl/
|
||||
retrieved_on: '2025-11-29T14:29:26.053674+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div/div/main/article/header/h1
|
||||
html_file: web/0043/archief-optspoor.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.584126+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Historische vereniging der gemeente Gasselte
|
||||
raw_value: Historische vereniging der gemeente Gasselte
|
||||
source_url: https://archief-optspoor.nl/
|
||||
retrieved_on: '2025-11-29T14:29:26.053674+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0043/archief-optspoor.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.177735+00:00'
|
||||
|
|
|
|||
|
|
@ -307,3 +307,73 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:22.223600+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:17.539375+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-ASX-S-DKA
|
||||
ghcid_original: NL-FL-ASX-S-DKA
|
||||
ghcid_uuid: 9ad2fb7e-0421-5fda-8f0b-6f20bcedeba9
|
||||
ghcid_uuid_sha256: 842f785f-db47-8444-8da4-1385c8a37452
|
||||
ghcid_numeric: 9524964090008040516
|
||||
record_id: 019ad9ec-7c9f-78ad-9499-3e525e280935
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-ASX-S-DKA
|
||||
ghcid_numeric: 9524964090008040516
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759879
|
||||
geonames_name: Almere Stad
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.3670793
|
||||
longitude: 5.218826
|
||||
source: google_maps
|
||||
distance_km: 0.6289475344344403
|
||||
geonames_id: 2759879
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-ASX-S-DKA
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 9ad2fb7e-0421-5fda-8f0b-6f20bcedeba9
|
||||
identifier_url: urn:uuid:9ad2fb7e-0421-5fda-8f0b-6f20bcedeba9
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 842f785f-db47-8444-8da4-1385c8a37452
|
||||
identifier_url: urn:uuid:842f785f-db47-8444-8da4-1385c8a37452
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9524964090008040516'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-78ad-9499-3e525e280935
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-78ad-9499-3e525e280935
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.608439+00:00'
|
||||
source_archive: web/0044/dkor.nl
|
||||
claims_count: 1
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: DKOR & Kunstambassadeurs Almere
|
||||
raw_value: DKOR & Kunstambassadeurs Almere
|
||||
source_url: https://www.dkor.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.537006+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0044/dkor.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.608342+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: DKOR & Kunstambassadeurs Almere
|
||||
raw_value: DKOR & Kunstambassadeurs Almere
|
||||
source_url: https://www.dkor.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.537006+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0044/dkor.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.206286+00:00'
|
||||
|
|
|
|||
|
|
@ -668,3 +668,74 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:22.264538+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:17.892576+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-ASX-L-NB
|
||||
ghcid_original: NL-FL-ASX-L-NB
|
||||
ghcid_uuid: f2f79c2a-6c58-5f06-a5b9-cae28df8863d
|
||||
ghcid_uuid_sha256: 37b81ba7-48f5-8646-b656-cba674344acf
|
||||
ghcid_numeric: 4014989473098335814
|
||||
record_id: 019ad9ec-7c9f-77f7-8799-bd2584a4ffba
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-ASX-L-NB
|
||||
ghcid_numeric: 4014989473098335814
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759879
|
||||
geonames_name: Almere Stad
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.3714762
|
||||
longitude: 5.2207254
|
||||
source: google_maps
|
||||
distance_km: 0.7446343610790183
|
||||
geonames_id: 2759879
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-ASX-L-NB
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f2f79c2a-6c58-5f06-a5b9-cae28df8863d
|
||||
identifier_url: urn:uuid:f2f79c2a-6c58-5f06-a5b9-cae28df8863d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 37b81ba7-48f5-8646-b656-cba674344acf
|
||||
identifier_url: urn:uuid:37b81ba7-48f5-8646-b656-cba674344acf
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4014989473098335814'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-77f7-8799-bd2584a4ffba
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-77f7-8799-bd2584a4ffba
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.649148+00:00'
|
||||
source_archive: web/0045/denieuwebibliotheek.nl
|
||||
claims_count: 1
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: De Nieuwe Bibliotheek
|
||||
raw_value: De Nieuwe Bibliotheek | Boeken, spreekuren, activiteiten, films en
|
||||
meer
|
||||
source_url: https://www.denieuwebibliotheek.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.890274+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0045/denieuwebibliotheek.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.648888+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: De Nieuwe Bibliotheek
|
||||
raw_value: De Nieuwe Bibliotheek
|
||||
source_url: https://www.denieuwebibliotheek.nl/
|
||||
retrieved_on: '2025-11-29T14:29:17.890274+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0045/denieuwebibliotheek.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.255863+00:00'
|
||||
|
|
|
|||
|
|
@ -283,3 +283,103 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:22.292445+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:19.381126+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-URK-L-DU
|
||||
ghcid_original: NL-FL-URK-L-DU
|
||||
ghcid_uuid: 46f08e2e-a0a0-5803-b038-722ac1cc93dc
|
||||
ghcid_uuid_sha256: 432d54ff-6e2e-8b98-84ef-62b7bf5c53bd
|
||||
ghcid_numeric: 4840618630535105432
|
||||
record_id: 019ad9ec-7c9f-76c4-aaa4-b1681fc62c8a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-URK-L-DU
|
||||
ghcid_numeric: 4840618630535105432
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745932
|
||||
geonames_name: Urk
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6616569
|
||||
longitude: 5.5966027
|
||||
source: google_maps
|
||||
distance_km: 0.5395680074902737
|
||||
geonames_id: 2745932
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-URK-L-DU
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 46f08e2e-a0a0-5803-b038-722ac1cc93dc
|
||||
identifier_url: urn:uuid:46f08e2e-a0a0-5803-b038-722ac1cc93dc
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 432d54ff-6e2e-8b98-84ef-62b7bf5c53bd
|
||||
identifier_url: urn:uuid:432d54ff-6e2e-8b98-84ef-62b7bf5c53bd
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4840618630535105432'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-76c4-aaa4-b1681fc62c8a
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-76c4-aaa4-b1681fc62c8a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.696027+00:00'
|
||||
source_archive: web/0046/documentatiecentrumurk.nl
|
||||
claims_count: 4
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Documentatiecentrum Urk
|
||||
raw_value: Documentatiecentrum Urk
|
||||
source_url: https://www.documentatiecentrumurk.nl/
|
||||
retrieved_on: '2025-11-29T14:29:19.349569+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0046/documentatiecentrumurk.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.695776+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@docurk.nl
|
||||
raw_value: info@docurk.nl
|
||||
source_url: https://www.documentatiecentrumurk.nl/
|
||||
retrieved_on: '2025-11-29T14:29:19.349569+00:00'
|
||||
xpath: /html/body/div/div[3]/div[2]/div[1]/div/p/a[1]
|
||||
html_file: web/0046/documentatiecentrumurk.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.695925+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@urkertaol.nl
|
||||
raw_value: info@urkertaol.nl
|
||||
source_url: https://www.documentatiecentrumurk.nl/
|
||||
retrieved_on: '2025-11-29T14:29:19.349569+00:00'
|
||||
xpath: /html/body/div/footer/div/p/a[1]
|
||||
html_file: web/0046/documentatiecentrumurk.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.695931+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0628910044
|
||||
raw_value: 0628910044
|
||||
source_url: https://www.documentatiecentrumurk.nl/
|
||||
retrieved_on: '2025-11-29T14:29:19.349569+00:00'
|
||||
xpath: /html/body/div/div[3]/div[2]/div[1]/div/p/a[2]
|
||||
html_file: web/0046/documentatiecentrumurk.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.695957+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Documentatiecentrum Urk
|
||||
raw_value: Documentatiecentrum Urk
|
||||
source_url: https://www.documentatiecentrumurk.nl/
|
||||
retrieved_on: '2025-11-29T14:29:19.349569+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0046/documentatiecentrumurk.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.296304+00:00'
|
||||
|
|
|
|||
|
|
@ -522,3 +522,113 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-LlsHFA
|
||||
assigned_date: '2017-07-19'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-LEL-A-FA
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 01e86c59-08e8-5977-bad4-2b4cc69ab0ff
|
||||
identifier_url: urn:uuid:01e86c59-08e8-5977-bad4-2b4cc69ab0ff
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 1836c599-d449-85c0-bb9e-3900c49e31fc
|
||||
identifier_url: urn:uuid:1836c599-d449-85c0-bb9e-3900c49e31fc
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '1744799170134914496'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-78e2-906f-abf8461e955c
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-78e2-906f-abf8461e955c
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-LEL-A-FA
|
||||
ghcid_original: NL-FL-LEL-A-FA
|
||||
ghcid_uuid: 01e86c59-08e8-5977-bad4-2b4cc69ab0ff
|
||||
ghcid_uuid_sha256: 1836c599-d449-85c0-bb9e-3900c49e31fc
|
||||
ghcid_numeric: 1744799170134914496
|
||||
record_id: 019ad9ec-7c9f-78e2-906f-abf8461e955c
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-LEL-A-FA
|
||||
ghcid_numeric: 1744799170134914496
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751736
|
||||
geonames_name: Lelystad-Haven
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.521685299999994
|
||||
longitude: 5.4368643
|
||||
source: google_maps
|
||||
distance_km: 3.2344193768231926
|
||||
geonames_id: 2751736
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.769543+00:00'
|
||||
source_archive: web/0047/hetflevolandsarchief.nl
|
||||
claims_count: 4
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Het Flevolands Archief
|
||||
raw_value: Het Flevolands Archief - Homepage
|
||||
source_url: https://www.hetflevolandsarchief.nl/
|
||||
retrieved_on: '2025-11-29T14:29:20.248807+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0047/hetflevolandsarchief.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.768265+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/HetFlevolandsArchief/
|
||||
raw_value: https://www.facebook.com/HetFlevolandsArchief/
|
||||
source_url: https://www.hetflevolandsarchief.nl/
|
||||
retrieved_on: '2025-11-29T14:29:20.248807+00:00'
|
||||
xpath: /html/body/div[2]/div/div/div/div/div[5]/div/ul/li[2]/a
|
||||
html_file: web/0047/hetflevolandsarchief.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.769086+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/hetflevolandsarchief/
|
||||
raw_value: https://www.instagram.com/hetflevolandsarchief/
|
||||
source_url: https://www.hetflevolandsarchief.nl/
|
||||
retrieved_on: '2025-11-29T14:29:20.248807+00:00'
|
||||
xpath: /html/body/div[2]/div/div/div/div/div[5]/div/ul/li[3]/a
|
||||
html_file: web/0047/hetflevolandsarchief.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.769111+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Nieuws
|
||||
raw_value: Nieuws
|
||||
source_url: https://www.hetflevolandsarchief.nl/
|
||||
retrieved_on: '2025-11-29T14:29:20.248807+00:00'
|
||||
xpath: /html/body/div[2]/main/div[6]/div/div/div/h1
|
||||
html_file: web/0047/hetflevolandsarchief.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.769239+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Het Flevolands Archief
|
||||
raw_value: Het Flevolands Archief
|
||||
source_url: https://www.hetflevolandsarchief.nl/
|
||||
retrieved_on: '2025-11-29T14:29:20.248807+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0047/hetflevolandsarchief.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.337716+00:00'
|
||||
digital_platforms:
|
||||
- platform_name: Gemeenschappelijke regeling Regionaal Historisch Centrum Het Flevolands
|
||||
Archief
|
||||
platform_url: https://www.hkk-zuidkwartier.nl/
|
||||
platform_type: OFFICIAL_WEBSITE
|
||||
provenance:
|
||||
source_type: wikidata_p856
|
||||
data_tier: TIER_2_VERIFIED
|
||||
discovery_timestamp: '2025-12-01T14:56:17.096224+00:00'
|
||||
wikidata_id: Q110907518
|
||||
wikidata_property: P856
|
||||
|
|
|
|||
|
|
@ -870,3 +870,127 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 9
|
||||
enrichment_timestamp: '2025-11-30T12:47:29.825924+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-LEL-M-A
|
||||
ghcid_original: NL-FL-LEL-M-A
|
||||
ghcid_uuid: 6813ce90-a3f9-5559-b260-0f3b7a0c15c8
|
||||
ghcid_uuid_sha256: 4ae072ad-e3e2-836c-9c01-2df393a2cc42
|
||||
ghcid_numeric: 5395438444768002924
|
||||
record_id: 019ad9ec-7c9f-7827-bf7c-8030ee89b321
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-LEL-M-A
|
||||
ghcid_numeric: 5395438444768002924
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751738
|
||||
geonames_name: Lelystad
|
||||
feature_code: PPLA
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.457878699999995
|
||||
longitude: 5.5308014
|
||||
source: google_maps
|
||||
distance_km: 8.350217941232977
|
||||
geonames_id: 2751738
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-LEL-M-A
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6813ce90-a3f9-5559-b260-0f3b7a0c15c8
|
||||
identifier_url: urn:uuid:6813ce90-a3f9-5559-b260-0f3b7a0c15c8
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 4ae072ad-e3e2-836c-9c01-2df393a2cc42
|
||||
identifier_url: urn:uuid:4ae072ad-e3e2-836c-9c01-2df393a2cc42
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '5395438444768002924'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7827-bf7c-8030ee89b321
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7827-bf7c-8030ee89b321
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:07.882117+00:00'
|
||||
source_archive: web/0048/aviodrome.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Kijk omhoog, ontdek meer
|
||||
raw_value: Kijk omhoog, ontdek meer | Luchtvaartmuseum Aviodrome
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.881475+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Welkom aan boord! Ben je klaar voor een duikvlucht langs meer dan
|
||||
100 unieke vlieguigen in het allerleukste vliegtuigmuseum in Lelystad? Ready
|
||||
for boarding?
|
||||
raw_value: Welkom aan boord! Ben je klaar voor een duikvlucht langs meer dan 100
|
||||
unieke vlieguigen in het allerleukste vliegtuigmuseum in Lelystad? Ready for
|
||||
boarding?
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:07.881556+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Aviodrome
|
||||
raw_value: Aviodrome
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:07.881676+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: http://instagram.com/beleefaviodrome
|
||||
raw_value: http://instagram.com/beleefaviodrome
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[1]/div/div/div[2]/div/a[1]
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.881907+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Aviodrome/
|
||||
raw_value: https://www.facebook.com/Aviodrome/
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[1]/div/div/div[2]/div/a[2]
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:07.881916+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Hét luchtvaartmuseum van Nederland
|
||||
raw_value: Hét luchtvaartmuseum van Nederland
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/body/div[2]/main/section[2]/div/div/div/h1
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:07.881963+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Aviodrome
|
||||
raw_value: Aviodrome
|
||||
source_url: https://www.aviodrome.nl/
|
||||
retrieved_on: '2025-11-29T14:29:22.169597+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0048/aviodrome.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.412415+00:00'
|
||||
|
|
|
|||
|
|
@ -435,3 +435,135 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:41:52.727510+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:25.512004+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-URK-M-OR
|
||||
ghcid_original: NL-FL-URK-M-OR
|
||||
ghcid_uuid: fa716d66-c133-5084-b5f7-7325adbc197b
|
||||
ghcid_uuid_sha256: d5f93578-7312-8607-aeb4-1841b36fb2a5
|
||||
ghcid_numeric: 15418413590722553351
|
||||
record_id: 019ad9ec-7c9f-7fff-9f03-4736ba1bfdc6
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-URK-M-OR
|
||||
ghcid_numeric: 15418413590722553351
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745932
|
||||
geonames_name: Urk
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6615001
|
||||
longitude: 5.5960632
|
||||
source: google_maps
|
||||
distance_km: 0.6016015500631807
|
||||
geonames_id: 2745932
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-URK-M-OR
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: fa716d66-c133-5084-b5f7-7325adbc197b
|
||||
identifier_url: urn:uuid:fa716d66-c133-5084-b5f7-7325adbc197b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: d5f93578-7312-8607-aeb4-1841b36fb2a5
|
||||
identifier_url: urn:uuid:d5f93578-7312-8607-aeb4-1841b36fb2a5
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '15418413590722553351'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7fff-9f03-4736ba1bfdc6
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7fff-9f03-4736ba1bfdc6
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:08.347392+00:00'
|
||||
source_archive: web/0049/oudraadhuis.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Kunstpodium 't Oude Raadhuis
|
||||
raw_value: Kunstpodium 't Oude Raadhuis - Beek en Donk - 't Oude Raadhuis
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:08.346133+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Kunstpodium in Beek en Donk met exposities, concerten, kunstcafé
|
||||
en unieke trouwlocatie, beleef kunst in ’t Oude Raadhuis.
|
||||
raw_value: Kunstpodium in Beek en Donk met exposities, concerten, kunstcafé en
|
||||
unieke trouwlocatie, beleef kunst in ’t Oude Raadhuis.
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:08.346259+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: '''t Oude Raadhuis'
|
||||
raw_value: '''t Oude Raadhuis'
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:08.346769+00:00'
|
||||
- claim_type: email
|
||||
claim_value: kunstpodium@oudraadhuis.nl
|
||||
raw_value: kunstpodium@oudraadhuis.nl
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/body/div[3]/div[1]/div[2]/div/div[2]/div[2]/div/div/div/div[1]/div[2]/div[3]/div/div/div[3]/div/p/a
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.346973+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/t_oude_raadhuis/
|
||||
raw_value: https://www.instagram.com/t_oude_raadhuis/
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/body/div[3]/div[1]/div[2]/div/div[1]/div[2]/div/div/div/div/div[2]/div[2]/div/div/div[2]/div/a
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.347126+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/kunstpodiumtouderaadhuis
|
||||
raw_value: https://www.facebook.com/kunstpodiumtouderaadhuis
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/body/div[3]/div[1]/div[2]/div/div[1]/div[2]/div/div/div/div/div[2]/div[2]/div/div/div[3]/div/a
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.347133+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: PROGRAMMA
|
||||
raw_value: PROGRAMMA
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/body/div[3]/div[1]/div[1]/div/div[1]/div[3]/div/div/div/div[1]/div[2]/div/div/div/div[1]/h1
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:08.347196+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: '''t Oude Raadhuis'
|
||||
raw_value: '''t Oude Raadhuis'
|
||||
source_url: http://www.oudraadhuis.nl
|
||||
retrieved_on: '2025-11-29T14:32:24.616822+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0049/oudraadhuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.468847+00:00'
|
||||
|
|
|
|||
|
|
@ -647,3 +647,145 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 8
|
||||
enrichment_timestamp: '2025-11-30T12:47:28.832514+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-SCH-M-MS
|
||||
ghcid_original: NL-FL-SCH-M-MS
|
||||
ghcid_uuid: 83a99848-e497-5998-b0ed-4468ceacd9fa
|
||||
ghcid_uuid_sha256: 231c246c-618e-8fc6-8d7f-a0c02e11f7d1
|
||||
ghcid_numeric: 2529937138587180998
|
||||
record_id: 019ad9ec-7c9f-7865-b462-0e254b40dbac
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-SCH-M-MS
|
||||
ghcid_numeric: 2529937138587180998
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750889
|
||||
geonames_name: Schokland
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6346121
|
||||
longitude: 5.777588
|
||||
source: google_maps
|
||||
distance_km: 0.031073737780115025
|
||||
geonames_id: 2750889
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-SCH-M-MS
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 83a99848-e497-5998-b0ed-4468ceacd9fa
|
||||
identifier_url: urn:uuid:83a99848-e497-5998-b0ed-4468ceacd9fa
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 231c246c-618e-8fc6-8d7f-a0c02e11f7d1
|
||||
identifier_url: urn:uuid:231c246c-618e-8fc6-8d7f-a0c02e11f7d1
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2529937138587180998'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7865-b462-0e254b40dbac
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7865-b462-0e254b40dbac
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:08.807447+00:00'
|
||||
source_archive: web/0050/museumschokland.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Schokland
|
||||
raw_value: Museum Schokland | UNESCO Werelderfgoed Schokland
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:08.806301+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Voormalig eiland en UNESCO Werelderfgoed Schokland vertelt het eeuwenoude
|
||||
verhaal van leven met water. Bezoek Museum Schokland.
|
||||
raw_value: Voormalig eiland en UNESCO Werelderfgoed Schokland vertelt het eeuwenoude
|
||||
verhaal van leven met water. Bezoek Museum Schokland.
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/head/meta[6]
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:08.806400+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumschokland.nl
|
||||
raw_value: info@museumschokland.nl
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/footer/div[1]/div/div[2]/a[2]
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.806849+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '0031527760630'
|
||||
raw_value: '0031527760630'
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/footer/div[1]/div/div[2]/a[1]
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.807019+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumschokland/
|
||||
raw_value: https://www.instagram.com/museumschokland/
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/footer/div[1]/div/div[3]/a[1]
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.807242+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/MuseumSchokland
|
||||
raw_value: https://twitter.com/MuseumSchokland
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/footer/div[1]/div/div[3]/a[2]
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.807290+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Museum-Schokland-190739940958961/
|
||||
raw_value: https://www.facebook.com/Museum-Schokland-190739940958961/
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/footer/div[1]/div/div[3]/a[3]
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:08.807298+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Welkom
|
||||
raw_value: Welkom
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/div[2]/div/h1
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:08.807344+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Schokland
|
||||
raw_value: Museum Schokland
|
||||
source_url: https://www.museumschokland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:32.871082+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0050/museumschokland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.528798+00:00'
|
||||
|
|
|
|||
|
|
@ -474,3 +474,123 @@ zcbs_enrichment:
|
|||
enrichment_timestamp: '2025-11-30T19:09:04.609638+00:00'
|
||||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
match_score: 0.787
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-LEL-M-NRM
|
||||
ghcid_original: NL-FL-LEL-M-NRM
|
||||
ghcid_uuid: 2aee958d-9209-5991-b10a-4dd006310398
|
||||
ghcid_uuid_sha256: bbaaa5ea-1513-8d5d-82ea-049a09500919
|
||||
ghcid_numeric: 13522803255927860573
|
||||
record_id: 019ad9ec-7c9f-77ce-a983-6dc2a7821182
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-LEL-M-NRM
|
||||
ghcid_numeric: 13522803255927860573
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751738
|
||||
geonames_name: Lelystad
|
||||
feature_code: PPLA
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.4568069
|
||||
longitude: 5.529463799999999
|
||||
source: google_maps
|
||||
distance_km: 8.321991611029484
|
||||
geonames_id: 2751738
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-LEL-M-NRM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 2aee958d-9209-5991-b10a-4dd006310398
|
||||
identifier_url: urn:uuid:2aee958d-9209-5991-b10a-4dd006310398
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: bbaaa5ea-1513-8d5d-82ea-049a09500919
|
||||
identifier_url: urn:uuid:bbaaa5ea-1513-8d5d-82ea-049a09500919
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13522803255927860573'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-77ce-a983-6dc2a7821182
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-77ce-a983-6dc2a7821182
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:09.200186+00:00'
|
||||
source_archive: web/0051/nationaalruimtevaartmuseum.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Nationaal Ruimtevaart Museum
|
||||
raw_value: Nationaal Ruimtevaart Museum
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/head/title[1]
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.199445+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: NRMWebsite
|
||||
raw_value: NRMWebsite - Startpagina
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/head/title[2]
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.199456+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Informatie van Nationaal Ruimtevaart Museum in Lelystad
|
||||
raw_value: Informatie van Nationaal Ruimtevaart Museum in Lelystad
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/head/meta[1]
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:09.199556+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@nationaalruimtevaartmuseum.nl
|
||||
raw_value: info@nationaalruimtevaartmuseum.nl
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/body/footer/div/div[4]/div[2]/ul/li[5]/a
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.199824+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/NationaalRuimtevaartMuseum/
|
||||
raw_value: https://www.facebook.com/NationaalRuimtevaartMuseum/
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[1]/a
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.200007+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://linkedin.com/company/nationaal-ruimtevaart-museum/
|
||||
raw_value: https://linkedin.com/company/nationaal-ruimtevaart-museum/
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[2]/a
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.200013+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Nationaal Ruimtevaart Museum
|
||||
raw_value: Nationaal Ruimtevaart Museum
|
||||
source_url: https://www.nationaalruimtevaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:29:31.959467+00:00'
|
||||
xpath: /html/head/title[1]
|
||||
html_file: web/0051/nationaalruimtevaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.578801+00:00'
|
||||
|
|
|
|||
|
|
@ -445,3 +445,124 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-LlsNLE
|
||||
assigned_date: '2012-02-27'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-LEL-A-NE
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: edfaced7-53f8-5313-adce-c40216c945db
|
||||
identifier_url: urn:uuid:edfaced7-53f8-5313-adce-c40216c945db
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: debd7a65-e3c1-82bb-865a-a0bd6be24285
|
||||
identifier_url: urn:uuid:debd7a65-e3c1-82bb-865a-a0bd6be24285
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '16050119225049694907'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7cc5-ad58-80353621bb2e
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7cc5-ad58-80353621bb2e
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-LEL-A-NE
|
||||
ghcid_original: NL-FL-LEL-A-NE
|
||||
ghcid_uuid: edfaced7-53f8-5313-adce-c40216c945db
|
||||
ghcid_uuid_sha256: debd7a65-e3c1-82bb-865a-a0bd6be24285
|
||||
ghcid_numeric: 16050119225049694907
|
||||
record_id: 019ad9ec-7c9f-7cc5-ad58-80353621bb2e
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-LEL-A-NE
|
||||
ghcid_numeric: 16050119225049694907
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751736
|
||||
geonames_name: Lelystad-Haven
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.502303
|
||||
longitude: 5.418952000000001
|
||||
source: google_maps
|
||||
distance_km: 0.4443172495329071
|
||||
geonames_id: 2751736
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:09.614579+00:00'
|
||||
source_archive: web/0052/nieuwland-experience.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Nieuw Land Experience
|
||||
raw_value: Nieuw Land Experience - vaartochten en tours
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.612894+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Nieuw Land Experience verzorgt vaartochten en tours door Flevoland
|
||||
onder andere naar Nationaal Park Nieuw Land en Werelderfgoed Schokland.
|
||||
raw_value: Nieuw Land Experience verzorgt vaartochten en tours door Flevoland
|
||||
onder andere naar Nationaal Park Nieuw Land en Werelderfgoed Schokland.
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:09.613152+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Nieuwland Experience
|
||||
raw_value: Nieuwland Experience
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:09.613534+00:00'
|
||||
- claim_type: email
|
||||
claim_value: vaartocht@nieuwland-experience.nl
|
||||
raw_value: vaartocht@nieuwland-experience.nl
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/body/div/div/header/div/div/div[1]/div/div/div[1]/div/div/div/p/a[1]
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.613827+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0612629475
|
||||
raw_value: 0612629475
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/body/div/div/header/div/div/div[1]/div/div/div[1]/div/div/div/p/a[2]
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.613962+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Wat wil je ontdekken?
|
||||
raw_value: Wat wil je ontdekken?
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/body/div/div/div/div/div/div/div/div[6]/div/div/div/div/div/div[1]/div/h1
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.614323+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Nieuwland Experience
|
||||
raw_value: Nieuwland Experience
|
||||
source_url: https://www.nieuwland-experience.nl/
|
||||
retrieved_on: '2025-11-29T23:28:56.199494+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0052/nieuwland-experience.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.621621+00:00'
|
||||
|
|
|
|||
|
|
@ -307,3 +307,176 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:42:11.144845+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:33.961850+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-NH-CAS-O-MB
|
||||
ghcid_original: NL-NH-CAS-O-MB
|
||||
ghcid_uuid: 6de02a37-3174-556e-9f7d-de2c9a0f456c
|
||||
ghcid_uuid_sha256: 5861d614-7576-81e1-8677-d8ecb1688e22
|
||||
ghcid_numeric: 6368606731436978657
|
||||
record_id: 019ad9ec-7c9f-7dd5-a9eb-a7a76d6c7b7c
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-NH-CAS-O-MB
|
||||
ghcid_numeric: 6368606731436978657
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2757991
|
||||
geonames_name: Castricum
|
||||
feature_code: PPL
|
||||
admin1_code: '07'
|
||||
region_code: NH
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.544801
|
||||
longitude: 4.658617
|
||||
source: google_maps
|
||||
distance_km: 1.2636031044477913
|
||||
geonames_id: 2757991
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-NH-CAS-O-MB
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6de02a37-3174-556e-9f7d-de2c9a0f456c
|
||||
identifier_url: urn:uuid:6de02a37-3174-556e-9f7d-de2c9a0f456c
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5861d614-7576-81e1-8677-d8ecb1688e22
|
||||
identifier_url: urn:uuid:5861d614-7576-81e1-8677-d8ecb1688e22
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6368606731436978657'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7dd5-a9eb-a7a76d6c7b7c
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7dd5-a9eb-a7a76d6c7b7c
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:09.777853+00:00'
|
||||
source_archive: web/0053/batavialand.nl
|
||||
claims_count: 11
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Provinciaal Archeologisch Depot Flevoland
|
||||
raw_value: Provinciaal Archeologisch Depot Flevoland - Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776189+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Het Provinciaal Archeologisch Depot Flevoland beheert en behoudt
|
||||
archeologische vondsten. Ontdek hoe ons erfgoed toegankelijk blijft voor onderzoek
|
||||
en publiek.
|
||||
raw_value: Het Provinciaal Archeologisch Depot Flevoland beheert en behoudt archeologische
|
||||
vondsten. Ontdek hoe ons erfgoed toegankelijk blijft voor onderzoek en publiek.
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776298+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Batavialand
|
||||
raw_value: Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776468+00:00'
|
||||
- claim_type: email
|
||||
claim_value: kim.mulder@batavialand.nl
|
||||
raw_value: kim.mulder@batavialand.nl
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/div/div[2]/div/div[2]/div[3]/div[3]/div/p[4]/a[1]
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776677+00:00'
|
||||
- claim_type: email
|
||||
claim_value: depotflevoland@batavialand.nl
|
||||
raw_value: depotflevoland@batavialand.nl
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/div/div[2]/div/div[2]/div[3]/div[3]/div/p[4]/a[2]
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776683+00:00'
|
||||
- claim_type: email
|
||||
claim_value: nsd@batavialand.nl
|
||||
raw_value: nsd@batavialand.nl
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/div/div[2]/div/div[2]/div[3]/div[3]/div/p[4]/a[3]
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776687+00:00'
|
||||
- claim_type: email
|
||||
claim_value: studiecentrum@batavialand.nl
|
||||
raw_value: studiecentrum@batavialand.nl
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/div/div[2]/div/div[2]/div[3]/div[3]/div/p[5]/a
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.776692+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Batavialand.Lelystad
|
||||
raw_value: https://www.facebook.com/Batavialand.Lelystad
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[1]/div/div/a
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.777443+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/batavialand
|
||||
raw_value: https://twitter.com/batavialand
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[2]/div/div/a
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.777466+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumbatavialand/
|
||||
raw_value: https://www.instagram.com/museumbatavialand/
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[3]/div/div/a
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.777477+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/@museumbatavialand
|
||||
raw_value: https://www.youtube.com/@museumbatavialand
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[4]/div/div/a
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.777505+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Batavialand
|
||||
raw_value: Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/
|
||||
retrieved_on: '2025-11-29T14:29:33.719272+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0053/batavialand.nl/mirror/www.batavialand.nl/kennis-en-collecties/provinciaal-archeologisch-depot-flevoland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.664077+00:00'
|
||||
|
|
|
|||
|
|
@ -472,3 +472,166 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:42:17.974797+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:36.007326+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-GE-TOX-S-S
|
||||
ghcid_original: NL-GE-TOX-S-S
|
||||
ghcid_uuid: 9f429a5b-582d-5821-a9d7-de6af4b97e0b
|
||||
ghcid_uuid_sha256: 2f96b242-dd01-832d-a888-e7a5bf69743d
|
||||
ghcid_numeric: 3429124166534673197
|
||||
record_id: 019ad9ec-7c9f-7fd8-8552-22956cb0cbbd
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-GE-TOX-S-S
|
||||
ghcid_numeric: 3429124166534673197
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2746238
|
||||
geonames_name: t Oever
|
||||
feature_code: PPL
|
||||
admin1_code: '03'
|
||||
region_code: GE
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.284607099999995
|
||||
longitude: 5.5188714999999995
|
||||
source: google_maps
|
||||
distance_km: 3.2436579967308843
|
||||
geonames_id: 2746238
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-GE-TOX-S-S
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 9f429a5b-582d-5821-a9d7-de6af4b97e0b
|
||||
identifier_url: urn:uuid:9f429a5b-582d-5821-a9d7-de6af4b97e0b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 2f96b242-dd01-832d-a888-e7a5bf69743d
|
||||
identifier_url: urn:uuid:2f96b242-dd01-832d-a888-e7a5bf69743d
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '3429124166534673197'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7fd8-8552-22956cb0cbbd
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7fd8-8552-22956cb0cbbd
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916834+00:00'
|
||||
source_archive: web/0054/scouting.nl
|
||||
claims_count: 10
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Scouting staat voor uitdaging
|
||||
raw_value: Scouting staat voor uitdaging - Scouting
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.915150+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Scouting staat voor uitdaging! Scouting biedt leuke en spannende
|
||||
activiteiten waarmee meiden en jongens worden uitgedaagd zich persoonlijk te
|
||||
ontwikkelen.
|
||||
raw_value: Scouting staat voor uitdaging! Scouting biedt leuke en spannende activiteiten
|
||||
waarmee meiden en jongens worden uitgedaagd zich persoonlijk te ontwikkelen.
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:09.915339+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Scouting
|
||||
raw_value: Scouting
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:09.915678+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0334960911
|
||||
raw_value: 0334960911
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/header/div/div/a[2]
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916150+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/scoutingnederland
|
||||
raw_value: https://www.facebook.com/scoutingnederland
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[1]/a
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916526+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://www.twitter.com/Scouting_NL
|
||||
raw_value: https://www.twitter.com/Scouting_NL
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[2]/a
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916531+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/scouting-nederland/
|
||||
raw_value: https://www.linkedin.com/company/scouting-nederland/
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[3]/a
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916536+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/scouttvnl
|
||||
raw_value: https://www.youtube.com/scouttvnl
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[4]/a
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916540+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/Scouting_NL
|
||||
raw_value: https://www.instagram.com/Scouting_NL
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/ul/li[5]/a
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916544+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Een wereld vol avontuur
|
||||
raw_value: Een wereld vol avontuur
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/body/div[3]/div/div/h1
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:09.916609+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Scouting
|
||||
raw_value: Scouting
|
||||
source_url: http://www.scouting.nl/
|
||||
retrieved_on: '2025-11-29T14:29:35.913959+00:00'
|
||||
xpath: /html/head/meta[12]
|
||||
html_file: web/0054/scouting.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.709091+00:00'
|
||||
|
|
|
|||
|
|
@ -384,3 +384,123 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:42:23.594391+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:29:36.502462+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-ASX-A-GA
|
||||
ghcid_original: NL-FL-ASX-A-GA
|
||||
ghcid_uuid: f5b16489-602b-512c-8ede-7a9d563bd5ae
|
||||
ghcid_uuid_sha256: 6b3a87da-2dc1-84d1-b6f4-7ce3951476f7
|
||||
ghcid_numeric: 7726637481847792849
|
||||
record_id: 019ad9ec-7c9f-7668-87c4-9f7d8ffe38bb
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-ASX-A-GA
|
||||
ghcid_numeric: 7726637481847792849
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759879
|
||||
geonames_name: Almere Stad
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.37122230000001
|
||||
longitude: 5.2209186
|
||||
source: google_maps
|
||||
distance_km: 0.7612241875935525
|
||||
geonames_id: 2759879
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-ASX-A-GA
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f5b16489-602b-512c-8ede-7a9d563bd5ae
|
||||
identifier_url: urn:uuid:f5b16489-602b-512c-8ede-7a9d563bd5ae
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 6b3a87da-2dc1-84d1-b6f4-7ce3951476f7
|
||||
identifier_url: urn:uuid:6b3a87da-2dc1-84d1-b6f4-7ce3951476f7
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '7726637481847792849'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7668-87c4-9f7d8ffe38bb
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7668-87c4-9f7d8ffe38bb
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005368+00:00'
|
||||
source_archive: web/0055/stadsarchief.almere.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Website van het Stadsarchief Almere
|
||||
raw_value: Website van het Stadsarchief Almere
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005000+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Website van het Stadsarchief Almere
|
||||
raw_value: Website van het Stadsarchief Almere
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005063+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeente Almere
|
||||
raw_value: Gemeente Almere
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005144+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Stadsarchiefalmere
|
||||
raw_value: https://www.facebook.com/Stadsarchiefalmere
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/body/div[4]/div/div/div/div[4]/div[2]/div/div[1]/div/div/div/div/div/figure/a
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005291+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/stadsarchief-almere/
|
||||
raw_value: https://www.linkedin.com/company/stadsarchief-almere/
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/body/div[4]/div/div/div/div[4]/div[2]/div/div[2]/div/div/div/div/div/figure/a
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005298+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UC_Zpb30Ta0EfE0VoIrvOPNA/videos
|
||||
raw_value: https://www.youtube.com/channel/UC_Zpb30Ta0EfE0VoIrvOPNA/videos
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/body/div[4]/div/div/div/div[4]/div[2]/div/div[3]/div/div/div/div/div/figure/a
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.005304+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Gemeente Almere
|
||||
raw_value: Gemeente Almere
|
||||
source_url: https://stadsarchief.almere.nl/
|
||||
retrieved_on: '2025-11-29T14:29:36.427020+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0055/stadsarchief.almere.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.748236+00:00'
|
||||
|
|
|
|||
|
|
@ -857,6 +857,19 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-LlsBatavialand
|
||||
assigned_date: '2020-08-04'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-LEL-M-MB
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 01142308-18ae-5d46-87e5-6ef8588059b1
|
||||
identifier_url: urn:uuid:01142308-18ae-5d46-87e5-6ef8588059b1
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 459aadaa-9890-8a95-912d-c5e8141a5215
|
||||
identifier_url: urn:uuid:459aadaa-9890-8a95-912d-c5e8141a5215
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '5015512083246111381'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7daa-9dc1-fa0ca2dd2795
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7daa-9dc1-fa0ca2dd2795
|
||||
museum_register_enrichment:
|
||||
museum_name: Erfgoedpark Batavialand
|
||||
website_url: https://www.batavialand.nl/
|
||||
|
|
@ -868,3 +881,131 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 10
|
||||
enrichment_timestamp: '2025-11-30T12:47:34.409045+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-LEL-M-MB
|
||||
ghcid_original: NL-FL-LEL-M-MB
|
||||
ghcid_uuid: 01142308-18ae-5d46-87e5-6ef8588059b1
|
||||
ghcid_uuid_sha256: 459aadaa-9890-8a95-912d-c5e8141a5215
|
||||
ghcid_numeric: 5015512083246111381
|
||||
record_id: 019ad9ec-7c9f-7daa-9dc1-fa0ca2dd2795
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-LEL-M-MB
|
||||
ghcid_numeric: 5015512083246111381
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751736
|
||||
geonames_name: Lelystad-Haven
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.5215106
|
||||
longitude: 5.437314
|
||||
source: google_maps
|
||||
distance_km: 3.249135324661846
|
||||
geonames_id: 2751736
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:10.472695+00:00'
|
||||
source_archive: web/0056/batavialand.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Reis door de tijd
|
||||
raw_value: Reis door de tijd - Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:10.471326+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Stap aan boord van de Batavia, zie ambachtslieden aan het werk op
|
||||
de werf en beleef de ontstaansgeschiedenis van Flevoland in onze tentoonstellingen.
|
||||
raw_value: Stap aan boord van de Batavia, zie ambachtslieden aan het werk op de
|
||||
werf en beleef de ontstaansgeschiedenis van Flevoland in onze tentoonstellingen.
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_description
|
||||
extraction_timestamp: '2025-12-01T10:44:10.471532+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Batavialand
|
||||
raw_value: Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:10.471624+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Batavialand.Lelystad
|
||||
raw_value: https://www.facebook.com/Batavialand.Lelystad
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[1]/div/div/a
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.472274+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/batavialand
|
||||
raw_value: https://twitter.com/batavialand
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[2]/div/div/a
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.472282+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumbatavialand/
|
||||
raw_value: https://www.instagram.com/museumbatavialand/
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[3]/div/div/a
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.472287+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/@museumbatavialand
|
||||
raw_value: https://www.youtube.com/@museumbatavialand
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[4]/div/div/a
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.472291+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Verborgen verhalen duik je op in Museum Batavialand
|
||||
raw_value: Verborgen verhalen duik je op in Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/body/div/div[1]/div/div[4]/div[1]/div/div/h1
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:10.472406+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Batavialand
|
||||
raw_value: Museum Batavialand
|
||||
source_url: https://www.batavialand.nl/
|
||||
retrieved_on: '2025-11-29T14:32:52.452892+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0056/batavialand.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.810114+00:00'
|
||||
|
|
|
|||
|
|
@ -215,4 +215,137 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:42:35.791270+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:07.494631+00:00'
|
||||
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-DRO-S-EW
|
||||
ghcid_original: NL-FL-DRO-S-EW
|
||||
ghcid_uuid: 0f1d8caa-700e-5998-a59f-5d4ae43709dd
|
||||
ghcid_uuid_sha256: 5e3ce6ca-a70a-8c9c-b7b9-044070b70d4a
|
||||
ghcid_numeric: 6790556096228154524
|
||||
record_id: 019ad9ec-7c9f-77fb-9311-7e3d7fa016ee
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-DRO-S-EW
|
||||
ghcid_numeric: 6790556096228154524
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756559
|
||||
geonames_name: Dronten
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.5217643
|
||||
longitude: 5.727762
|
||||
source: google_maps
|
||||
distance_km: 1.135235147075297
|
||||
geonames_id: 2756559
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-DRO-S-EW
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 0f1d8caa-700e-5998-a59f-5d4ae43709dd
|
||||
identifier_url: urn:uuid:0f1d8caa-700e-5998-a59f-5d4ae43709dd
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5e3ce6ca-a70a-8c9c-b7b9-044070b70d4a
|
||||
identifier_url: urn:uuid:5e3ce6ca-a70a-8c9c-b7b9-044070b70d4a
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6790556096228154524'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-77fb-9311-7e3d7fa016ee
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-77fb-9311-7e3d7fa016ee
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532969+00:00'
|
||||
source_archive: web/0057/historischdronten.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Historisch Dronten bewaart de geschiedenis van gemeente Dronten
|
||||
raw_value: Historisch Dronten bewaart de geschiedenis van gemeente Dronten
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532456+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Stichting Historisch Dronten wil de geschiedenis van Gemeente Dronten
|
||||
bewaren en optekenen voor het nageslacht met educatie, publicaties, cultuur(fiets)routes,
|
||||
lezingen, rondleidingen en een beeldbank.
|
||||
raw_value: Stichting Historisch Dronten wil de geschiedenis van Gemeente Dronten
|
||||
bewaren en optekenen voor het nageslacht met educatie, publicaties, cultuur(fiets)routes,
|
||||
lezingen, rondleidingen en een beeldbank.
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/head/meta[2]
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532533+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Endless webdesign
|
||||
raw_value: Endless webdesign
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532673+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@historischdronten.nl
|
||||
raw_value: info@historischdronten.nl
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/body/div[3]/div/div[1]/div/div/div[2]/div[2]/div/a[2]
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532758+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0653716866
|
||||
raw_value: 0653716866
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/body/div[3]/div/div[1]/div/div/div[2]/div[2]/div/a[1]
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532807+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/historie.dronten
|
||||
raw_value: https://www.facebook.com/historie.dronten
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/body/div[3]/div/div[2]/div/div/div/ul/li/a
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532890+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Stichting Historisch Dronten
|
||||
raw_value: Stichting Historisch Dronten
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/body/div[1]/div[5]/div[2]/div[1]/div/div[1]/h1
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:10.532919+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Endless webdesign
|
||||
raw_value: Endless webdesign
|
||||
source_url: https://www.historischdronten.nl/
|
||||
retrieved_on: '2025-11-29T14:32:07.466469+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0057/historischdronten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:25.852053+00:00'
|
||||
|
|
|
|||
|
|
@ -177,12 +177,97 @@ zcbs_enrichment:
|
|||
source: https://www.dezijpe.nl/cgi-bin/boerderij.pl?misc=90
|
||||
web_enrichment:
|
||||
web_archives:
|
||||
- url: https://vriendenvanurk.nl/
|
||||
- url: http://www.vriendenvanurk.nl/
|
||||
directory: web/0058/vriendenvanurk.nl
|
||||
pages_archived: 1
|
||||
archive_method: wget_warc_deep
|
||||
warc_file: archive.warc.gz
|
||||
warc_size_bytes: 3650
|
||||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:42:42.371143+00:00'
|
||||
web_archive_timestamp: '2025-12-01T11:44:12.344065+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:07.646889+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FL-URK-S-FV
|
||||
ghcid_original: NL-FL-URK-S-FV
|
||||
ghcid_uuid: bf4ba90e-56f9-5aae-9c06-4366ca899595
|
||||
ghcid_uuid_sha256: 56eb4a1d-4f9c-85d4-99d6-0859ca951f7c
|
||||
ghcid_numeric: 6263181196538955220
|
||||
record_id: 019ad9ec-7c9f-7940-b343-e6c1bb68767f
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FL-URK-S-FV
|
||||
ghcid_numeric: 6263181196538955220
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745932
|
||||
geonames_name: Urk
|
||||
feature_code: PPL
|
||||
admin1_code: '16'
|
||||
region_code: FL
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.6614796
|
||||
longitude: 5.5959875
|
||||
source: google_maps
|
||||
distance_km: 0.6102802047533047
|
||||
geonames_id: 2745932
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FL-URK-S-FV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: bf4ba90e-56f9-5aae-9c06-4366ca899595
|
||||
identifier_url: urn:uuid:bf4ba90e-56f9-5aae-9c06-4366ca899595
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 56eb4a1d-4f9c-85d4-99d6-0859ca951f7c
|
||||
identifier_url: urn:uuid:56eb4a1d-4f9c-85d4-99d6-0859ca951f7c
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6263181196538955220'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7940-b343-e6c1bb68767f
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7940-b343-e6c1bb68767f
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: FotoBeeldbank VvU
|
||||
raw_value: FotoBeeldbank VvU
|
||||
source_url: http://www.vriendenvanurk.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0058/vriendenvanurk.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.877192+00:00'
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T12:31:24.365803+00:00'
|
||||
source_archive: web/0058/vriendenvanurk.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: FotoBeeldbank VvU
|
||||
raw_value: FotoBeeldbank VvU - Foto en Film
|
||||
source_url: http://www.vriendenvanurk.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/head/title
|
||||
html_file: web/0058/vriendenvanurk.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T12:31:24.354662+00:00'
|
||||
- claim_type: email
|
||||
claim_value: zcbs@vriendenvanurk.nl
|
||||
raw_value: zcbs@vriendenvanurk.nl
|
||||
source_url: http://www.vriendenvanurk.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/div[2]/font/table[1]/tbody/tr/td/div/table[2]/tbody/tr/td/font/table/tbody/tr/td[1]/details/p[1]/a
|
||||
html_file: web/0058/vriendenvanurk.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T12:31:24.362966+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Vrienden-van-Urk-110574604455514
|
||||
raw_value: https://www.facebook.com/Vrienden-van-Urk-110574604455514
|
||||
source_url: http://www.vriendenvanurk.nl/
|
||||
retrieved_on: ''
|
||||
xpath: /html/body/center[1]/table[2]/tbody/tr/td/div/a[6]
|
||||
html_file: web/0058/vriendenvanurk.nl/rendered.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T12:31:24.363260+00:00'
|
||||
|
|
|
|||
|
|
@ -526,3 +526,103 @@ web_enrichment:
|
|||
warc_format: ISO 28500
|
||||
web_archive_timestamp: '2025-11-29T11:42:49.346617+00:00'
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:09.501830+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-HOL-M-BA
|
||||
ghcid_original: NL-FR-HOL-M-BA
|
||||
ghcid_uuid: 7b2df5ac-9bcd-5366-949d-4228303b361b
|
||||
ghcid_uuid_sha256: b6d962d0-749e-8248-b5ba-e50ec9a575ef
|
||||
ghcid_numeric: 13175670832298365512
|
||||
record_id: 019ad9ec-7c9f-7f0a-8456-a1ffea6bc5a0
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-HOL-M-BA
|
||||
ghcid_numeric: 13175670832298365512
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753887
|
||||
geonames_name: Hollum
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.447782499999995
|
||||
longitude: 5.6173788
|
||||
source: google_maps
|
||||
distance_km: 2.4759838638641387
|
||||
geonames_id: 2753887
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-HOL-M-BA
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 7b2df5ac-9bcd-5366-949d-4228303b361b
|
||||
identifier_url: urn:uuid:7b2df5ac-9bcd-5366-949d-4228303b361b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b6d962d0-749e-8248-b5ba-e50ec9a575ef
|
||||
identifier_url: urn:uuid:b6d962d0-749e-8248-b5ba-e50ec9a575ef
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '13175670832298365512'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7f0a-8456-a1ffea6bc5a0
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7f0a-8456-a1ffea6bc5a0
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:10.664292+00:00'
|
||||
source_archive: web/0059/amelandermusea.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Bunkermuseum Ameland
|
||||
raw_value: Bunkermuseum Ameland – Amelander Musea
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/
|
||||
retrieved_on: '2025-11-29T14:32:09.407850+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0059/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:10.663449+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@amelandermusea.nl
|
||||
raw_value: info@amelandermusea.nl
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/
|
||||
retrieved_on: '2025-11-29T14:32:09.407850+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[2]
|
||||
html_file: web/0059/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.663890+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31519542737'
|
||||
raw_value: '+31519542737'
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/
|
||||
retrieved_on: '2025-11-29T14:32:09.407850+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[1]
|
||||
html_file: web/0059/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:10.663968+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Bunkermuseum Ameland
|
||||
raw_value: Bunkermuseum Ameland
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/
|
||||
retrieved_on: '2025-11-29T14:32:09.407850+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0059/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/bunkermuseum-ameland/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.913733+00:00'
|
||||
digital_platforms:
|
||||
- platform_name: Bunkermuseum Ameland
|
||||
platform_url: http://www.heemkunderavenstein.nl/
|
||||
platform_type: OFFICIAL_WEBSITE
|
||||
provenance:
|
||||
source_type: wikidata_p856
|
||||
data_tier: TIER_2_VERIFIED
|
||||
discovery_timestamp: '2025-12-01T14:56:17.147898+00:00'
|
||||
wikidata_id: Q110907493
|
||||
wikidata_property: P856
|
||||
|
|
|
|||
|
|
@ -571,3 +571,123 @@ web_enrichment:
|
|||
warc_size_bytes: 441484
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:13.295665+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-OOS-M-BMWV
|
||||
ghcid_original: NL-FR-OOS-M-BMWV
|
||||
ghcid_uuid: 6e3d5124-cfb6-566b-ba07-3c4c38c89e87
|
||||
ghcid_uuid_sha256: 2443b334-9767-8baa-beed-a101ad284a04
|
||||
ghcid_numeric: 2613129247264807850
|
||||
record_id: 019ad9ec-7c9f-7c15-8550-51f4f2bbf4b5
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-OOS-M-BMWV
|
||||
ghcid_numeric: 2613129247264807850
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2749334
|
||||
geonames_name: Oost-Vlieland
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.299219
|
||||
longitude: 5.03994
|
||||
source: google_maps
|
||||
distance_km: 3.8227997461730956
|
||||
geonames_id: 2749334
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-OOS-M-BMWV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6e3d5124-cfb6-566b-ba07-3c4c38c89e87
|
||||
identifier_url: urn:uuid:6e3d5124-cfb6-566b-ba07-3c4c38c89e87
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 2443b334-9767-8baa-beed-a101ad284a04
|
||||
identifier_url: urn:uuid:2443b334-9767-8baa-beed-a101ad284a04
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2613129247264807850'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7c15-8550-51f4f2bbf4b5
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7c15-8550-51f4f2bbf4b5
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:11.063494+00:00'
|
||||
source_archive: web/0060/bunkermuseumvlieland.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: BUNKER MUSEUM Wn12H Vlieland
|
||||
raw_value: BUNKER MUSEUM Wn12H Vlieland
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.062622+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31645113566'
|
||||
raw_value: '+31645113566'
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/body/main/div/div[1]/section[1]/div/div[1]/div/section/div/div/div/div[2]/div/p/a
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.063151+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/BunkermuseumWn12H/
|
||||
raw_value: https://www.facebook.com/BunkermuseumWn12H/
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/body/div[2]/section[1]/div[2]/div/div/section/div/div[4]/div/div/div/div/span[2]/a
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.063307+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCRK54Xrx4tk5KOtZRK7yXwA
|
||||
raw_value: https://www.youtube.com/channel/UCRK54Xrx4tk5KOtZRK7yXwA
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/body/div[2]/section[1]/div[2]/div/div/section/div/div[4]/div/div/div/div/span[3]/a
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.063318+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/bunkermuseumvlieland/
|
||||
raw_value: https://www.instagram.com/bunkermuseumvlieland/
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/body/div[2]/section[1]/div[2]/div/div/section/div/div[4]/div/div/div/div/span[4]/a
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.063324+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://mobile.twitter.com/wn12h
|
||||
raw_value: https://mobile.twitter.com/wn12h
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/body/div[2]/section[1]/div[2]/div/div/section/div/div[4]/div/div/div/div/span[5]/a
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.063329+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: BUNKER MUSEUM Wn12H Vlieland
|
||||
raw_value: BUNKER MUSEUM Wn12H Vlieland
|
||||
source_url: https://bunkermuseumvlieland.nl/
|
||||
retrieved_on: '2025-11-29T14:32:12.962220+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0060/bunkermuseumvlieland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:25.967596+00:00'
|
||||
|
|
|
|||
|
|
@ -600,3 +600,93 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 15
|
||||
enrichment_timestamp: '2025-11-30T12:47:39.335088+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-HOL-M-CMS
|
||||
ghcid_original: NL-FR-HOL-M-CMS
|
||||
ghcid_uuid: 23eb176c-433a-5526-8220-2ce5d2a04272
|
||||
ghcid_uuid_sha256: 79e04352-1577-8ce6-9c31-0472fc669ba7
|
||||
ghcid_numeric: 8782093293198994662
|
||||
record_id: 019ad9ec-7c9f-7511-b7d4-909fbc9b3e12
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-HOL-M-CMS
|
||||
ghcid_numeric: 8782093293198994662
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753887
|
||||
geonames_name: Hollum
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.4381722
|
||||
longitude: 5.6412622
|
||||
source: google_maps
|
||||
distance_km: 0.38171287222120137
|
||||
geonames_id: 2753887
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-HOL-M-CMS
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 23eb176c-433a-5526-8220-2ce5d2a04272
|
||||
identifier_url: urn:uuid:23eb176c-433a-5526-8220-2ce5d2a04272
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 79e04352-1577-8ce6-9c31-0472fc669ba7
|
||||
identifier_url: urn:uuid:79e04352-1577-8ce6-9c31-0472fc669ba7
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8782093293198994662'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7511-b7d4-909fbc9b3e12
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7511-b7d4-909fbc9b3e12
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:11.194489+00:00'
|
||||
source_archive: web/0061/amelandermusea.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Cultuurhistorisch museum Sorgdrager
|
||||
raw_value: Cultuurhistorisch museum Sorgdrager – Amelander Musea
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/
|
||||
retrieved_on: '2025-11-29T14:32:13.883494+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0061/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.193511+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@amelandermusea.nl
|
||||
raw_value: info@amelandermusea.nl
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/
|
||||
retrieved_on: '2025-11-29T14:32:13.883494+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[2]
|
||||
html_file: web/0061/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.194058+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31519542737'
|
||||
raw_value: '+31519542737'
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/
|
||||
retrieved_on: '2025-11-29T14:32:13.883494+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[1]
|
||||
html_file: web/0061/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.194146+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Cultuurhistorisch museum Sorgdrager
|
||||
raw_value: Cultuurhistorisch museum Sorgdrager
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/
|
||||
retrieved_on: '2025-11-29T14:32:13.883494+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0061/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/cultuurhistorisch-museum-sorgdrager/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:26.020153+00:00'
|
||||
|
|
|
|||
|
|
@ -730,3 +730,157 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 1
|
||||
enrichment_timestamp: '2025-11-30T12:47:13.933734+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-HAR-M-H
|
||||
ghcid_original: NL-FR-HAR-M-H
|
||||
ghcid_uuid: f8f3fa59-5712-5bf2-b16e-6da0a26bfaa0
|
||||
ghcid_uuid_sha256: 81ab8fcd-cc4b-8719-8154-b3e8603c69a8
|
||||
ghcid_numeric: 9343719965968795417
|
||||
record_id: 019ad9ec-7c9f-7706-8f5f-9753c7a4f8b9
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-HAR-M-H
|
||||
ghcid_numeric: 9343719965968795417
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2754817
|
||||
geonames_name: Harlingen
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.174476299999995
|
||||
longitude: 5.419163300000001
|
||||
source: google_maps
|
||||
distance_km: 0.3651718242254536
|
||||
geonames_id: 2754817
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-HAR-M-H
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f8f3fa59-5712-5bf2-b16e-6da0a26bfaa0
|
||||
identifier_url: urn:uuid:f8f3fa59-5712-5bf2-b16e-6da0a26bfaa0
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 81ab8fcd-cc4b-8719-8154-b3e8603c69a8
|
||||
identifier_url: urn:uuid:81ab8fcd-cc4b-8719-8154-b3e8603c69a8
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9343719965968795417'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7706-8f5f-9753c7a4f8b9
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7706-8f5f-9753c7a4f8b9
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:11.365642+00:00'
|
||||
source_archive: web/0062/hannemahuis.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Gemeentemuseum Het Hannemahuis
|
||||
raw_value: Gemeentemuseum Het Hannemahuis | Gemeentemuseum het Hannemahuis
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.364665+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: search icon
|
||||
raw_value: search icon
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/nav/div[1]/a[2]/svg/title
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.364676+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: home icon
|
||||
raw_value: home icon
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/nav/div[2]/div/a[1]/svg/title
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.364681+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: 'Gezicht van de Gebeurtenis op ''t ys voor de Haven van Harlingen.
|
||||
Het Hannemahuis aan de Voorstraat in Harlingen | Foto: Joachim de Ruijter. Centrum
|
||||
voor Harlin…'
|
||||
raw_value: 'Gezicht van de Gebeurtenis op ''t ys voor de Haven van Harlingen.
|
||||
Het Hannemahuis aan de Voorstraat in Harlingen | Foto: Joachim de Ruijter. Centrum
|
||||
voor Harlin…'
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:11.364763+00:00'
|
||||
- claim_type: email
|
||||
claim_value: museum@harlingen.nl
|
||||
raw_value: museum@harlingen.nl
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/footer/div/div/div[2]/div/p/span[3]/span[3]/a
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.364975+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/#!/pages/Hannemahuis/125899878540
|
||||
raw_value: https://www.facebook.com/#!/pages/Hannemahuis/125899878540
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[1]/a[1]
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.365293+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/hannemahuis
|
||||
raw_value: https://twitter.com/hannemahuis
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[1]/a[2]
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.365313+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/hannemahuis/
|
||||
raw_value: https://www.instagram.com/hannemahuis/
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/footer/div/div/div[3]/div[1]/a[3]
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.365323+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Het Hannemahuis
|
||||
raw_value: Het Hannemahuis
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/div[1]/div/header/a/h1
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.365435+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Het Hannemahuis
|
||||
raw_value: Het Hannemahuis
|
||||
source_url: https://hannemahuis.nl/
|
||||
retrieved_on: '2025-11-29T14:32:16.665990+00:00'
|
||||
xpath: /html/body/div[1]/div/header/a/h1
|
||||
html_file: web/0062/hannemahuis.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:26.091053+00:00'
|
||||
|
|
|
|||
|
|
@ -379,3 +379,128 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 14
|
||||
enrichment_timestamp: '2025-11-30T12:47:38.646595+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-KOR-M-K-kazemattenmuseum
|
||||
ghcid_original: NL-FR-KOR-M-K-kazemattenmuseum
|
||||
ghcid_uuid: 00d61c1c-5739-501e-80b6-85d3299f1a62
|
||||
ghcid_uuid_sha256: 043971cc-25de-8fc4-988f-e48eca62d27b
|
||||
ghcid_numeric: 304399571446808516
|
||||
record_id: 019ad9ec-7c9f-7955-adf8-77cd13bfcdd5
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-KOR-M-K-kazemattenmuseum
|
||||
ghcid_numeric: 304399571446808516
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025) - name suffix
|
||||
added to resolve collision
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2752422
|
||||
geonames_name: Kornwerderzand
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.0734552
|
||||
longitude: 5.3397853
|
||||
source: google_maps
|
||||
distance_km: 0.5456157451913642
|
||||
geonames_id: 2752422
|
||||
collision_resolved: true
|
||||
base_ghcid_before_collision: NL-FR-KOR-M-K
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-KOR-M-K-kazemattenmuseum
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 00d61c1c-5739-501e-80b6-85d3299f1a62
|
||||
identifier_url: urn:uuid:00d61c1c-5739-501e-80b6-85d3299f1a62
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 043971cc-25de-8fc4-988f-e48eca62d27b
|
||||
identifier_url: urn:uuid:043971cc-25de-8fc4-988f-e48eca62d27b
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '304399571446808516'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7955-adf8-77cd13bfcdd5
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7955-adf8-77cd13bfcdd5
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:11.802146+00:00'
|
||||
source_archive: web/0063/kazemattenmuseum.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Kazemattenmuseum op de Afsluitdijk
|
||||
raw_value: Kazemattenmuseum op de Afsluitdijk - Kazemattenmuseum
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:11.801606+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Enkele kilometers uit de Friese kust liggen de beroemde kazematten
|
||||
van Kornwerderzand op de Afsluitdijk.
|
||||
raw_value: Enkele kilometers uit de Friese kust liggen de beroemde kazematten
|
||||
van Kornwerderzand op de Afsluitdijk.
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/head/meta[7]
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_description
|
||||
extraction_timestamp: '2025-12-01T10:44:11.801749+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Kazemattenmuseum
|
||||
raw_value: Kazemattenmuseum
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:11.801812+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@kazemattenmuseum.nl
|
||||
raw_value: info@kazemattenmuseum.nl
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/body/div[3]/div/footer/div[1]/div/div[1]/div/div/p[4]/a
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.801933+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Kazemattenmuseum/
|
||||
raw_value: https://www.facebook.com/Kazemattenmuseum/
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/body/div[3]/div/footer/div[1]/div/div[2]/div/div/ul/li[5]/a
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.802039+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/kazemattenmuseum/
|
||||
raw_value: https://www.instagram.com/kazemattenmuseum/
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/body/div[3]/div/footer/div[1]/div/div[2]/div/div/ul/li[6]/a
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:11.802045+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Kazemattenmuseum
|
||||
raw_value: Kazemattenmuseum
|
||||
source_url: https://www.kazemattenmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:34:16.223700+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0063/kazemattenmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:26.134796+00:00'
|
||||
|
|
|
|||
|
|
@ -642,3 +642,145 @@ web_enrichment:
|
|||
warc_size_bytes: 1793896
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:33:17.258261+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-FRA-M-K
|
||||
ghcid_original: NL-FR-FRA-M-K
|
||||
ghcid_uuid: 87da1b1b-5d2d-562e-af77-139e1ebab9f5
|
||||
ghcid_uuid_sha256: 936da6b0-843b-8eff-8267-0aaab92e61bc
|
||||
ghcid_numeric: 10623330373099802367
|
||||
record_id: 019ad9ec-7c9f-7870-a270-92d893cfe31c
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-FRA-M-K
|
||||
ghcid_numeric: 10623330373099802367
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755845
|
||||
geonames_name: Franeker
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.1867751
|
||||
longitude: 5.5394403
|
||||
source: google_maps
|
||||
distance_km: 0.24652283104424483
|
||||
geonames_id: 2755845
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-FRA-M-K
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 87da1b1b-5d2d-562e-af77-139e1ebab9f5
|
||||
identifier_url: urn:uuid:87da1b1b-5d2d-562e-af77-139e1ebab9f5
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 936da6b0-843b-8eff-8267-0aaab92e61bc
|
||||
identifier_url: urn:uuid:936da6b0-843b-8eff-8267-0aaab92e61bc
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '10623330373099802367'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7870-a270-92d893cfe31c
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7870-a270-92d893cfe31c
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:12.236461+00:00'
|
||||
source_archive: web/0064/keatsmuseum.frl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum
|
||||
raw_value: Museum - Keatsmuseum
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:12.235481+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Kaatsen is een van de oudste balsporten en een echte Friese sport.
|
||||
Je leert er alles over in het oudste sportmuseum van Nederland.
|
||||
raw_value: Kaatsen is een van de oudste balsporten en een echte Friese sport.
|
||||
Je leert er alles over in het oudste sportmuseum van Nederland.
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/head/meta[14]
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:12.235579+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Keatsmuseum - Hjir rekket de bal it hert
|
||||
raw_value: Keatsmuseum - Hjir rekket de bal it hert
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/head/meta[6]
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:12.235735+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Keatsmuseum
|
||||
raw_value: Keatsmuseum
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/head/meta[20]
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:12.235738+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@keatsmuseum.frl
|
||||
raw_value: info@keatsmuseum.frl
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/body/div[1]/div/div[11]/div/div[2]/section/div/a
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.235881+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/keatsmuseum/
|
||||
raw_value: https://www.instagram.com/keatsmuseum/
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/body/div[1]/div/div[11]/div/div[3]/section[2]/ul/li[1]/a
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.236321+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Kaatsmuseum
|
||||
raw_value: https://www.facebook.com/Kaatsmuseum
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/body/div[1]/div/div[11]/div/div[3]/section[2]/ul/li[2]/a
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.236330+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/@keatsmuseumfraneker4119
|
||||
raw_value: https://www.youtube.com/@keatsmuseumfraneker4119
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/body/div[1]/div/div[11]/div/div[3]/section[2]/ul/li[3]/a
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.236336+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Keatsmuseum
|
||||
raw_value: Keatsmuseum - Hjir rekket de bal it hert
|
||||
source_url: https://www.keatsmuseum.frl/
|
||||
retrieved_on: '2025-11-29T14:33:16.984048+00:00'
|
||||
xpath: /html/head/meta[6]
|
||||
html_file: web/0064/keatsmuseum.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:26.191504+00:00'
|
||||
|
|
|
|||
|
|
@ -624,3 +624,94 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 2
|
||||
enrichment_timestamp: '2025-11-30T12:47:13.966446+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-BUR-M-AM
|
||||
ghcid_original: NL-FR-BUR-M-AM
|
||||
ghcid_uuid: a3924f04-1cb2-52f1-bcac-75f994ce3b6c
|
||||
ghcid_uuid_sha256: af4a5c7a-7b01-8cad-97c9-eb851c355075
|
||||
ghcid_numeric: 12631009786033462445
|
||||
record_id: 019ad9ec-7c9f-77ad-be15-290f6c2201d9
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-BUR-M-AM
|
||||
ghcid_numeric: 12631009786033462445
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2758096
|
||||
geonames_name: Buren
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.4475019
|
||||
longitude: 5.7966397
|
||||
source: google_maps
|
||||
distance_km: 0.2711675635353194
|
||||
geonames_id: 2758096
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-BUR-M-AM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: a3924f04-1cb2-52f1-bcac-75f994ce3b6c
|
||||
identifier_url: urn:uuid:a3924f04-1cb2-52f1-bcac-75f994ce3b6c
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: af4a5c7a-7b01-8cad-97c9-eb851c355075
|
||||
identifier_url: urn:uuid:af4a5c7a-7b01-8cad-97c9-eb851c355075
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12631009786033462445'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-77ad-be15-290f6c2201d9
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-77ad-be15-290f6c2201d9
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:12.357208+00:00'
|
||||
source_archive: web/0065/amelandermusea.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Amelander Musea
|
||||
raw_value: Amelander Musea – De overkoepelende organisatie voor musea, molens
|
||||
en de vuurtoren op Ameland.
|
||||
source_url: http://www.amelandermusea.nl
|
||||
retrieved_on: '2025-11-29T14:32:34.217044+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0065/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:12.356271+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@amelandermusea.nl
|
||||
raw_value: info@amelandermusea.nl
|
||||
source_url: http://www.amelandermusea.nl
|
||||
retrieved_on: '2025-11-29T14:32:34.217044+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[2]
|
||||
html_file: web/0065/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.356785+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31519542737'
|
||||
raw_value: '+31519542737'
|
||||
source_url: http://www.amelandermusea.nl
|
||||
retrieved_on: '2025-11-29T14:32:34.217044+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[1]
|
||||
html_file: web/0065/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.356869+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Amelander Musea
|
||||
raw_value: Amelander Musea
|
||||
source_url: http://www.amelandermusea.nl
|
||||
retrieved_on: '2025-11-29T14:32:34.217044+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0065/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:26.260328+00:00'
|
||||
|
|
|
|||
|
|
@ -610,3 +610,93 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 2
|
||||
enrichment_timestamp: '2025-11-30T12:47:14.035362+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-HOL-M-MCAF
|
||||
ghcid_original: NL-FR-HOL-M-MCAF
|
||||
ghcid_uuid: 55d785a1-3bf6-5310-b5fe-b1f18e63021c
|
||||
ghcid_uuid_sha256: 4eaeb4e3-768c-8831-8c55-e95cd75711c9
|
||||
ghcid_numeric: 5669667869945546801
|
||||
record_id: 019ad9ec-7c9f-7693-9e4e-d55f6f1a0e63
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-HOL-M-MCAF
|
||||
ghcid_numeric: 5669667869945546801
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753887
|
||||
geonames_name: Hollum
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.443092299999996
|
||||
longitude: 5.636875
|
||||
source: google_maps
|
||||
distance_km: 0.4300974895960726
|
||||
geonames_id: 2753887
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-HOL-M-MCAF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 55d785a1-3bf6-5310-b5fe-b1f18e63021c
|
||||
identifier_url: urn:uuid:55d785a1-3bf6-5310-b5fe-b1f18e63021c
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 4eaeb4e3-768c-8831-8c55-e95cd75711c9
|
||||
identifier_url: urn:uuid:4eaeb4e3-768c-8831-8c55-e95cd75711c9
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '5669667869945546801'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7c9f-7693-9e4e-d55f6f1a0e63
|
||||
identifier_url: urn:uuid:019ad9ec-7c9f-7693-9e4e-d55f6f1a0e63
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:12.490451+00:00'
|
||||
source_archive: web/0066/amelandermusea.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Maritiem Centrum Abraham Fock
|
||||
raw_value: Maritiem Centrum Abraham Fock – Amelander Musea
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/
|
||||
retrieved_on: '2025-11-29T14:32:34.859564+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0066/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:12.489531+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@amelandermusea.nl
|
||||
raw_value: info@amelandermusea.nl
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/
|
||||
retrieved_on: '2025-11-29T14:32:34.859564+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[2]
|
||||
html_file: web/0066/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.490037+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31519542737'
|
||||
raw_value: '+31519542737'
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/
|
||||
retrieved_on: '2025-11-29T14:32:34.859564+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[1]
|
||||
html_file: web/0066/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.490120+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Maritiem Centrum Abraham Fock
|
||||
raw_value: Maritiem Centrum Abraham Fock
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/
|
||||
retrieved_on: '2025-11-29T14:32:34.859564+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0066/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/maritiem-centrum-abraham-fock/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:26.339486+00:00'
|
||||
|
|
|
|||
|
|
@ -379,3 +379,155 @@ web_enrichment:
|
|||
warc_size_bytes: 8162
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:35.281808+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-MOD-U-SMNF
|
||||
ghcid_original: NL-FR-MOD-U-SMNF
|
||||
ghcid_uuid: 0c9cf058-d8fe-5836-97a8-918d2f8f5837
|
||||
ghcid_uuid_sha256: e8b565b8-67d6-834c-9cfe-95e41f30c37f
|
||||
ghcid_numeric: 16768420630274437964
|
||||
record_id: 019ad9ec-7ca0-70e3-a62f-12afdd799ffc
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-MOD-U-SMNF
|
||||
ghcid_numeric: 16768420630274437964
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750779
|
||||
geonames_name: Moddergat
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.404904099999996
|
||||
longitude: 6.0759372
|
||||
source: google_maps
|
||||
distance_km: 0.7984230590258348
|
||||
geonames_id: 2750779
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-MOD-U-SMNF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 0c9cf058-d8fe-5836-97a8-918d2f8f5837
|
||||
identifier_url: urn:uuid:0c9cf058-d8fe-5836-97a8-918d2f8f5837
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: e8b565b8-67d6-834c-9cfe-95e41f30c37f
|
||||
identifier_url: urn:uuid:e8b565b8-67d6-834c-9cfe-95e41f30c37f
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '16768420630274437964'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-70e3-a62f-12afdd799ffc
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-70e3-a62f-12afdd799ffc
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547505+00:00'
|
||||
source_archive: web/0067/museumdokkum.nl
|
||||
claims_count: 9
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Stichting Musea Noardeast Fryslân
|
||||
raw_value: Stichting Musea Noardeast Fryslân | Museum Dokkum
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547123+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Museum Dokkum, Museum 't Fiskerhúske e.d. zijn ondergebracht in Stichting
|
||||
Musea Noardeast-Fryslân. Één aanspreekpunt voor beide musea.
|
||||
raw_value: Museum Dokkum, Museum 't Fiskerhúske e.d. zijn ondergebracht in Stichting
|
||||
Musea Noardeast-Fryslân. Één aanspreekpunt voor beide musea.
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547180+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumdokkum.nl
|
||||
raw_value: info@museumdokkum.nl
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[1]/a[2]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547309+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0519-293134
|
||||
raw_value: '0519-293134 '
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[1]/a[1]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547352+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Museum-Dokkum-430260790364362/
|
||||
raw_value: https://www.facebook.com/Museum-Dokkum-430260790364362/
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[1]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547400+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/museumdokkum/
|
||||
raw_value: https://www.linkedin.com/company/museumdokkum/
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[2]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547405+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumdokkum/?hl=nl
|
||||
raw_value: https://www.instagram.com/museumdokkum/?hl=nl
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[3]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547409+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumdokkum/
|
||||
raw_value: https://www.instagram.com/museumdokkum/
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[3]/div/div/div[2]/a[3]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547437+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Museumdokkum
|
||||
raw_value: https://www.facebook.com/Museumdokkum
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/body/section[3]/div/div/div[2]/a[4]
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.547441+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Stichting Musea Noardeast Fryslân
|
||||
raw_value: Stichting Musea Noardeast Fryslân
|
||||
source_url: https://www.museumdokkum.nl/stichting-musea-noardeast-fryslan/
|
||||
retrieved_on: '2025-11-29T14:32:35.267452+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0067/museumdokkum.nl/mirror/www.museumdokkum.nl/stichting-musea-noardeast-fryslan/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:26.443779+00:00'
|
||||
|
|
|
|||
|
|
@ -442,3 +442,143 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 13
|
||||
enrichment_timestamp: '2025-11-30T12:47:37.511025+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-MOD-O-MF
|
||||
ghcid_original: NL-FR-MOD-O-MF
|
||||
ghcid_uuid: 81f944dc-5824-5f63-80fb-f2b1691f6656
|
||||
ghcid_uuid_sha256: 82f43ef7-8574-8ede-9d9d-472dbc37d2dc
|
||||
ghcid_numeric: 9436236352064876254
|
||||
record_id: 019ad9ec-7ca0-7aee-8dd9-8d3cbcfbee0a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-MOD-O-MF
|
||||
ghcid_numeric: 9436236352064876254
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750779
|
||||
geonames_name: Moddergat
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.404904099999996
|
||||
longitude: 6.0759372
|
||||
source: google_maps
|
||||
distance_km: 0.7984230590258348
|
||||
geonames_id: 2750779
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-MOD-O-MF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 81f944dc-5824-5f63-80fb-f2b1691f6656
|
||||
identifier_url: urn:uuid:81f944dc-5824-5f63-80fb-f2b1691f6656
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 82f43ef7-8574-8ede-9d9d-472dbc37d2dc
|
||||
identifier_url: urn:uuid:82f43ef7-8574-8ede-9d9d-472dbc37d2dc
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9436236352064876254'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7aee-8dd9-8d3cbcfbee0a
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7aee-8dd9-8d3cbcfbee0a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923825+00:00'
|
||||
source_archive: web/0068/museummoddergat.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum 't Fiskershúske
|
||||
raw_value: Museum 't Fiskershúske
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923066+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museummoddergat.nl
|
||||
raw_value: info@museummoddergat.nl
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[1]/a[2]
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923457+00:00'
|
||||
- claim_type: email
|
||||
claim_value: dhgroeneweg@museummoddergat.nl
|
||||
raw_value: dhgroeneweg@museummoddergat.nl
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[1]/div/div[2]/p[3]/a
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923470+00:00'
|
||||
- claim_type: email
|
||||
claim_value: jjbosma@museummoddergat.nl
|
||||
raw_value: jjbosma@museummoddergat.nl
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[2]/div/div[2]/p[3]/a
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923474+00:00'
|
||||
- claim_type: email
|
||||
claim_value: administratie@museummoddergat.nl
|
||||
raw_value: administratie@museummoddergat.nl
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[4]/div/div[2]/p[3]/a
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923481+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0519-589454
|
||||
raw_value: '0519-589454 '
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[1]/a[1]
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923567+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/museummoddergat
|
||||
raw_value: https://www.facebook.com/museummoddergat
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[1]
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923659+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/wadlopenmuseummoddergat/
|
||||
raw_value: https://www.instagram.com/wadlopenmuseummoddergat/
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[2]
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:12.923664+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum 't Fiskershúske
|
||||
raw_value: Museum 't Fiskershúske
|
||||
source_url: https://www.museummoddergat.nl/
|
||||
retrieved_on: '2025-11-29T14:32:47.783886+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0068/museummoddergat.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:26.815812+00:00'
|
||||
|
|
|
|||
|
|
@ -682,3 +682,127 @@ web_enrichment:
|
|||
warc_size_bytes: 1554086
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:34:38.161352+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-LEE-O-MF
|
||||
ghcid_original: NL-FR-LEE-O-MF
|
||||
ghcid_uuid: e255deb1-95b8-5085-bb54-21284cc1c676
|
||||
ghcid_uuid_sha256: a60e303e-b322-8876-aeaf-8bbb5a8dca4b
|
||||
ghcid_numeric: 11965554305821472886
|
||||
record_id: 019ad9ec-7ca0-728b-be52-2712284c7df7
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-LEE-O-MF
|
||||
ghcid_numeric: 11965554305821472886
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751792
|
||||
geonames_name: Leeuwarden
|
||||
feature_code: PPLA
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.2004272
|
||||
longitude: 5.799964699999999
|
||||
source: google_maps
|
||||
distance_km: 1.1131715117617174
|
||||
geonames_id: 2751792
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-LEE-O-MF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: e255deb1-95b8-5085-bb54-21284cc1c676
|
||||
identifier_url: urn:uuid:e255deb1-95b8-5085-bb54-21284cc1c676
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a60e303e-b322-8876-aeaf-8bbb5a8dca4b
|
||||
identifier_url: urn:uuid:a60e303e-b322-8876-aeaf-8bbb5a8dca4b
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11965554305821472886'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-728b-be52-2712284c7df7
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-728b-be52-2712284c7df7
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:13.342313+00:00'
|
||||
source_archive: web/0069/museumfederatiefryslan.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Museumfederatie Fryslân
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:13.341754+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden
|
||||
van het erfgoed in Friesland op een zo hoog mogelijk niveau. Samenwerken op
|
||||
provincie- en erfgoed breed niveau staat hierbij centraal.
|
||||
raw_value: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden
|
||||
van het erfgoed in Friesland op een zo hoog mogelijk niveau. Samenwerken op
|
||||
provincie- en erfgoed breed niveau staat hierbij centraal.
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:13.341824+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museumfederatie Fryslân
|
||||
raw_value: Museumfederatie Fryslân
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:13.341926+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumfederatiefryslan.nl
|
||||
raw_value: info@museumfederatiefryslan.nl
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/body/div[8]/div/div[4]/span[4]/a
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.342026+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 058 213 91 85
|
||||
raw_value: 058 213 91 85
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/body/div[8]/div/div[4]/span[3]/a
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.342063+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Wat Museumfederatie Fryslân doet
|
||||
raw_value: Wat Museumfederatie Fryslân doet
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/body/div[4]/div/h1
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:13.342260+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museumfederatie Fryslân
|
||||
raw_value: Museumfederatie Fryslân
|
||||
source_url: https://www.museumfederatiefryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:34:37.779528+00:00'
|
||||
xpath: /html/head/meta[11]
|
||||
html_file: web/0069/museumfederatiefryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:27.069610+00:00'
|
||||
|
|
|
|||
|
|
@ -416,3 +416,145 @@ web_enrichment:
|
|||
warc_size_bytes: 24263
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:32:53.917356+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-WOL-M-MK
|
||||
ghcid_original: NL-FR-WOL-M-MK
|
||||
ghcid_uuid: f3da5407-e7c4-5f75-b1a0-91bfb930107b
|
||||
ghcid_uuid_sha256: 21477ef5-8427-85ec-8064-22897ca14d2c
|
||||
ghcid_numeric: 2398024919547332076
|
||||
record_id: 019ad9ec-7ca0-77b4-b133-0ceb8474212a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-WOL-M-MK
|
||||
ghcid_numeric: 2398024919547332076
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2744194
|
||||
geonames_name: Wolvega
|
||||
feature_code: PPLA2
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.8743632
|
||||
longitude: 5.9913371
|
||||
source: google_maps
|
||||
distance_km: 0.6302449473948205
|
||||
geonames_id: 2744194
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-WOL-M-MK
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: f3da5407-e7c4-5f75-b1a0-91bfb930107b
|
||||
identifier_url: urn:uuid:f3da5407-e7c4-5f75-b1a0-91bfb930107b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 21477ef5-8427-85ec-8064-22897ca14d2c
|
||||
identifier_url: urn:uuid:21477ef5-8427-85ec-8064-22897ca14d2c
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2398024919547332076'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-77b4-b133-0ceb8474212a
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-77b4-b133-0ceb8474212a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420511+00:00'
|
||||
source_archive: web/0070/kiekhuus.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Terug in de tijd
|
||||
raw_value: Terug in de tijd - Museum 't Kiekhuus
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:13.419873+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Museum ’t Kiekhuus is gevestigd in de voormalige bakkerij de Korenschoof.
|
||||
Ga terug in de tijd met de bewoners Roelof en Sjoukje.
|
||||
raw_value: Museum ’t Kiekhuus is gevestigd in de voormalige bakkerij de Korenschoof.
|
||||
Ga terug in de tijd met de bewoners Roelof en Sjoukje.
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:13.419962+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum 't Kiekhuus
|
||||
raw_value: Museum 't Kiekhuus
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420097+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/sharer.php?t=Terug in de tijd&u=https://www.kiekhuus.nl/
|
||||
raw_value: https://www.facebook.com/sharer.php?t=Terug in de tijd&u=https://www.kiekhuus.nl/
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/body/div[2]/div[2]/div/section/div/div/div[1]/div/div/div/a[1]
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420372+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/intent/tweet?text=Terug in de tijd&url=https://www.kiekhuus.nl/&via=
|
||||
raw_value: https://twitter.com/intent/tweet?text=Terug in de tijd&url=https://www.kiekhuus.nl/&via=
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/body/div[2]/div[2]/div/section/div/div/div[1]/div/div/div/a[2]
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420378+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/kiekhuus/
|
||||
raw_value: https://www.facebook.com/kiekhuus/
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/body/div[2]/div[2]/div/section/div/div/div[2]/div/aside[3]/div/div[2]/div[1]/div/a
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420388+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/kiekhuus
|
||||
raw_value: https://twitter.com/kiekhuus
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/body/div[2]/div[2]/div/section/div/div/div[2]/div/aside[3]/div/div[2]/div[2]/div/a
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420393+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/kiekhuus/
|
||||
raw_value: https://www.instagram.com/kiekhuus/
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/body/div[2]/div[2]/div/section/div/div/div[2]/div/aside[3]/div/div[2]/div[3]/div/a
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.420399+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum 't Kiekhuus
|
||||
raw_value: Museum 't Kiekhuus
|
||||
source_url: http://www.kiekhuus.nl
|
||||
retrieved_on: '2025-11-29T14:32:53.893434+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0070/kiekhuus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:27.242891+00:00'
|
||||
|
|
|
|||
|
|
@ -580,3 +580,183 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 13
|
||||
enrichment_timestamp: '2025-11-30T12:47:37.577285+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-DOK-M-MD
|
||||
ghcid_original: NL-FR-DOK-M-MD
|
||||
ghcid_uuid: 1395e374-547b-53ff-a465-382d926e5de7
|
||||
ghcid_uuid_sha256: abfba535-6cc7-8956-8320-cbbfe2ac5882
|
||||
ghcid_numeric: 12392680448516933974
|
||||
record_id: 019ad9ec-7ca0-7818-b4c9-1912bb90e425
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-DOK-M-MD
|
||||
ghcid_numeric: 12392680448516933974
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756759
|
||||
geonames_name: Dokkum
|
||||
feature_code: PPLA2
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.325342199999994
|
||||
longitude: 6.0003226
|
||||
source: google_maps
|
||||
distance_km: 0.5070109127849906
|
||||
geonames_id: 2756759
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-DOK-M-MD
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 1395e374-547b-53ff-a465-382d926e5de7
|
||||
identifier_url: urn:uuid:1395e374-547b-53ff-a465-382d926e5de7
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: abfba535-6cc7-8956-8320-cbbfe2ac5882
|
||||
identifier_url: urn:uuid:abfba535-6cc7-8956-8320-cbbfe2ac5882
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12392680448516933974'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7818-b4c9-1912bb90e425
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7818-b4c9-1912bb90e425
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:13.798158+00:00'
|
||||
source_archive: web/0071/museumdokkum.nl
|
||||
claims_count: 12
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Dokkum
|
||||
raw_value: Museum Dokkum
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:13.796984+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumdokkum.nl
|
||||
raw_value: info@museumdokkum.nl
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[1]/a[2]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797592+00:00'
|
||||
- claim_type: email
|
||||
claim_value: dhgroeneweg@museumdokkum.nl
|
||||
raw_value: dhgroeneweg@museumdokkum.nl
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[2]/div/div[2]/p[3]/a
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797607+00:00'
|
||||
- claim_type: email
|
||||
claim_value: jbosma@museumdokkum.nl
|
||||
raw_value: jbosma@museumdokkum.nl
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[3]/div/div[2]/p[3]/a
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797612+00:00'
|
||||
- claim_type: email
|
||||
claim_value: mfwestra@museumdokkum.nl
|
||||
raw_value: mfwestra@museumdokkum.nl
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[4]/div/div[2]/p[3]/a
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797616+00:00'
|
||||
- claim_type: email
|
||||
claim_value: toeristeninfo@museumdokkum.nl
|
||||
raw_value: toeristeninfo@museumdokkum.nl
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[12]/div/div[2]/div[6]/div/div[2]/p[3]/a
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797624+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0519-293134
|
||||
raw_value: '0519-293134 '
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[1]/a[1]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797756+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Museum-Dokkum-430260790364362/
|
||||
raw_value: https://www.facebook.com/Museum-Dokkum-430260790364362/
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[1]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797933+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/museumdokkum/
|
||||
raw_value: https://www.linkedin.com/company/museumdokkum/
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[2]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797940+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumdokkum/?hl=nl
|
||||
raw_value: https://www.instagram.com/museumdokkum/?hl=nl
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[1]/div[1]/div/div/div[2]/div/div[2]/a[3]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.797945+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumdokkum/
|
||||
raw_value: https://www.instagram.com/museumdokkum/
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[14]/div/div/div[2]/a[3]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.798009+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/Museumdokkum
|
||||
raw_value: https://www.facebook.com/Museumdokkum
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/body/section[14]/div/div/div[2]/a[4]
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.798013+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Dokkum
|
||||
raw_value: Museum Dokkum
|
||||
source_url: https://www.museumdokkum.nl/
|
||||
retrieved_on: '2025-11-29T14:33:07.975815+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0071/museumdokkum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:27.582293+00:00'
|
||||
|
|
|
|||
|
|
@ -746,3 +746,123 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 8
|
||||
enrichment_timestamp: '2025-11-30T12:47:27.017500+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-DRA-M-MD
|
||||
ghcid_original: NL-FR-DRA-M-MD
|
||||
ghcid_uuid: 6e13898d-0e93-5f81-814a-53dc5cffea49
|
||||
ghcid_uuid_sha256: 4245bd15-46a0-8982-9a58-873157abc00d
|
||||
ghcid_numeric: 4775430878973159810
|
||||
record_id: 019ad9ec-7ca0-748f-8627-fc86514c2734
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-DRA-M-MD
|
||||
ghcid_numeric: 4775430878973159810
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2756644
|
||||
geonames_name: Drachten
|
||||
feature_code: PPLA2
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.104352
|
||||
longitude: 6.097523000000001
|
||||
source: google_maps
|
||||
distance_km: 0.9216307540625012
|
||||
geonames_id: 2756644
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-DRA-M-MD
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6e13898d-0e93-5f81-814a-53dc5cffea49
|
||||
identifier_url: urn:uuid:6e13898d-0e93-5f81-814a-53dc5cffea49
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 4245bd15-46a0-8982-9a58-873157abc00d
|
||||
identifier_url: urn:uuid:4245bd15-46a0-8982-9a58-873157abc00d
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4775430878973159810'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-748f-8627-fc86514c2734
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-748f-8627-fc86514c2734
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:13.941510+00:00'
|
||||
source_archive: web/0072/museumdrachten.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home | Museum Dr8888
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:13.940327+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Dr8888
|
||||
raw_value: Museum Dr8888
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:13.940641+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/MUSDR8888
|
||||
raw_value: https://www.facebook.com/MUSDR8888
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/body/footer/div[1]/div[3]/div/div/div[1]/div/div/span[1]/a
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.941263+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/museum-drachten-smallingerland
|
||||
raw_value: https://www.linkedin.com/company/museum-drachten-smallingerland
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/body/footer/div[1]/div[3]/div/div/div[1]/div/div/span[2]/a
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.941272+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumdr8888/
|
||||
raw_value: https://www.instagram.com/museumdr8888/
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/body/footer/div[1]/div[3]/div/div/div[1]/div/div/span[3]/a
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:13.941278+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Zien & doen
|
||||
raw_value: Zien & doen
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/body/div[1]/div[4]/div/div/div/div/div[1]/div/h1
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:13.941354+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Dr8888
|
||||
raw_value: Museum Dr8888
|
||||
source_url: http://www.museumdrachten.nl
|
||||
retrieved_on: '2025-11-29T14:33:08.640521+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0072/museumdrachten.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:27.770947+00:00'
|
||||
|
|
|
|||
|
|
@ -778,3 +778,145 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 6
|
||||
enrichment_timestamp: '2025-11-30T12:47:23.021622+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-HEE-M-VH
|
||||
ghcid_original: NL-FR-HEE-M-VH
|
||||
ghcid_uuid: 6c652f31-ccd7-54b4-875b-6d8266c79209
|
||||
ghcid_uuid_sha256: b37d2bda-ab26-8fdd-ae77-fc9524b72603
|
||||
ghcid_numeric: 12933541923052236765
|
||||
record_id: 019ad9ec-7ca0-7977-a300-bc65fad7ea85
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-HEE-M-VH
|
||||
ghcid_numeric: 12933541923052236765
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2754669
|
||||
geonames_name: Heerenveen
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.9600072
|
||||
longitude: 5.9257933
|
||||
source: google_maps
|
||||
distance_km: 0.8090425707280047
|
||||
geonames_id: 2754669
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-HEE-M-VH
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6c652f31-ccd7-54b4-875b-6d8266c79209
|
||||
identifier_url: urn:uuid:6c652f31-ccd7-54b4-875b-6d8266c79209
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b37d2bda-ab26-8fdd-ae77-fc9524b72603
|
||||
identifier_url: urn:uuid:b37d2bda-ab26-8fdd-ae77-fc9524b72603
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12933541923052236765'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7977-a300-bc65fad7ea85
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7977-a300-bc65fad7ea85
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036595+00:00'
|
||||
source_archive: web/0073/museumheerenveen.frl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Het verhaal van Heerenveen
|
||||
raw_value: Het verhaal van Heerenveen | Museum Heerenveen
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036116+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Verken kunst en geschiedenis in Museum Heerenveen. Van erfgoed tot
|
||||
moderne kunst en Domela Nieuwenhuis.
|
||||
raw_value: Verken kunst en geschiedenis in Museum Heerenveen. Van erfgoed tot
|
||||
moderne kunst en Domela Nieuwenhuis.
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/head/meta[2]
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036185+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumheerenveen.frl
|
||||
raw_value: info@museumheerenveen.frl
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/div/div[1]/div[3]/a
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036344+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31513623408'
|
||||
raw_value: '+31513623408'
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/div/div[1]/div[2]/a
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036391+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumheerenveen/
|
||||
raw_value: https://www.instagram.com/museumheerenveen/
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/div/div[1]/div[4]/a[1]
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036463+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/MuseumHeerenveen/?locale=nl_NL
|
||||
raw_value: https://www.facebook.com/MuseumHeerenveen/?locale=nl_NL
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/div/div[1]/div[4]/a[2]
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036468+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/channel/UCSi3ozc4oHkCwjxQ-8x23uQ
|
||||
raw_value: https://www.youtube.com/channel/UCSi3ozc4oHkCwjxQ-8x23uQ
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/div/div[1]/div[4]/a[3]
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036473+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/museumheerenveen/?originalSubdomain=nl
|
||||
raw_value: https://www.linkedin.com/company/museumheerenveen/?originalSubdomain=nl
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/body/footer/div/div[1]/div[2]/div/div[1]/div[4]/a[4]
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.036477+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Het verhaal van Heerenveen
|
||||
raw_value: Het verhaal van Heerenveen
|
||||
source_url: https://www.museumheerenveen.frl/
|
||||
retrieved_on: '2025-11-29T14:33:09.013065+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0073/museumheerenveen.frl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:27.901448+00:00'
|
||||
|
|
|
|||
|
|
@ -482,3 +482,97 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 1
|
||||
enrichment_timestamp: '2025-11-30T12:47:13.683387+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-GRO-M-MHFF
|
||||
ghcid_original: NL-FR-GRO-M-MHFF
|
||||
ghcid_uuid: 3ba0bccd-2409-540d-b0ce-fcd0cf7cb581
|
||||
ghcid_uuid_sha256: 23d8f8e5-d16a-8c2a-a37d-5b1837fdc0b4
|
||||
ghcid_numeric: 2583088052241587242
|
||||
record_id: 019ad9ec-7ca0-7ce6-8715-7a2d9c4342de
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-GRO-M-MHFF
|
||||
ghcid_numeric: 2583088052241587242
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755052
|
||||
geonames_name: Grou
|
||||
feature_code: PPLA2
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.0938586
|
||||
longitude: 5.834162999999999
|
||||
source: google_maps
|
||||
distance_km: 0.3730711644689946
|
||||
geonames_id: 2755052
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-GRO-M-MHFF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 3ba0bccd-2409-540d-b0ce-fcd0cf7cb581
|
||||
identifier_url: urn:uuid:3ba0bccd-2409-540d-b0ce-fcd0cf7cb581
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 23d8f8e5-d16a-8c2a-a37d-5b1837fdc0b4
|
||||
identifier_url: urn:uuid:23d8f8e5-d16a-8c2a-a37d-5b1837fdc0b4
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2583088052241587242'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7ce6-8715-7a2d9c4342de
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7ce6-8715-7a2d9c4342de
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:14.449798+00:00'
|
||||
source_archive: web/0074/museumhertfanfryslan.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum 'Hert fan Fryslân'
|
||||
raw_value: Museum 'Hert fan Fryslân' - Grou Friesland
|
||||
source_url: https://museumhertfanfryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:33:24.888273+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0074/museumhertfanfryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:14.448633+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Het museum 'Hert fan Fryslân' (in het Nederlands Hart van Friesland)
|
||||
ligt midden in het karakteristieke Friese dorp Grou, dat zelf ook in het ‘hart
|
||||
van Friesland’ ligt.
|
||||
raw_value: Het museum 'Hert fan Fryslân' (in het Nederlands Hart van Friesland)
|
||||
ligt midden in het karakteristieke Friese dorp Grou, dat zelf ook in het ‘hart
|
||||
van Friesland’ ligt.
|
||||
source_url: https://museumhertfanfryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:33:24.888273+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0074/museumhertfanfryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:14.448732+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumhertfanfryslan.nl
|
||||
raw_value: info@museumhertfanfryslan.nl
|
||||
source_url: https://museumhertfanfryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:33:24.888273+00:00'
|
||||
xpath: /html/body/div[1]/div/div[7]/div/div[2]/section/div/section[2]/div/p/a
|
||||
html_file: web/0074/museumhertfanfryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.449030+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum 'Hert fan Fryslân'
|
||||
raw_value: Museum 'Hert fan Fryslân'
|
||||
source_url: https://museumhertfanfryslan.nl/
|
||||
retrieved_on: '2025-11-29T14:33:24.888273+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0074/museumhertfanfryslan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.090059+00:00'
|
||||
|
|
|
|||
|
|
@ -241,3 +241,113 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 5
|
||||
enrichment_timestamp: '2025-11-30T12:47:22.901532+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-HIN-M-M
|
||||
ghcid_original: NL-FR-HIN-M-M
|
||||
ghcid_uuid: abbed0e2-21c7-5777-a6f9-51653bab3ab3
|
||||
ghcid_uuid_sha256: 074c2dba-1797-834a-b410-c9b1aba8c61d
|
||||
ghcid_numeric: 525845533778465610
|
||||
record_id: 019ad9ec-7ca0-71fd-b3fb-842a742a59e8
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-HIN-M-M
|
||||
ghcid_numeric: 525845533778465610
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2754059
|
||||
geonames_name: Hindeloopen
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.943374999999996
|
||||
longitude: 5.398438
|
||||
source: google_maps
|
||||
distance_km: 0.2978733964099673
|
||||
geonames_id: 2754059
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-HIN-M-M
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: abbed0e2-21c7-5777-a6f9-51653bab3ab3
|
||||
identifier_url: urn:uuid:abbed0e2-21c7-5777-a6f9-51653bab3ab3
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 074c2dba-1797-834a-b410-c9b1aba8c61d
|
||||
identifier_url: urn:uuid:074c2dba-1797-834a-b410-c9b1aba8c61d
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '525845533778465610'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-71fd-b3fb-842a742a59e8
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-71fd-b3fb-842a742a59e8
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:14.532090+00:00'
|
||||
source_archive: web/0075/museumhindeloopen.nl
|
||||
claims_count: 5
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Over het museum
|
||||
raw_value: Over het museum | Museum Hindeloopen
|
||||
source_url: https://www.museumhindeloopen.nl/
|
||||
retrieved_on: '2025-11-29T14:33:18.633201+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0075/museumhindeloopen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:14.531404+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@museumhindeloopen.nl
|
||||
raw_value: info@museumhindeloopen.nl
|
||||
source_url: https://www.museumhindeloopen.nl/
|
||||
retrieved_on: '2025-11-29T14:33:18.633201+00:00'
|
||||
xpath: /html/body/div[7]/div[2]/div[4]/div/div/div/div[5]/div/a
|
||||
html_file: web/0075/museumhindeloopen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.531778+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/MuseumHindeloopen/
|
||||
raw_value: https://www.facebook.com/MuseumHindeloopen/
|
||||
source_url: https://www.museumhindeloopen.nl/
|
||||
retrieved_on: '2025-11-29T14:33:18.633201+00:00'
|
||||
xpath: /html/body/div[7]/div[3]/div/span/ul/li[1]/a
|
||||
html_file: web/0075/museumhindeloopen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.531967+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/museumhylpen
|
||||
raw_value: https://twitter.com/museumhylpen
|
||||
source_url: https://www.museumhindeloopen.nl/
|
||||
retrieved_on: '2025-11-29T14:33:18.633201+00:00'
|
||||
xpath: /html/body/div[7]/div[3]/div/span/ul/li[2]/a
|
||||
html_file: web/0075/museumhindeloopen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.531973+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumhindeloopen1919
|
||||
raw_value: https://www.instagram.com/museumhindeloopen1919
|
||||
source_url: https://www.museumhindeloopen.nl/
|
||||
retrieved_on: '2025-11-29T14:33:18.633201+00:00'
|
||||
xpath: /html/body/div[7]/div[3]/div/span/ul/li[3]/a
|
||||
html_file: web/0075/museumhindeloopen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.531977+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Over het museum
|
||||
raw_value: Over het museum
|
||||
source_url: https://www.museumhindeloopen.nl/
|
||||
retrieved_on: '2025-11-29T14:33:18.633201+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0075/museumhindeloopen.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.159025+00:00'
|
||||
|
|
|
|||
|
|
@ -651,3 +651,115 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 11
|
||||
enrichment_timestamp: '2025-11-30T12:47:35.265123+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-JOU-M-MJ
|
||||
ghcid_original: NL-FR-JOU-M-MJ
|
||||
ghcid_uuid: 6630375f-6800-5156-a1d9-917c7ecb211f
|
||||
ghcid_uuid_sha256: 2aa1013b-3b6c-8cfc-aa87-85538fe4d604
|
||||
ghcid_numeric: 3071737774755036412
|
||||
record_id: 019ad9ec-7ca0-7a35-b0ce-b4e77ad8881a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-JOU-M-MJ
|
||||
ghcid_numeric: 3071737774755036412
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753197
|
||||
geonames_name: Joure
|
||||
feature_code: PPLA2
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 52.96795
|
||||
longitude: 5.7968361
|
||||
source: google_maps
|
||||
distance_km: 0.7293936709682367
|
||||
geonames_id: 2753197
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-JOU-M-MJ
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 6630375f-6800-5156-a1d9-917c7ecb211f
|
||||
identifier_url: urn:uuid:6630375f-6800-5156-a1d9-917c7ecb211f
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 2aa1013b-3b6c-8cfc-aa87-85538fe4d604
|
||||
identifier_url: urn:uuid:2aa1013b-3b6c-8cfc-aa87-85538fe4d604
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '3071737774755036412'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7a35-b0ce-b4e77ad8881a
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7a35-b0ce-b4e77ad8881a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:14.973765+00:00'
|
||||
source_archive: web/0076/museumjoure.nl
|
||||
claims_count: 5
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Joure, daar maak je het!
|
||||
raw_value: Museum Joure, daar maak je het!
|
||||
source_url: https://www.museumjoure.nl/
|
||||
retrieved_on: '2025-11-29T14:34:34.692715+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0076/museumjoure.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:14.972347+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Een verrassend maakmuseum. Maak mee op de bakermat van Douwe Egberts,
|
||||
in de fotogenieke Metaalfabriek, de authentieke Drukkerij en de Friese Klokkenmakerij.
|
||||
raw_value: Een verrassend maakmuseum. Maak mee op de bakermat van Douwe Egberts,
|
||||
in de fotogenieke Metaalfabriek, de authentieke Drukkerij en de Friese Klokkenmakerij.
|
||||
source_url: https://www.museumjoure.nl/
|
||||
retrieved_on: '2025-11-29T14:34:34.692715+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0076/museumjoure.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:14.972585+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Joure
|
||||
raw_value: Museum Joure
|
||||
source_url: https://www.museumjoure.nl/
|
||||
retrieved_on: '2025-11-29T14:34:34.692715+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0076/museumjoure.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:14.972914+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museum_joure/
|
||||
raw_value: https://www.instagram.com/museum_joure/
|
||||
source_url: https://www.museumjoure.nl/
|
||||
retrieved_on: '2025-11-29T14:34:34.692715+00:00'
|
||||
xpath: /html/body/div/div/div[2]/div/article/div/div/div/div[10]/div[1]/div/div/div/p/span/a[1]
|
||||
html_file: web/0076/museumjoure.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.973494+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/pages/Museum-Joure/206443806046494
|
||||
raw_value: https://www.facebook.com/pages/Museum-Joure/206443806046494
|
||||
source_url: https://www.museumjoure.nl/
|
||||
retrieved_on: '2025-11-29T14:34:34.692715+00:00'
|
||||
xpath: /html/body/div/div/div[2]/div/article/div/div/div/div[10]/div[1]/div/div/div/p/span/a[2]
|
||||
html_file: web/0076/museumjoure.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:14.973507+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Joure
|
||||
raw_value: Museum Joure
|
||||
source_url: https://www.museumjoure.nl/
|
||||
retrieved_on: '2025-11-29T14:34:34.692715+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0076/museumjoure.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:28.230759+00:00'
|
||||
|
|
|
|||
|
|
@ -730,3 +730,73 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 2
|
||||
enrichment_timestamp: '2025-11-30T12:47:14.455422+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-GOR-M-MO
|
||||
ghcid_original: NL-FR-GOR-M-MO
|
||||
ghcid_uuid: e858552f-b2c5-5d45-b324-467f49614d43
|
||||
ghcid_uuid_sha256: 35e5031f-f0be-82e6-9f41-53d67bfd71fd
|
||||
ghcid_numeric: 3883513689394819814
|
||||
record_id: 019ad9ec-7ca0-7876-aebb-d136a29c4aae
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-GOR-M-MO
|
||||
ghcid_numeric: 3883513689394819814
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755429
|
||||
geonames_name: Gorredijk
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.0019454
|
||||
longitude: 6.0633896
|
||||
source: google_maps
|
||||
distance_km: 0.5202776545426603
|
||||
geonames_id: 2755429
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-GOR-M-MO
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: e858552f-b2c5-5d45-b324-467f49614d43
|
||||
identifier_url: urn:uuid:e858552f-b2c5-5d45-b324-467f49614d43
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 35e5031f-f0be-82e6-9f41-53d67bfd71fd
|
||||
identifier_url: urn:uuid:35e5031f-f0be-82e6-9f41-53d67bfd71fd
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '3883513689394819814'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7876-aebb-d136a29c4aae
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7876-aebb-d136a29c4aae
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:15.178727+00:00'
|
||||
source_archive: web/0077/museumopsterlan.nl
|
||||
claims_count: 1
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum Opsterlân
|
||||
raw_value: Museum Opsterlân
|
||||
source_url: https://www.museumopsterlan.nl/
|
||||
retrieved_on: '2025-11-29T14:33:26.527277+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0077/museumopsterlan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:15.178294+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum Opsterlân
|
||||
raw_value: Museum Opsterlân
|
||||
source_url: https://www.museumopsterlan.nl/
|
||||
retrieved_on: '2025-11-29T14:33:26.527277+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0077/museumopsterlan.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.296629+00:00'
|
||||
|
|
|
|||
|
|
@ -514,3 +514,94 @@ web_enrichment:
|
|||
warc_size_bytes: 2455740
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:34:24.108343+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-NES-M-AM
|
||||
ghcid_original: NL-FR-NES-M-AM
|
||||
ghcid_uuid: cfb34de2-ce32-50e1-b9f4-63c0ba005858
|
||||
ghcid_uuid_sha256: 7aaab6cb-1e31-8682-8dad-df2a7259d475
|
||||
ghcid_numeric: 8839078202169194114
|
||||
record_id: 019ad9ec-7ca0-7118-96ef-a899d1d0bb5e
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-NES-M-AM
|
||||
ghcid_numeric: 8839078202169194114
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750417
|
||||
geonames_name: Nes
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.449815199999996
|
||||
longitude: 5.775075
|
||||
source: google_maps
|
||||
distance_km: 0.5454785310353201
|
||||
geonames_id: 2750417
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-NES-M-AM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: cfb34de2-ce32-50e1-b9f4-63c0ba005858
|
||||
identifier_url: urn:uuid:cfb34de2-ce32-50e1-b9f4-63c0ba005858
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7aaab6cb-1e31-8682-8dad-df2a7259d475
|
||||
identifier_url: urn:uuid:7aaab6cb-1e31-8682-8dad-df2a7259d475
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8839078202169194114'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7118-96ef-a899d1d0bb5e
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7118-96ef-a899d1d0bb5e
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:15.623565+00:00'
|
||||
source_archive: web/0078/amelandermusea.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Amelander Musea
|
||||
raw_value: Amelander Musea – De overkoepelende organisatie voor musea, molens
|
||||
en de vuurtoren op Ameland.
|
||||
source_url: https://amelandermusea.nl/
|
||||
retrieved_on: '2025-11-29T14:34:23.626326+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0078/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:15.622758+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@amelandermusea.nl
|
||||
raw_value: info@amelandermusea.nl
|
||||
source_url: https://amelandermusea.nl/
|
||||
retrieved_on: '2025-11-29T14:34:23.626326+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[2]
|
||||
html_file: web/0078/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:15.623096+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31519542737'
|
||||
raw_value: '+31519542737'
|
||||
source_url: https://amelandermusea.nl/
|
||||
retrieved_on: '2025-11-29T14:34:23.626326+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[1]
|
||||
html_file: web/0078/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:15.623170+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Amelander Musea
|
||||
raw_value: Amelander Musea
|
||||
source_url: https://amelandermusea.nl/
|
||||
retrieved_on: '2025-11-29T14:34:23.626326+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0078/amelandermusea.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.358357+00:00'
|
||||
|
|
|
|||
|
|
@ -670,3 +670,93 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 2
|
||||
enrichment_timestamp: '2025-11-30T12:47:14.071796+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-NES-B-N
|
||||
ghcid_original: NL-FR-NES-B-N
|
||||
ghcid_uuid: 51c4c5ce-9969-56dc-b7a4-b18cf37b9e5c
|
||||
ghcid_uuid_sha256: 80bc6802-6a72-8199-a5a0-9ae0af187238
|
||||
ghcid_numeric: 9276403692061483417
|
||||
record_id: 019ad9ec-7ca0-7b8f-b251-55765747a08a
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-NES-B-N
|
||||
ghcid_numeric: 9276403692061483417
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2750417
|
||||
geonames_name: Nes
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.449815199999996
|
||||
longitude: 5.775075
|
||||
source: google_maps
|
||||
distance_km: 0.5454785310353201
|
||||
geonames_id: 2750417
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-NES-B-N
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 51c4c5ce-9969-56dc-b7a4-b18cf37b9e5c
|
||||
identifier_url: urn:uuid:51c4c5ce-9969-56dc-b7a4-b18cf37b9e5c
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 80bc6802-6a72-8199-a5a0-9ae0af187238
|
||||
identifier_url: urn:uuid:80bc6802-6a72-8199-a5a0-9ae0af187238
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '9276403692061483417'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7b8f-b251-55765747a08a
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7b8f-b251-55765747a08a
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:15.758315+00:00'
|
||||
source_archive: web/0079/amelandermusea.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Natuurcentrum
|
||||
raw_value: Natuurcentrum – Amelander Musea
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/
|
||||
retrieved_on: '2025-11-29T14:34:17.805428+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0079/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:15.757396+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@amelandermusea.nl
|
||||
raw_value: info@amelandermusea.nl
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/
|
||||
retrieved_on: '2025-11-29T14:34:17.805428+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[2]
|
||||
html_file: web/0079/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:15.757854+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31519542737'
|
||||
raw_value: '+31519542737'
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/
|
||||
retrieved_on: '2025-11-29T14:34:17.805428+00:00'
|
||||
xpath: /html/body/div[2]/div/div[1]/div/div[1]/a[1]
|
||||
html_file: web/0079/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:15.757955+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Natuurcentrum
|
||||
raw_value: Natuurcentrum
|
||||
source_url: https://amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/
|
||||
retrieved_on: '2025-11-29T14:34:17.805428+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0079/amelandermusea.nl/mirror/amelandermusea.nl/doen-bezoeken/natuurcentrum-2021/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.423006+00:00'
|
||||
|
|
|
|||
|
|
@ -657,3 +657,125 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 14
|
||||
enrichment_timestamp: '2025-11-30T12:47:38.694332+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-OUD-M-O
|
||||
ghcid_original: NL-FR-OUD-M-O
|
||||
ghcid_uuid: e271c669-a766-5036-90cf-9bb5a641c6a4
|
||||
ghcid_uuid_sha256: 6304ed2e-1204-8e6c-9c03-7e0c4351247f
|
||||
ghcid_numeric: 7135088491788254828
|
||||
record_id: 019ad9ec-7ca0-7a7e-8370-a9a0d293dad8
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-OUD-M-O
|
||||
ghcid_numeric: 7135088491788254828
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2749184
|
||||
geonames_name: Oud-Beets
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.069722399999996
|
||||
longitude: 5.9956396
|
||||
source: google_maps
|
||||
distance_km: 0.22734951390344124
|
||||
geonames_id: 2749184
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-OUD-M-O
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: e271c669-a766-5036-90cf-9bb5a641c6a4
|
||||
identifier_url: urn:uuid:e271c669-a766-5036-90cf-9bb5a641c6a4
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 6304ed2e-1204-8e6c-9c03-7e0c4351247f
|
||||
identifier_url: urn:uuid:6304ed2e-1204-8e6c-9c03-7e0c4351247f
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '7135088491788254828'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7a7e-8370-a9a0d293dad8
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7a7e-8370-a9a0d293dad8
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:16.206454+00:00'
|
||||
source_archive: web/0080/damshus.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: It Damshûs
|
||||
raw_value: It Damshûs - It Damshûs
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:16.205676+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Kom kijken bij ons mooie openlucht museum It Damshûs of bij het Sudergemaal
|
||||
in Nij Beets of vaar mee met onze Turfbok of werkboot "De Snikke"
|
||||
raw_value: Kom kijken bij ons mooie openlucht museum It Damshûs of bij het Sudergemaal
|
||||
in Nij Beets of vaar mee met onze Turfbok of werkboot "De Snikke"
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:16.205797+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@damshus.nl
|
||||
raw_value: info@damshus.nl
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/body/div[1]/div/div/footer/div/div[1]/div/div[4]/div/div/div[6]/span[1]/a
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.206125+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31683694095'
|
||||
raw_value: '+31683694095'
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/body/div[1]/div/div/footer/div/div[1]/div/div[4]/div/div/div[3]/span/a
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.206188+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/people/It-Damsh%C3%BBs/100063555191626/
|
||||
raw_value: https://www.facebook.com/people/It-Damsh%C3%BBs/100063555191626/
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/body/div[1]/div/header/div/div[1]/div/div[2]/ul/li/a
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.206249+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Oproep
|
||||
raw_value: Oproep
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div/article/div/div/div/div[2]/div/div/div[1]/div/h1
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:16.206329+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Oproep
|
||||
raw_value: Oproep
|
||||
source_url: https://www.damshus.nl/
|
||||
retrieved_on: '2025-11-29T14:36:55.509152+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div/article/div/div/div/div[2]/div/div/div[1]/div/h1
|
||||
html_file: web/0080/damshus.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:28.495952+00:00'
|
||||
|
|
|
|||
|
|
@ -274,3 +274,93 @@ web_enrichment:
|
|||
warc_size_bytes: 246460
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:34:39.065820+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-LEE-D-ENNBH
|
||||
ghcid_original: NL-FR-LEE-D-ENNBH
|
||||
ghcid_uuid: a015c7e6-8b67-5d9f-adae-55a4b0ee795b
|
||||
ghcid_uuid_sha256: 98018a61-e359-8c6e-a681-05775b47e1fa
|
||||
ghcid_numeric: 10953187921772489838
|
||||
record_id: 019ad9ec-7ca0-7b78-810f-a898f36ba44f
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-LEE-D-ENNBH
|
||||
ghcid_numeric: 10953187921772489838
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751792
|
||||
geonames_name: Leeuwarden
|
||||
feature_code: PPLA
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.2004179
|
||||
longitude: 5.7999259
|
||||
source: google_maps
|
||||
distance_km: 1.1176002310710085
|
||||
geonames_id: 2751792
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-LEE-D-ENNBH
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: a015c7e6-8b67-5d9f-adae-55a4b0ee795b
|
||||
identifier_url: urn:uuid:a015c7e6-8b67-5d9f-adae-55a4b0ee795b
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 98018a61-e359-8c6e-a681-05775b47e1fa
|
||||
identifier_url: urn:uuid:98018a61-e359-8c6e-a681-05775b47e1fa
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '10953187921772489838'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7b78-810f-a898f36ba44f
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7b78-810f-a898f36ba44f
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:16.573885+00:00'
|
||||
source_archive: web/0081/noorderstruun.nl
|
||||
claims_count: 3
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Noorderstruun
|
||||
raw_value: Noorderstruun – Struun door het erfgoed van Noord-Nederland
|
||||
source_url: https://www.noorderstruun.nl/
|
||||
retrieved_on: '2025-11-29T14:34:38.769213+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0081/noorderstruun.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:16.573396+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Struun door het erfgoed van Noord-Nederland
|
||||
raw_value: Struun door het erfgoed van Noord-Nederland
|
||||
source_url: https://www.noorderstruun.nl/
|
||||
retrieved_on: '2025-11-29T14:34:38.769213+00:00'
|
||||
xpath: /html/head/meta[2]
|
||||
html_file: web/0081/noorderstruun.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:16.573476+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Het erfgoed van Noord-Nederland binnen handbereik
|
||||
raw_value: Het erfgoed van Noord-Nederland binnen handbereik
|
||||
source_url: https://www.noorderstruun.nl/
|
||||
retrieved_on: '2025-11-29T14:34:38.769213+00:00'
|
||||
xpath: /html/body/section/div/div/section/h1
|
||||
html_file: web/0081/noorderstruun.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:16.573821+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Het erfgoed van Noord-Nederland binnen handbereik
|
||||
raw_value: Het erfgoed van Noord-Nederland binnen handbereik
|
||||
source_url: https://www.noorderstruun.nl/
|
||||
retrieved_on: '2025-11-29T14:34:38.769213+00:00'
|
||||
xpath: /html/body/section/div/div/section/h1
|
||||
html_file: web/0081/noorderstruun.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:28.545731+00:00'
|
||||
|
|
|
|||
|
|
@ -860,3 +860,135 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 11
|
||||
enrichment_timestamp: '2025-11-30T12:47:35.543286+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-BUR-M-MSB
|
||||
ghcid_original: NL-FR-BUR-M-MSB
|
||||
ghcid_uuid: 3c9dbdb3-edfe-5c49-91ff-83648bdcd41d
|
||||
ghcid_uuid_sha256: 9f131472-27d1-8a02-b671-4076831f5df1
|
||||
ghcid_numeric: 11462527957114919426
|
||||
record_id: 019ad9ec-7ca0-72d7-a4fd-66ce120b8074
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-BUR-M-MSB
|
||||
ghcid_numeric: 11462527957114919426
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2759103
|
||||
geonames_name: Burgum
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.2040156
|
||||
longitude: 6.0003208
|
||||
source: google_maps
|
||||
distance_km: 1.7156427874458289
|
||||
geonames_id: 2759103
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-BUR-M-MSB
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 3c9dbdb3-edfe-5c49-91ff-83648bdcd41d
|
||||
identifier_url: urn:uuid:3c9dbdb3-edfe-5c49-91ff-83648bdcd41d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 9f131472-27d1-8a02-b671-4076831f5df1
|
||||
identifier_url: urn:uuid:9f131472-27d1-8a02-b671-4076831f5df1
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11462527957114919426'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-72d7-a4fd-66ce120b8074
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-72d7-a4fd-66ce120b8074
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:16.964027+00:00'
|
||||
source_archive: web/0082/observeum.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Museum & Sterrenwacht Burgum
|
||||
raw_value: Museum & Sterrenwacht Burgum - Museum & Sterrenwacht Burgum
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963107+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: 'Museum & Sterrenwacht Burgum, Menno van Coehoornweg 9, 9251LV T:
|
||||
0511465544 Unieke beleving onder één dak!'
|
||||
raw_value: 'Museum & Sterrenwacht Burgum, Menno van Coehoornweg 9, 9251LV T: 0511465544
|
||||
Unieke beleving onder één dak!'
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963215+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/watch?v=8hr2QzoJ3T0
|
||||
raw_value: https://www.youtube.com/watch?v=8hr2QzoJ3T0
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/body/div/div[2]/div[2]/div[2]/div/div[2]/div[24]/figure/a
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963804+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: http://www.facebook.com/sharer.php?u=https://www.observeum.nl/&t=Home
|
||||
raw_value: http://www.facebook.com/sharer.php?u=https://www.observeum.nl/&t=Home
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/body/div/div[2]/div[2]/div[2]/div/div[2]/div[41]/div/a[1]
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963824+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://x.com/share?text=Home&url=https%3A%2F%2Fwww.observeum.nl%2F
|
||||
raw_value: https://x.com/share?text=Home&url=https%3A%2F%2Fwww.observeum.nl%2F
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/body/div/div[2]/div[2]/div[2]/div/div[2]/div[41]/div/a[2]
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963828+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: http://www.linkedin.com/shareArticle?mini=true&url=https://www.observeum.nl/&title=Home
|
||||
raw_value: http://www.linkedin.com/shareArticle?mini=true&url=https://www.observeum.nl/&title=Home
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/body/div/div[2]/div[2]/div[2]/div/div[2]/div[41]/div/a[4]
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963834+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Museum en Sterrenwacht Burgum
|
||||
raw_value: Museum en Sterrenwacht Burgum
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/body/div/div[2]/div[2]/div[2]/div/div[2]/div[1]/h1
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:16.963894+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Museum en Sterrenwacht Burgum
|
||||
raw_value: Museum en Sterrenwacht Burgum
|
||||
source_url: https://www.observeum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.804617+00:00'
|
||||
xpath: /html/body/div/div[2]/div[2]/div[2]/div/div[2]/div[1]/h1
|
||||
html_file: web/0082/observeum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 70
|
||||
extraction_timestamp: '2025-12-01T12:35:28.610019+00:00'
|
||||
|
|
|
|||
|
|
@ -328,3 +328,125 @@ web_enrichment:
|
|||
warc_size_bytes: 25801
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:34:39.516641+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-BOL-M-T
|
||||
ghcid_original: NL-FR-BOL-M-T
|
||||
ghcid_uuid: 0d1e29bc-fda8-50da-a68d-f5208ec497d7
|
||||
ghcid_uuid_sha256: 5a43b551-8904-8275-b499-d076a39aa7fe
|
||||
ghcid_numeric: 6504241648648868469
|
||||
record_id: 019ad9ec-7ca0-7d18-ba2f-192d99ee929e
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-BOL-M-T
|
||||
ghcid_numeric: 6504241648648868469
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2758682
|
||||
geonames_name: Bolsward
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.061907899999994
|
||||
longitude: 5.5229203
|
||||
source: google_maps
|
||||
distance_km: 1.0612272742015376
|
||||
geonames_id: 2758682
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-BOL-M-T
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 0d1e29bc-fda8-50da-a68d-f5208ec497d7
|
||||
identifier_url: urn:uuid:0d1e29bc-fda8-50da-a68d-f5208ec497d7
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 5a43b551-8904-8275-b499-d076a39aa7fe
|
||||
identifier_url: urn:uuid:5a43b551-8904-8275-b499-d076a39aa7fe
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6504241648648868469'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7d18-ba2f-192d99ee929e
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7d18-ba2f-192d99ee929e
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051717+00:00'
|
||||
source_archive: web/0083/detiid.nl
|
||||
claims_count: 6
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: De Tiid
|
||||
raw_value: 'De Tiid: Huis van Verhalen in het hart van Bolsward'
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051036+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Een markant historisch monument, dat sinds 2021 het kloppend cultureel
|
||||
hart van Zuidwest Fryslân is.
|
||||
raw_value: Een markant historisch monument, dat sinds 2021 het kloppend cultureel
|
||||
hart van Zuidwest Fryslân is.
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051131+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/detiidbolsward/
|
||||
raw_value: https://www.instagram.com/detiidbolsward/
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div[2]/div/div/div[1]/div[2]/div/div[2]/ul/li[1]/a
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051565+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/chcdetiid/
|
||||
raw_value: https://www.facebook.com/chcdetiid/
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div[2]/div/div/div[1]/div[2]/div/div[2]/ul/li[2]/a
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051574+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://nl.linkedin.com/company/cultuur-historisch-centrum-de-tiid
|
||||
raw_value: https://nl.linkedin.com/company/cultuur-historisch-centrum-de-tiid
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/body/div/footer/div[1]/div[2]/div/div/div[1]/div[2]/div/div[2]/ul/li[3]/a
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051580+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Welkom in De Tiid, Huis van Verhalen
|
||||
raw_value: Welkom in De Tiid, Huis van Verhalen
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/body/div/div[5]/div[2]/div/div/div[2]/div/div[1]/h1
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:17.051626+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: De Tiid
|
||||
raw_value: De Tiid
|
||||
source_url: https://www.detiid.nl/
|
||||
retrieved_on: '2025-11-29T14:34:39.472382+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0083/detiid.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.669683+00:00'
|
||||
|
|
|
|||
|
|
@ -293,3 +293,113 @@ identifiers:
|
|||
identifier_url: https://isil.org/NL-BwdADRKF
|
||||
assigned_date: '2015-10-12'
|
||||
source: Nationaal Archief ISIL Registry 2025-11-06
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-BOL-A-SADRF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: d58118ef-b464-5a5a-8498-1c9ee53337f2
|
||||
identifier_url: urn:uuid:d58118ef-b464-5a5a-8498-1c9ee53337f2
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 20ab4bbb-96ba-8c0a-8971-44bce7674c01
|
||||
identifier_url: urn:uuid:20ab4bbb-96ba-8c0a-8971-44bce7674c01
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '2354058499291016202'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7dd3-8c23-37799fc1cb52
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7dd3-8c23-37799fc1cb52
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-BOL-A-SADRF
|
||||
ghcid_original: NL-FR-BOL-A-SADRF
|
||||
ghcid_uuid: d58118ef-b464-5a5a-8498-1c9ee53337f2
|
||||
ghcid_uuid_sha256: 20ab4bbb-96ba-8c0a-8971-44bce7674c01
|
||||
ghcid_numeric: 2354058499291016202
|
||||
record_id: 019ad9ec-7ca0-7dd3-8c23-37799fc1cb52
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-BOL-A-SADRF
|
||||
ghcid_numeric: 2354058499291016202
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2758682
|
||||
geonames_name: Bolsward
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.063272
|
||||
longitude: 5.5231015999999995
|
||||
source: google_maps
|
||||
distance_km: 0.9937889855266765
|
||||
geonames_id: 2758682
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:17.454038+00:00'
|
||||
source_archive: web/0084/archiefrkfriesland.nl
|
||||
claims_count: 5
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Stichting Archief- en Documentatiecentrum voor R.K. Friesland
|
||||
raw_value: Stichting Archief- en Documentatiecentrum voor R.K. Friesland – "Waard
|
||||
om bewaard te blijven"
|
||||
source_url: https://archiefrkfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:35:46.820422+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0084/archiefrkfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:17.453407+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@archiefrkfriesland.nl
|
||||
raw_value: info@archiefrkfriesland.nl
|
||||
source_url: https://archiefrkfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:35:46.820422+00:00'
|
||||
xpath: /html/body/div[1]/footer/div/div[2]/div[2]/div/address[2]/span/a
|
||||
html_file: web/0084/archiefrkfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.453723+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: http://www.youtube.com/watch?v=E0PfviKS_0o
|
||||
raw_value: http://www.youtube.com/watch?v=E0PfviKS_0o
|
||||
source_url: https://archiefrkfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:35:46.820422+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div[2]/main/article/div/div/div[5]/div[1]/div[2]/div/p/a
|
||||
html_file: web/0084/archiefrkfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.453864+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/watch?v=E0PfviKS_0o
|
||||
raw_value: https://www.youtube.com/watch?v=E0PfviKS_0o
|
||||
source_url: https://archiefrkfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:35:46.820422+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div[2]/main/article/div/div/div[5]/div[2]/div[1]/div/a
|
||||
html_file: web/0084/archiefrkfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.453886+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/groups/archiefrkfriesland/
|
||||
raw_value: https://www.facebook.com/groups/archiefrkfriesland/
|
||||
source_url: https://archiefrkfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:35:46.820422+00:00'
|
||||
xpath: /html/body/div[1]/div/div/div[2]/main/article/div/div/div[5]/div[3]/div[2]/div/p/a
|
||||
html_file: web/0084/archiefrkfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.453895+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Stichting Archief- en Documentatiecentrum voor R.K. Friesland
|
||||
raw_value: Stichting Archief- en Documentatiecentrum voor R.K. Friesland
|
||||
source_url: https://archiefrkfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:35:46.820422+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0084/archiefrkfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.707977+00:00'
|
||||
|
|
|
|||
|
|
@ -510,3 +510,177 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 13
|
||||
enrichment_timestamp: '2025-11-30T12:47:37.370006+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-BUI-B-KHF
|
||||
ghcid_original: NL-FR-BUI-B-KHF
|
||||
ghcid_uuid: 5abec925-9cd1-5a8e-907d-71a1f625dc87
|
||||
ghcid_uuid_sha256: 3e4c5ba8-8f16-8d6c-93cd-d737615bf3ac
|
||||
ghcid_numeric: 4489063708094778732
|
||||
record_id: 019ad9ec-7ca0-705b-89da-d6741aef0cb2
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-BUI-B-KHF
|
||||
ghcid_numeric: 4489063708094778732
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2758131
|
||||
geonames_name: Buitenpost
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.25619
|
||||
longitude: 6.1392473999999995
|
||||
source: google_maps
|
||||
distance_km: 0.7980145253850337
|
||||
geonames_id: 2758131
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-BUI-B-KHF
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 5abec925-9cd1-5a8e-907d-71a1f625dc87
|
||||
identifier_url: urn:uuid:5abec925-9cd1-5a8e-907d-71a1f625dc87
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 3e4c5ba8-8f16-8d6c-93cd-d737615bf3ac
|
||||
identifier_url: urn:uuid:3e4c5ba8-8f16-8d6c-93cd-d737615bf3ac
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '4489063708094778732'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-705b-89da-d6741aef0cb2
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-705b-89da-d6741aef0cb2
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840799+00:00'
|
||||
source_archive: web/0085/dekruidhof.nl
|
||||
claims_count: 11
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home De Kruidhof hortus van Fryslân botanische tuin
|
||||
raw_value: Home De Kruidhof hortus van Fryslân botanische tuin
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:17.839184+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: De Kruidhof is de grootste botanische tuin van Friesland en gevestigd
|
||||
in Buitenpost, in de Nederlandse provincie Friesland.
|
||||
raw_value: De Kruidhof is de grootste botanische tuin van Friesland en gevestigd
|
||||
in Buitenpost, in de Nederlandse provincie Friesland.
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:17.839404+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: 'Ontdek De Kruidhof in Buitenpost: 19 thematuinen, kruiden, workshops
|
||||
en natuurbeleving voor jong en oud. Plan je bezoek en laat je verrassen.'
|
||||
raw_value: 'Ontdek De Kruidhof in Buitenpost: 19 thematuinen, kruiden, workshops
|
||||
en natuurbeleving voor jong en oud. Plan je bezoek en laat je verrassen.'
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/head/meta[20]
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:17.839416+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: De Kruidhof hortus van Fryslân
|
||||
raw_value: De Kruidhof hortus van Fryslân
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:17.839776+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@dekruidhof.nl
|
||||
raw_value: info@dekruidhof.nl
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[1]/div[1]/div[1]/div/div[1]/div[2]/div/a
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840115+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/dekruidhof
|
||||
raw_value: https://www.facebook.com/dekruidhof
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[1]/div[1]/div[1]/div/div[3]/div/div/div[1]/a
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840355+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/dekruidhof
|
||||
raw_value: https://twitter.com/dekruidhof
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[1]/div[1]/div[1]/div/div[3]/div/div/div[2]/a
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840366+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: http://www.youtube.com/user/dekruidhof
|
||||
raw_value: http://www.youtube.com/user/dekruidhof
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[1]/div[1]/div[1]/div/div[3]/div/div/div[3]/a
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840376+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/user/dekruidhof
|
||||
raw_value: https://www.youtube.com/user/dekruidhof
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[2]/div[1]/div/div/div[1]/div/div/div/div[2]/a
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840440+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/dekruidhof/
|
||||
raw_value: https://www.instagram.com/dekruidhof/
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[2]/div[1]/div/div/div[1]/div/div/div/div[3]/a
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840449+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Het seizoen is weer voorbij
|
||||
raw_value: Het seizoen is weer voorbij
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/body/div[1]/div[2]/div/div/section[1]/div/div/div/div[2]/div/h1
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:17.840523+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: De Kruidhof hortus van Fryslân
|
||||
raw_value: De Kruidhof hortus van Fryslân
|
||||
source_url: http://www.dekruidhof.nl
|
||||
retrieved_on: '2025-11-29T14:34:59.587000+00:00'
|
||||
xpath: /html/head/meta[9]
|
||||
html_file: web/0085/dekruidhof.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:28.757278+00:00'
|
||||
|
|
|
|||
|
|
@ -606,3 +606,145 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 4
|
||||
enrichment_timestamp: '2025-11-30T12:47:21.396545+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-JEL-F-DS
|
||||
ghcid_original: NL-FR-JEL-F-DS
|
||||
ghcid_uuid: bb933c6e-ed0e-5654-8608-60d713037ce8
|
||||
ghcid_uuid_sha256: eb6fd9e7-2f9d-8055-b1e7-d36327d10d78
|
||||
ghcid_numeric: 16965017908287447125
|
||||
record_id: 019ad9ec-7ca0-7ddf-9d93-2dfac265ed61
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-JEL-F-DS
|
||||
ghcid_numeric: 16965017908287447125
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2753256
|
||||
geonames_name: Jelsum
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.2332854
|
||||
longitude: 5.7835813
|
||||
source: google_maps
|
||||
distance_km: 0.2067206511520482
|
||||
geonames_id: 2753256
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-JEL-F-DS
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: bb933c6e-ed0e-5654-8608-60d713037ce8
|
||||
identifier_url: urn:uuid:bb933c6e-ed0e-5654-8608-60d713037ce8
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: eb6fd9e7-2f9d-8055-b1e7-d36327d10d78
|
||||
identifier_url: urn:uuid:eb6fd9e7-2f9d-8055-b1e7-d36327d10d78
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '16965017908287447125'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7ddf-9d93-2dfac265ed61
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7ddf-9d93-2dfac265ed61
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:18.289120+00:00'
|
||||
source_archive: web/0086/dekemastate.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Home
|
||||
raw_value: Home - Dekema State
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288285+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Klik om het zoekinvoerveld te openen
|
||||
raw_value: Klik om het zoekinvoerveld te openen
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/body/div[1]/header/div[1]/div/div/nav/div/ul/li[8]/a/svg/title
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288300+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Link naar Instagram
|
||||
raw_value: Link naar Instagram
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/body/div[1]/header/div[1]/div/div/nav/ul/li[2]/a/svg/title
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288306+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Scroll naar bovenzijde
|
||||
raw_value: Scroll naar bovenzijde
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/body/a/svg/title
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288314+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Dekema State, een historische parel in Jelsum (Friesland). Ontdek
|
||||
alles over de bewoonde state, de oude stins en stinzenflora.
|
||||
raw_value: Dekema State, een historische parel in Jelsum (Friesland). Ontdek alles
|
||||
over de bewoonde state, de oude stins en stinzenflora.
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288419+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Dekema State
|
||||
raw_value: Dekema State
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288596+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/dekemastatejelsum
|
||||
raw_value: https://www.facebook.com/dekemastatejelsum
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/body/div[1]/header/div[1]/div/div/nav/ul/li[1]/a
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288904+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/dekemastate/
|
||||
raw_value: https://www.instagram.com/dekemastate/
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/body/div[1]/header/div[1]/div/div/nav/ul/li[2]/a
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.288910+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Dekema State
|
||||
raw_value: Dekema State
|
||||
source_url: https://dekemastate.nl/
|
||||
retrieved_on: '2025-11-29T14:38:06.707912+00:00'
|
||||
xpath: /html/head/meta[10]
|
||||
html_file: web/0086/dekemastate.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:28.816814+00:00'
|
||||
|
|
|
|||
|
|
@ -790,3 +790,83 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 11
|
||||
enrichment_timestamp: '2025-11-30T12:47:34.747444+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-VEE-B-FS
|
||||
ghcid_original: NL-FR-VEE-B-FS
|
||||
ghcid_uuid: c9e99b92-667d-5857-956e-138a8b135d48
|
||||
ghcid_uuid_sha256: 98cb03ad-6ac1-8f97-a619-f8cc2bd32a44
|
||||
ghcid_numeric: 11009897757392617367
|
||||
record_id: 019ad9ec-7ca0-77cc-8f02-f9f48d9b531c
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-VEE-B-FS
|
||||
ghcid_numeric: 11009897757392617367
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2745754
|
||||
geonames_name: Veenklooster
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.264653100000004
|
||||
longitude: 6.1102304
|
||||
source: google_maps
|
||||
distance_km: 0.9044685394983704
|
||||
geonames_id: 2745754
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-VEE-B-FS
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: c9e99b92-667d-5857-956e-138a8b135d48
|
||||
identifier_url: urn:uuid:c9e99b92-667d-5857-956e-138a8b135d48
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 98cb03ad-6ac1-8f97-a619-f8cc2bd32a44
|
||||
identifier_url: urn:uuid:98cb03ad-6ac1-8f97-a619-f8cc2bd32a44
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11009897757392617367'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-77cc-8f02-f9f48d9b531c
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-77cc-8f02-f9f48d9b531c
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:18.673337+00:00'
|
||||
source_archive: web/0087/fogelsangh-state.nl
|
||||
claims_count: 2
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Intro
|
||||
raw_value: Intro - Fogelsangh State
|
||||
source_url: https://www.fogelsangh-state.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.133317+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0087/fogelsangh-state.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.672964+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Fogelsangh State
|
||||
raw_value: Fogelsangh State
|
||||
source_url: https://www.fogelsangh-state.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.133317+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0087/fogelsangh-state.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
extraction_timestamp: '2025-12-01T10:44:18.673098+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Fogelsangh State
|
||||
raw_value: Fogelsangh State
|
||||
source_url: https://www.fogelsangh-state.nl/
|
||||
retrieved_on: '2025-11-29T14:36:01.133317+00:00'
|
||||
xpath: /html/head/meta[8]
|
||||
html_file: web/0087/fogelsangh-state.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: og_site_name
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 100
|
||||
extraction_timestamp: '2025-12-01T12:35:28.891140+00:00'
|
||||
|
|
|
|||
|
|
@ -704,3 +704,135 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 3
|
||||
enrichment_timestamp: '2025-11-30T12:47:19.593602+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-GOU-M-FLML
|
||||
ghcid_original: NL-FR-GOU-M-FLML
|
||||
ghcid_uuid: 9e92dbf2-50d1-5985-a141-3f3c48e60132
|
||||
ghcid_uuid_sha256: 544c57b2-755a-82c7-9718-11a492b58196
|
||||
ghcid_numeric: 6074326421400638151
|
||||
record_id: 019ad9ec-7ca0-7f20-a909-f769e0b9450e
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-GOU-M-FLML
|
||||
ghcid_numeric: 6074326421400638151
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2755399
|
||||
geonames_name: Goutum
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.1795681
|
||||
longitude: 5.789117699999999
|
||||
source: google_maps
|
||||
distance_km: 1.637420829118452
|
||||
geonames_id: 2755399
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-GOU-M-FLML
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 9e92dbf2-50d1-5985-a141-3f3c48e60132
|
||||
identifier_url: urn:uuid:9e92dbf2-50d1-5985-a141-3f3c48e60132
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 544c57b2-755a-82c7-9718-11a492b58196
|
||||
identifier_url: urn:uuid:544c57b2-755a-82c7-9718-11a492b58196
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '6074326421400638151'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7f20-a909-f769e0b9450e
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7f20-a909-f769e0b9450e
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:18.788054+00:00'
|
||||
source_archive: web/0088/landbouwmuseumfriesland.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Fries Landbouw Museum in Leeuwarden
|
||||
raw_value: Fries Landbouw Museum in Leeuwarden
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787437+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Het Fries Landbouw museum in omgeving Leeuwarden met regelmatig nieuwe
|
||||
tentoonstellingen en kinderactiviteiten.
|
||||
raw_value: Het Fries Landbouw museum in omgeving Leeuwarden met regelmatig nieuwe
|
||||
tentoonstellingen en kinderactiviteiten.
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/head/meta[3]
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787508+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@frieslandbouwmuseum.nl
|
||||
raw_value: info@frieslandbouwmuseum.nl
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/body/div/div[4]/div/div[1]/div/div/div/div[4]/div/div/div/div/p[5]/a
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787688+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/LandbouwMuseumFriesland
|
||||
raw_value: https://www.facebook.com/LandbouwMuseumFriesland
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/body/div/div[4]/div/div[1]/div/div/div/div[3]/div/div[2]/div/div[1]/div/div/a
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787911+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/fries_landbouwmuseum/
|
||||
raw_value: https://www.instagram.com/fries_landbouwmuseum/
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/body/div/div[4]/div/div[1]/div/div/div/div[3]/div/div[2]/div/div[2]/div/div/a
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787926+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/in/fries-landbouwmuseum/
|
||||
raw_value: https://www.linkedin.com/in/fries-landbouwmuseum/
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/body/div/div[4]/div/div[1]/div/div/div/div[3]/div/div[2]/div/div[3]/div/div/a
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787934+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Activiteiten
|
||||
raw_value: Activiteiten
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/body/div/div[3]/div/div[2]/div/div[1]/div/div[1]/div/div/h1
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.787984+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Fries Landbouw Museum in Leeuwarden
|
||||
raw_value: Fries Landbouw Museum in Leeuwarden
|
||||
source_url: https://landbouwmuseumfriesland.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.116703+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0088/landbouwmuseumfriesland.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:28.966942+00:00'
|
||||
|
|
|
|||
|
|
@ -385,3 +385,151 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 13
|
||||
enrichment_timestamp: '2025-11-30T12:47:37.381683+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-LEE-M-FM
|
||||
ghcid_original: NL-FR-LEE-M-FM
|
||||
ghcid_uuid: be382d56-2d0f-522a-8041-c904a5a23509
|
||||
ghcid_uuid_sha256: a3f521d9-b238-8603-a24a-ef1eb149b748
|
||||
ghcid_numeric: 11814386416358012419
|
||||
record_id: 019ad9ec-7ca0-7ab2-9dae-6eef03a18a32
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-LEE-M-FM
|
||||
ghcid_numeric: 11814386416358012419
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751792
|
||||
geonames_name: Leeuwarden
|
||||
feature_code: PPLA
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.1995198
|
||||
longitude: 5.7945743
|
||||
source: google_maps
|
||||
distance_km: 1.7191481998096256
|
||||
geonames_id: 2751792
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-LEE-M-FM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: be382d56-2d0f-522a-8041-c904a5a23509
|
||||
identifier_url: urn:uuid:be382d56-2d0f-522a-8041-c904a5a23509
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: a3f521d9-b238-8603-a24a-ef1eb149b748
|
||||
identifier_url: urn:uuid:a3f521d9-b238-8603-a24a-ef1eb149b748
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '11814386416358012419'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca0-7ab2-9dae-6eef03a18a32
|
||||
identifier_url: urn:uuid:019ad9ec-7ca0-7ab2-9dae-6eef03a18a32
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:18.861010+00:00'
|
||||
source_archive: web/0089/friesmuseum.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Fries Museum, de culturele hotspot in Friesland
|
||||
raw_value: Fries Museum, de culturele hotspot in Friesland
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860362+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Het Fries Museum is een dynamisch museum in het hart van de bruisende
|
||||
stad Leeuwarden. Stap binnen in het moderne gebouw en laat je inspireren door
|
||||
je favoriete verhalen of kunstwerk. Het zwaard van Grutte Pier. Een romantisch
|
||||
schilderij van de wereldberoemde Sir Lawrence Alma-Tadema. Het sprookjesachtige
|
||||
landschap..
|
||||
raw_value: Het Fries Museum is een dynamisch museum in het hart van de bruisende
|
||||
stad Leeuwarden. Stap binnen in het moderne gebouw en laat je inspireren door
|
||||
je favoriete verhalen of kunstwerk. Het zwaard van Grutte Pier. Een romantisch
|
||||
schilderij van de wereldberoemde Sir Lawrence Alma-Tadema. Het sprookjesachtige
|
||||
landschap..
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860454+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@friesmuseum.nl
|
||||
raw_value: info@friesmuseum.nl
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[1]/div[2]/p/a[2]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860802+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0582555500
|
||||
raw_value: 0582555500
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[1]/div[2]/p/a[1]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860857+00:00'
|
||||
- claim_type: social_youtube
|
||||
claim_value: https://www.youtube.com/c/FriesMuseumLeeuwarden
|
||||
raw_value: https://www.youtube.com/c/FriesMuseumLeeuwarden
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[1]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860918+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/friesmuseum
|
||||
raw_value: https://www.facebook.com/friesmuseum
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[2]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860924+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: http://instagram.com/friesmuseum
|
||||
raw_value: http://instagram.com/friesmuseum
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[3]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860928+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://nl.linkedin.com/company/fries-museum-&-keramiekmuseum-princessehof
|
||||
raw_value: https://nl.linkedin.com/company/fries-museum-&-keramiekmuseum-princessehof
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[4]
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:18.860933+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Fries Museum
|
||||
raw_value: Fries Museum, de culturele hotspot in Friesland
|
||||
source_url: https://www.friesmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:02.645610+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0089/friesmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:29.026107+00:00'
|
||||
|
|
|
|||
|
|
@ -975,3 +975,141 @@ museum_register_enrichment:
|
|||
scrape_timestamp: '2025-11-30T12:28:03.607528+00:00'
|
||||
source_page: 1
|
||||
enrichment_timestamp: '2025-11-30T12:47:13.817116+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-SNE-M-FSM
|
||||
ghcid_original: NL-FR-SNE-M-FSM
|
||||
ghcid_uuid: c6e230b2-95be-52fa-a4fa-87120309ee95
|
||||
ghcid_uuid_sha256: c825d1ba-33d2-8333-afae-dfbd06161fcd
|
||||
ghcid_numeric: 14422163979387413299
|
||||
record_id: 019ad9ec-7ca1-7a68-9433-2ed6f48d1946
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-SNE-M-FSM
|
||||
ghcid_numeric: 14422163979387413299
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2747063
|
||||
geonames_name: Sneek
|
||||
feature_code: PPL
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.0322618
|
||||
longitude: 5.6632828
|
||||
source: google_maps
|
||||
distance_km: 0.49280103695981
|
||||
geonames_id: 2747063
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-SNE-M-FSM
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: c6e230b2-95be-52fa-a4fa-87120309ee95
|
||||
identifier_url: urn:uuid:c6e230b2-95be-52fa-a4fa-87120309ee95
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: c825d1ba-33d2-8333-afae-dfbd06161fcd
|
||||
identifier_url: urn:uuid:c825d1ba-33d2-8333-afae-dfbd06161fcd
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '14422163979387413299'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca1-7a68-9433-2ed6f48d1946
|
||||
identifier_url: urn:uuid:019ad9ec-7ca1-7a68-9433-2ed6f48d1946
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206870+00:00'
|
||||
source_archive: web/0090/friesscheepvaartmuseum.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Welkom in het Fries Scheepvaart Museum
|
||||
raw_value: Welkom in het Fries Scheepvaart Museum
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:19.205789+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Skûtsjesilen, de Elfstedentocht en de Waterpoort van Sneek. In het
|
||||
Fries Scheepvaart Museum ontdek je de geschiedenis van de scheepvaart in Friesland,
|
||||
de ijssport en de historie van de stad Sneek.
|
||||
raw_value: Skûtsjesilen, de Elfstedentocht en de Waterpoort van Sneek. In het
|
||||
Fries Scheepvaart Museum ontdek je de geschiedenis van de scheepvaart in Friesland,
|
||||
de ijssport en de historie van de stad Sneek.
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:19.205880+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@friesscheepvaartmuseum.nl
|
||||
raw_value: info@friesscheepvaartmuseum.nl
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div[1]/div/div/article[2]/div[2]/p[2]/a
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206345+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: '+31515414057'
|
||||
raw_value: '+31515414057'
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div[1]/div/div/article[2]/div[2]/p[1]/a
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206540+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://nl-nl.facebook.com/pages/Fries-Scheepvaart-Museum/137804579625299
|
||||
raw_value: https://nl-nl.facebook.com/pages/Fries-Scheepvaart-Museum/137804579625299
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/body/div/div/div/header/div/div[3]/div/a[2]
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206677+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/museumsneek/
|
||||
raw_value: https://www.instagram.com/museumsneek/
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/body/div/div/div/header/div/div[3]/div/a[3]
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206687+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/fries-scheepvaart-museum/
|
||||
raw_value: https://www.linkedin.com/company/fries-scheepvaart-museum/
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/body/div/div/div/header/div/div[3]/div/a[4]
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206693+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Welkom bij het Fries Scheepvaart Museum
|
||||
raw_value: Welkom bij het Fries Scheepvaart Museum
|
||||
source_url: https://www.friesscheepvaartmuseum.nl/
|
||||
retrieved_on: '2025-11-29T14:36:04.673872+00:00'
|
||||
xpath: /html/body/div/div/div/div/section[2]/div/div/article[1]/div/h1
|
||||
html_file: web/0090/friesscheepvaartmuseum.nl/pages/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:19.206790+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Fries Scheepvaart Museum
|
||||
source: wikidata
|
||||
wikidata_id: ''
|
||||
provenance_note: Derived from wikidata_label_nl (web_claims had no valid org_name)
|
||||
extraction_timestamp: '2025-12-01T12:35:29.106043+00:00'
|
||||
|
|
|
|||
|
|
@ -1638,3 +1638,133 @@ web_enrichment:
|
|||
warc_size_bytes: 61100
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:36:04.032301+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-LEE-M-FV
|
||||
ghcid_original: NL-FR-LEE-M-FV
|
||||
ghcid_uuid: a47f8210-ced5-5e3f-8463-0575ea56d82d
|
||||
ghcid_uuid_sha256: b1fe0e5a-3325-84e4-86d7-fba11a714e40
|
||||
ghcid_numeric: 12825704569365677284
|
||||
record_id: 019ad9ec-7ca1-7584-8349-59a77398f659
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-LEE-M-FV
|
||||
ghcid_numeric: 12825704569365677284
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751792
|
||||
geonames_name: Leeuwarden
|
||||
feature_code: PPLA
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.1995198
|
||||
longitude: 5.7945743
|
||||
source: google_maps
|
||||
distance_km: 1.7191481998096256
|
||||
geonames_id: 2751792
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-LEE-M-FV
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: a47f8210-ced5-5e3f-8463-0575ea56d82d
|
||||
identifier_url: urn:uuid:a47f8210-ced5-5e3f-8463-0575ea56d82d
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: b1fe0e5a-3325-84e4-86d7-fba11a714e40
|
||||
identifier_url: urn:uuid:b1fe0e5a-3325-84e4-86d7-fba11a714e40
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '12825704569365677284'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca1-7584-8349-59a77398f659
|
||||
identifier_url: urn:uuid:019ad9ec-7ca1-7584-8349-59a77398f659
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324939+00:00'
|
||||
source_archive: web/0091/friesverzetsmuseum.nl
|
||||
claims_count: 7
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Fries Verzetsmuseum
|
||||
raw_value: Fries Verzetsmuseum
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324610+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: undefined
|
||||
raw_value: undefined
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/head/meta[5]
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324668+00:00'
|
||||
- claim_type: email
|
||||
claim_value: info@friesmuseum.nl
|
||||
raw_value: info@friesmuseum.nl
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[1]/div[2]/p/a[2]
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324791+00:00'
|
||||
- claim_type: phone
|
||||
claim_value: 0582555500
|
||||
raw_value: 0582555500
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[1]/div[2]/p/a[1]
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: tel_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324824+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/accounts/login/?next=/friesverzetsmuseum/
|
||||
raw_value: https://www.instagram.com/accounts/login/?next=/friesverzetsmuseum/
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[1]
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324871+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/friesverzetsmuseum
|
||||
raw_value: https://www.facebook.com/friesverzetsmuseum
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[2]
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324876+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://twitter.com/friesverzetsmuseum
|
||||
raw_value: https://twitter.com/friesverzetsmuseum
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/body/div/div/div/footer/div/div[2]/div[2]/a[3]
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.324880+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Fries Verzetsmuseum
|
||||
raw_value: Fries Verzetsmuseum
|
||||
source_url: https://www.friesverzetsmuseum.nl/frl
|
||||
retrieved_on: '2025-11-29T14:36:03.442519+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0091/friesverzetsmuseum.nl/pages/frl.tmp.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:29.247499+00:00'
|
||||
|
|
|
|||
|
|
@ -654,3 +654,147 @@ web_enrichment:
|
|||
warc_size_bytes: 2179137
|
||||
warc_format: ISO 28500
|
||||
full_site_archive_timestamp: '2025-11-29T14:38:00.216991+00:00'
|
||||
ghcid:
|
||||
ghcid_current: NL-FR-LEE-R-FA
|
||||
ghcid_original: NL-FR-LEE-R-FA
|
||||
ghcid_uuid: 07cc4022-af7b-583d-93dc-22550d664121
|
||||
ghcid_uuid_sha256: 7429450a-0ee0-8fa6-8bbc-ae64e5600c42
|
||||
ghcid_numeric: 8370297291946373030
|
||||
record_id: 019ad9ec-7ca1-7e18-af86-663bf378c9f4
|
||||
generation_timestamp: '2025-12-01T12:38:04.703815+00:00'
|
||||
ghcid_history:
|
||||
- ghcid: NL-FR-LEE-R-FA
|
||||
ghcid_numeric: 8370297291946373030
|
||||
valid_from: '2025-12-01T12:38:04.703815+00:00'
|
||||
valid_to: null
|
||||
reason: Initial GHCID assignment (NDE batch import December 2025)
|
||||
location_resolution:
|
||||
method: REVERSE_GEOCODE
|
||||
geonames_id: 2751792
|
||||
geonames_name: Leeuwarden
|
||||
feature_code: PPLA
|
||||
admin1_code: '02'
|
||||
region_code: FR
|
||||
country_code: NL
|
||||
source_coordinates:
|
||||
latitude: 53.203559899999995
|
||||
longitude: 5.7929071
|
||||
source: google_maps
|
||||
distance_km: 1.8697234018829427
|
||||
geonames_id: 2751792
|
||||
identifiers:
|
||||
- identifier_scheme: GHCID
|
||||
identifier_value: NL-FR-LEE-R-FA
|
||||
- identifier_scheme: GHCID_UUID
|
||||
identifier_value: 07cc4022-af7b-583d-93dc-22550d664121
|
||||
identifier_url: urn:uuid:07cc4022-af7b-583d-93dc-22550d664121
|
||||
- identifier_scheme: GHCID_UUID_SHA256
|
||||
identifier_value: 7429450a-0ee0-8fa6-8bbc-ae64e5600c42
|
||||
identifier_url: urn:uuid:7429450a-0ee0-8fa6-8bbc-ae64e5600c42
|
||||
- identifier_scheme: GHCID_NUMERIC
|
||||
identifier_value: '8370297291946373030'
|
||||
- identifier_scheme: RECORD_ID
|
||||
identifier_value: 019ad9ec-7ca1-7e18-af86-663bf378c9f4
|
||||
identifier_url: urn:uuid:019ad9ec-7ca1-7e18-af86-663bf378c9f4
|
||||
web_claims:
|
||||
extraction_timestamp: '2025-12-01T10:44:19.787605+00:00'
|
||||
source_archive: web/0092/fryske-akademy.nl
|
||||
claims_count: 8
|
||||
claims:
|
||||
- claim_type: org_name
|
||||
claim_value: Fryske Akademy
|
||||
raw_value: Fryske Akademy - Fryske Akademy
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:19.786291+00:00'
|
||||
- claim_type: description_short
|
||||
claim_value: Fryske Akademy is hét academische onderzoeksinstituut voor de Friese
|
||||
casus, geworteld in de Friese maatschappij en opererend in de internationale
|
||||
wetenschappelijke wereld.
|
||||
raw_value: Fryske Akademy is hét academische onderzoeksinstituut voor de Friese
|
||||
casus, geworteld in de Friese maatschappij en opererend in de internationale
|
||||
wetenschappelijke wereld.
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/head/meta[4]
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: meta_description
|
||||
extraction_timestamp: '2025-12-01T10:44:19.786417+00:00'
|
||||
- claim_type: email
|
||||
claim_value: fa@fryske-akademy.nl
|
||||
raw_value: fa@fryske-akademy.nl
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[2]/div[2]/div/div/div[2]/div[1]/div/div/div/div/p[2]/a
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: mailto_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.786986+00:00'
|
||||
- claim_type: social_linkedin
|
||||
claim_value: https://www.linkedin.com/company/fryske-akademy/
|
||||
raw_value: https://www.linkedin.com/company/fryske-akademy/
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[2]/div[2]/div/div/div[2]/div[2]/div/div/div/div/div/div[1]/figure/a
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.787364+00:00'
|
||||
- claim_type: social_facebook
|
||||
claim_value: https://www.facebook.com/FryskeAkademy
|
||||
raw_value: https://www.facebook.com/FryskeAkademy
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[2]/div[2]/div/div/div[2]/div[2]/div/div/div/div/div/div[2]/figure/a
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.787372+00:00'
|
||||
- claim_type: social_instagram
|
||||
claim_value: https://www.instagram.com/fryskeakademy/
|
||||
raw_value: https://www.instagram.com/fryskeakademy/
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[2]/div[2]/div/div/div[2]/div[2]/div/div/div/div/div/div[3]/figure/a
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.787378+00:00'
|
||||
- claim_type: social_twitter
|
||||
claim_value: https://x.com/FryskeAkademy
|
||||
raw_value: https://x.com/FryskeAkademy
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/body/div[2]/footer/section[2]/div[2]/div/div/div[2]/div[2]/div/div/div/div/div/div[4]/figure/a
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: social_link
|
||||
extraction_timestamp: '2025-12-01T10:44:19.787383+00:00'
|
||||
- claim_type: org_name
|
||||
claim_value: Onderzoeksagenda Fryske Akademy 2023-2027
|
||||
raw_value: Onderzoeksagenda Fryske Akademy 2023-2027
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/body/div[2]/div/div/div/div[2]/div/div/h1
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 0.9
|
||||
extraction_method: h1_tag
|
||||
extraction_timestamp: '2025-12-01T10:44:19.787434+00:00'
|
||||
custodian_name:
|
||||
claim_type: custodian_name
|
||||
claim_value: Fryske Akademy
|
||||
raw_value: Fryske Akademy
|
||||
source_url: https://www.fryske-akademy.nl/nl/
|
||||
retrieved_on: '2025-11-29T14:37:59.781083+00:00'
|
||||
xpath: /html/head/title
|
||||
html_file: web/0092/fryske-akademy.nl/mirror/www.fryske-akademy.nl/nl/index.html
|
||||
xpath_match_score: 1.0
|
||||
extraction_method: title_tag
|
||||
selection_method: priority_ranking
|
||||
selection_priority: 60
|
||||
extraction_timestamp: '2025-12-01T12:35:29.333079+00:00'
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue